-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
56 lines (55 loc) · 1.57 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
---
layout: default
---
{% if site.categories.talks.size != 0 %}
<section class="post-list">
<h1>Talks</h1>
<ul>
{% for post in site.categories.talks %}
<li>
<a href="{{ post.url }}">{{ post.title }}</a>
<time class="date" datetime="{{ post.date }}"
>({{ post.date | date: "%b %-d, %Y" }})</time
>{% if post.event %} • {{ post.event }}{% endif %}
</li>
{% endfor %}
</ul>
</section>
{% endif %} {% if site.categories.writings.size != 0 %}
<section class="post-list">
<h1>Writings</h1>
<ul>
{% for post in site.categories.writings %}
<li>
<a href="{{ post.url }}">{{ post.title }}</a>
<time class="date" datetime="{{ post.date }}"
>({{ post.date | date: "%b %-d, %Y" }})</time
>
</li>
{% endfor %}
</ul>
</section>
{% endif %} {% if site.categories.projects.size > 0 %}
<section class="post-list">
<h1>Projects</h1>
<ul>
{% for post in site.categories.projects %}
<li><a href="{{ post.url }}">{{ post.title }}</a></li>
{% endfor %}
</ul>
</section>
{% endif %} {% if site.categories.stuff.size != 0 %}
<section class="post-list">
<h1>Stuff</h1>
<ul>
{% for post in site.categories.stuff %}
<li>
<a href="{{ post.url }}">{{ post.title }}</a>
<time class="date" datetime="{{ post.date }}"
>({{ post.date | date: "%b %-d, %Y" }})</time
>
</li>
{% endfor %}
</ul>
</section>
{% endif %}