forked from nprapps/nprapps.github.com
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·29 lines (28 loc) · 943 Bytes
/
index.html
File metadata and controls
executable file
·29 lines (28 loc) · 943 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
---
layout: default
---
<div id="home">
{% for post in site.posts %}
<article {% if post.external_url %}class="external"{% endif %}>
<header>
{% if post.external_url %}
<h6>{{ post.external_site }}</h6>
<h2><a href="{{ post.external_url }}">{{ post.title }}</a></h2>
{% else %}
<h2><a href="{{ post.url }}">{{ post.title }}</a></h2>
{% endif %}
</header>
<section class="entry">
{{ post.description }}
{% if post.external_url %}
<em>(external link)</em>
{% endif %}
</section>
<div class="post-meta">
<ul>
<li>by <a href="http://twitter.com/{{ post.twitter }}">{{ post.author }}</a>, {{ post.date | date: "%B %d, %Y" }}</li>
</ul>
</div>
</article>
{% endfor %}
</div>