-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
67 lines (58 loc) · 1.72 KB
/
index.html
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
60
61
62
63
64
65
66
67
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CMS.js</title>
<meta name="description" content="">
<meta name="author" content="">
<link rel="stylesheet" href="css/poole.min.css">
<link rel="stylesheet" href="css/style.css">
<!--[if lt IE 9]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body>
<!-- Main View -->
<div class="container content">
<header class="masthead">
<h3 class="masthead-title">
<a href="#" class="cms_sitename" title="Home"></a>
<small class="cms_tagline"></small>
</h3>
<nav class="cms_nav"></nav>
</header>
<div class="cms_main"></div>
<footer class="cms_footer">
<small class="cms_footer_text"></small>
</footer>
</div>
<!-- Page View -->
<script id="page-template" type="x-template">
<article class="page">
<h1 class="page-title"></h1>
<div class="page-content"></div>
</article>
</script>
<!-- Post View -->
<script id="post-template" type="x-template">
<article class="post">
<h1 class="post-title"></h1>
<time class="post-date"></time>
<div class="post-content"></div>
</article>
</script>
<!-- Error View -->
<script id="error-template" type="x-template">
<div class="error">
<b>Sorry, something went wrong :(</b>
<p class="error_text"></p>
<a href="#" class="close alert_close">×</a>
</div>
</script>
<script src="//code.jquery.com/jquery-2.1.4.min.js"></script>
<script src="js/marked.min.js"></script>
<script src="js/cms.js"></script>
<script src="js/config.js"></script>
</body>
</html>