-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathindex.html
More file actions
35 lines (34 loc) · 883 Bytes
/
index.html
File metadata and controls
35 lines (34 loc) · 883 Bytes
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
---
layout: default
---
<h2>Read</h2>
<ul class="posts">
{% assign posts = site.posts | concat: site.data.external_posts | sort: "date" | reverse %}
{% for post in posts %}
<li class="post">
<h3>
{% if post.external_url %}
<a href="{{ post.external_url }}">
{% else %}
<a href="{{ post.url | prepend: site.baseurl }}">
{% endif %}
{{ post.title }}
</a>
</h3>
{% if post.lead %}
<p style="margin: 0 0 5px;">
{{ post.lead }}
</p>
{% endif %}
<small>
<time style="font-family: monospace">{{ post.date | date: "%b %-d, %Y" }}</time>
{% if post.tags and post.tags.size > 0 %}
·
{% for tag in post.tags %}
<span class="tag">{{ tag }}</span>
{% endfor %}
{% endif %}
</small>
</li>
{% endfor %}
</ul>