This repository has been archived by the owner on May 24, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
posts.html
66 lines (63 loc) · 2.17 KB
/
posts.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
<!DOCTYPE HTML>
<html>
<head>
<title>Posts</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<meta name="description" content="" />
<meta name="keywords" content="" />
<!--mathJax-->
<script type="text/javascript" src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
<!--[if lte IE 8]><script src="js/html5shiv.js"></script><![endif]-->
<script src="/assets/js/jquery.min.js"></script>
<script src="/assets/js/skel.min.js"></script>
<script src="/assets/js/skel-layers.min.js"></script>
<script src="/assets/js/init.js"></script>
<noscript>
<link rel="stylesheet" href="/assets/css/skel.css" />
<link rel="stylesheet" href="/assets/css/style.css" />
<link rel="stylesheet" href="/assets/css/style-xlarge.css" />
</noscript>
</head>
<body>
<!-- Header -->
<header id="header">
<h1><strong><a href="/index.html">Andrew Pantuso</a></strong></h1>
<nav id="nav">
<ul>
<li><a href="/index.html">Home</a></li>
<li><a href="/posts.html">Posts</a></li>
<li><a href="/resume.html">RÉsumÉ</a></li>
<li><a href="/index.html#about">About</a></li>
</ul>
</nav>
</header>
<!-- Main -->
<section id="main" class="wrapper">
<div class="container">
<header class="major special" style="margin-bottom:0em;">
<h2>Post Archive:</h2>
</header>
<div id="posts">
<ul>
$partial("templates/post-list.html")$
</ul>
</div>
</div>
</section>
<!-- Footer -->
<footer id="footer">
<div class="container">
<ul class="icons">
<li><a href="https://github.com/Ajpantuso" class="icon fa-github"></a></li>
<li><a href="mailto:[email protected]" class="icon fa-envelope"></a></li>
<li><a href="/feed.xml" class="icon fa-rss"></a></li>
</ul>
<ul class="copyright">
<li>© Andrew Pantuso 2015</li>
<li>image: <a href="http://www.bronsoloillustration.com/">Bronsolo Illustration</a></li>
<li>static-site generation: <a href="https://jaspervdj.be/hakyll">Hakyll</a></li>
</ul>
</div>
</footer>
</body>
</html>