-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
46 lines (41 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
<!doctype html>
<html class="no-js" lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Posl | News You Don't Hate Reading</title>
<link rel="stylesheet" href="css/foundation.css" />
<link rel="stylesheet" type="text/css" href="css/styles.css">
<link rel="stylesheet" type="text/css" href="css/alertify.css">
<link rel="shortcut icon" type="img/png" href="img/icon.png">
<script src="js/vendor/modernizr.js"></script>
</head>
<body onload="completeFunction(40);" id="mainBody">
<div class="row">
<div class="medium-12 columns" id="navButtons">
<h2 id="mainTitle">Posl.</h2>
<h4 id="mainSlogan">News You Don't Hate Reading.</h4>
<a href="http://github.com/tash-had/posl" target="_blank" class="button round navClass" id="githubButton" style="background-color: #008cba">GitHub</a>
<button class="button round navClass" onclick="aboutClick()">About</button>
<button onclick="randomArticle()" class="button round navClass">Random Article</button>
<a href="http://www.tash-had.com" class="button round navClass" style="background-color: #008cba">Contact</a>
</div>
</div>
<div class="row">
<ul class="small-block-grid-2 medium-block-grid-4 columns" id="contentGrid">
<hr>
</ul>
<div id="loadButton">
<button class="button round" onclick="loadClick();">Load More</button>
</div>
<hr>
</div>
<script src="js/vendor/jquery.js"></script>
<script type="text/javascript" src="js/main.js"></script>
<script src="js/foundation.min.js"></script>
<script type="text/javascript" src="js/alertify.js"></script>
<script>
$(document).foundation();
</script>
</body>
</html>