forked from chrisdiana/cms.js-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
59 lines (56 loc) · 1.82 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
<!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="The JavaScript Site Generator">
<meta name="author" content="">
<meta http-equiv="X-UA-Compatible" content="IE=Edge"/>
<link rel="stylesheet" href="./css/animations.css">
<link rel="stylesheet" href="./css/poole.min.css">
<link rel="stylesheet" href="./css/poole.overrides.min.css">
<!--[if lt IE 9]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<noscript>Please enable JavaScript to view this site.</noscript>
</head>
<body>
<!-- Main Container -->
<div class="container content">
<!-- Header -->
<header class="masthead">
<h3 class="masthead-title">
<a href="#" class="sitename" title="Home">
CMS.js
</a>
<small class="tagline">
The Javascript Site Generator
</small>
</h3>
<!-- Navigation -->
<nav class="nav">
<ul>
<li><a href="#/posts">Posts</a></li>
<li><a href="//github.com/chrisdiana/cms.js" target="_blank">Github</a></li>
<li><a href="#/pages/about">About</a></li>
<li><a href="#/pages/links">Links</a></li>
</ul>
</nav>
</header>
<!-- CMS -->
<div id="cms"></div>
<!-- Footer -->
<footer class="footer">
<small class="footer-text">
</small>
</footer>
</div>
<!-- ES5 Polyfills -->
<script src="//cdnjs.cloudflare.com/ajax/libs/es5-shim/4.5.12/es5-shim.min.js"></script>
<!-- CMS.js -->
<script src="./js/cms.js"></script>
<!-- Config -->
<script src="./js/config.js"></script>
</body>
</html>