home.pug
879 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
doctype html
html
head
meta(charset='utf-8')
title 분류 리스트
body
form(action="directory_check" method="post")
p 새로 만들 분류명:
input(name="directoryName", type="text")
input(type="submit", value="생성")
br
form(action="test" method="post" enctype="multipart/form-data")
p 테스트할 이미지:
input(name="ImageTest", type="file")
input(type="submit", value="테스트")
br
ul
- var folderList=fileList
each folder in folderList
div(style="margin-right:30px; float:left;")
li
a(href=location+folder)=folder
div(style="margin-right:5px; float:left;")
form(action="home/"+folder+"/modify" method="get")
input(type="submit", value="수정")
div
form(action="home/"+folder+"/delete" method="get")
input(type="submit", value="삭제")
br