home.pug 688 Bytes
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
				li=folder
				form(action="home/"+folder method="get")
					input(type="submit", value="편집")
				form(action="home/"+folder+"/delete" method="get")
					input(type="submit", value="삭제")