forked from jglovier/jglovier.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
113 lines (95 loc) · 4.03 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
---
layout: home
---
<section class="writing" id="writing">
<div class="wrap">
<div class="wide-left-margin">
<h2>Writing</h2>
<nav class="article-nav group">
<a id="articlesAllTrigger" href="#" class="year showing">All</a>
<a id="articles2014Trigger" href="#" class="year">2014</a>
<a id="articles2013Trigger" href="#" class="year">2013</a>
<a id="articles2012Trigger" href="#" class="year">2012</a>
<a id="articles2011Trigger" href="#" class="year">2011</a>
</nav>
<div id="articles2014" class="articles show">
<ul class="article-index list-2014">
{% for post in site.posts %}
{% capture year %}{{post.date | date: "%Y"}}{% endcapture %}
{% if year == "2014" %}
<li class="{% cycle 'even', 'odd' %}">
<a href="{{ post.url }}">
<span class="article-date">{{ post.date | date: "%-m/%-d/%Y" }}</span>
<span class="article-title">{{ post.title }}</span>
</a>
</li>
{% endif %}
{% endfor %}
</ul>
</div>
<div id="articles2013" class="articles show">
<ul class="article-index list-2013">
{% for post in site.posts %}
{% capture year %}{{post.date | date: "%Y"}}{% endcapture %}
{% if year == "2013" %}
<li class="{% cycle 'even', 'odd' %}">
<a href="{{ post.url }}">
<span class="article-date">{{ post.date | date: "%-m/%-d/%Y" }}</span>
<span class="article-title">{{ post.title }}</span>
</a>
</li>
{% endif %}
{% endfor %}
</ul>
</div>
<div id="articles2012" class="articles show">
<ul class="article-index list-2012">
{% for post in site.posts %}
{% capture year %}{{post.date | date: "%Y"}}{% endcapture %}
{% if year == "2012" %}
<li class="{% cycle 'even', 'odd' %}">
<a href="{{ post.url }}">
<span class="article-date">{{ post.date | date: "%-m/%-d/%Y" }}</span>
<span class="article-title">{{ post.title }}</span>
</a>
</li>
{% endif %}
{% endfor %}
</ul>
</div>
<div id="articles2011" class="articles show">
<ul class="article-index list-2011">
{% for post in site.posts %}
{% capture year %}{{post.date | date: "%Y"}}{% endcapture %}
{% if year == "2011" %}
<li class="{% cycle 'even', 'odd' %}">
<a href="{{ post.url }}">
<span class="article-date">{{ post.date | date: "%-m/%-d/%Y" }}</span>
<span class="article-title">{{ post.title }}</span>
</a>
</li>
{% endif %}
{% endfor %}
</ul>
</div>
{% include categories.html %}
<h2 class="other-writing">My Writing Elsewhere</h2>
<ul class="article-index">
<li>
<a href="http://appendto.com/blog/2013/03/pure-css-triangles-explained/" target="_blank">
<span class="article-date">3/27/2013</span>
<span class="article-title">Pure CSS Triangles Explained</span>
<span class="article-source">appendto.com/blog</span>
</a>
</li>
<li>
<a href="http://www.slidedeck.com/blog/how-cure-org-increased-website-workflow-and-engagement-with-slidedeck/" target="_blank">
<span class="article-date">4/26/2011</span>
<span class="article-title">How a Non-Profit Increased User Engagement with Facebook API and CSS3</span>
<span class="article-source">http://www.slidedeck.com/blog</span>
</a>
</li>
</ul>
</div>
</div>
</section>