-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
41 lines (37 loc) · 1.16 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>image blog</title>
<link rel="stylesheet" type="text/css" href="reset.css"></link>
<link rel="stylesheet" type="text/css" href="main.css"></link>
</head>
<body>
<header>
<h1>image blog</h1>
<div id="site-description">Mostly images and stuff</div>
<nav id="main-nav">
<li><a href="http://www.example.com">Some site</a></li>
<li><a href="http://www.example.com">Another site</a></li>
</nav>
</header>
<section id="main">
<noscript><a href="images">Javascript free site</a></noscript>
<ul id="images"></ul>
</section>
<nav id="bottom-nav">
<li><a id="previous-page">←</a></li>
<li><a id="next-page">→</a></li>
</nav>
<footer>
© somebody 2016 - generated by s3ml
</footer>
<script src="s3ml.js"></script>
<script type="text/javascript">
var s3ml = new S3ml({container_id: "images",
previous_page_id: "previous-page",
next_page_id: "next-page",
request_params: "?C=M;O=D"});
</script>
</body>
</html>