-
Notifications
You must be signed in to change notification settings - Fork 0
/
posts.html
72 lines (70 loc) · 2.33 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
67
68
69
70
71
72
---
---
<!DOCTYPE html>
<html lang="en" class="invert-dark">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Chris Lee</title>
<link
rel="stylesheet"
href="https://unpkg.com/[email protected]/css/tachyons.min.css"
/>
<link rel="stylesheet" href="/style.css" />
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(["_setAccount", "UA-19583432-1"]);
_gaq.push(["_trackPageview"]);
(function() {
var ga = document.createElement("script");
ga.type = "text/javascript";
ga.async = true;
ga.src =
("https:" == document.location.protocol
? "https://ssl"
: "http://www") + ".google-analytics.com/ga.js";
var s = document.getElementsByTagName("script")[0];
s.parentNode.insertBefore(ga, s);
})();
</script>
</head>
<body class="bg-near-white dark-gray">
<nav class="fixed top-0 bg-near-white gill-sans f6 ttu w-100 z-1">
<ul
class="fw6 list ph4 ph5-ns flex-ns flex-row cl-mw center items-center nowrap overflow-x-auto"
>
<li class="dib mr4 flex-auto">
<a href="/" class="link dark-gray hover-cl-blue pv3"
><span class="tracked-mega">Chris Le</span>e</a
>
</li>
<li class="dib mr4">
<a href="/work" class="link dark-gray hover-cl-blue pv3"
><span class="tracked-mega">Wor</span>k</a
>
</li>
<li class="dib mr4 bb bw1 dark-gray pv3" style="margin-top: 2px;">
<span class="tracked-mega">Writin</span>g
</li>
<li class="dib">
<a href="/about" class="link dark-gray hover-cl-blue pv3"
><span class="tracked-mega">Abou</span>t</a
>
</li>
</ul>
</nav>
<main class="charter f5 lh-copy cl-mw center pa4 pt6 pa5-ns pt6-ns">
<ul class="list na3">
{% for post in site.posts %}
<li class="hover-bg-light-gray">
<a href="{{post.url}}" class="db pa3 link dark-gray">
<div class="dib fw6 cl-blue">{{post.title}}</div>
<div class="dib"></div>
<div class="dib black-50">{{post.date | date: "%B %-d, %Y"}}</div>
</a>
</li>
{% endfor %}
</ul>
</main>
</body>
</html>