main.ejs
1.08 KB
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<!DOCTYPE html>
<html>
<head>
<title><%= title %></title>
<link rel='stylesheet' href='/stylesheets/style.css'/>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
</head>
<body>
<script>
$(document).ready(function() {
});
</script>
<div id ="maintitle"><image src ='/images/title_edit.png' width='600px' height='auto'/></div>
<div id ="mynav">
<ul class="sidenav">
<li><a class="active" href="home">home</a></li>
<li><a href="map">맛집도장찍기</a></li>
<li><a href="mybook">견문록확인</a></li>
</ul>
</div>
<div id ="content">
<h1 >맛집, 어디까지 정복해보셨나요?</h1>
<p class="homesmall">코드는 쿠허브에서 확인할 수 있습니다. 바로가기는 이미지를 클릭하세요.</p>
<p><a href="http://khuhub.khu.ac.kr/2013104063/open-source-project-2017-02.git"><img src="/images/gitlogo.png"/></a></p>
</div>
<div id ="footer"></div>
</body>
</html>