-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjfdi.html
31 lines (26 loc) · 790 Bytes
/
jfdi.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
---
---
{% include header.html page_name=" : JFDI" %}
<div class="left-column">
{% include bio_sidebar.html %}
{% include posts_list.html %}
</div>
<div class="right-column">
{% for post in site.posts limit: 4 %}
<div id="{{ post.anchor_id }}" class="blog-post">
<h1><a href="{{post.url}}">{{ post.title}}</a></h1>
<date>{{ post.date | date_to_long_string }}</date>
{% if post %}
{% assign tags = post.tags %}
{% else %}
{% assign tags = page.tags %}
{% endif %}
{% for tag in tags %}
/ <a href="{{site.baseurl}}/tags.html#{{tag|slugize}}">{{tag}}</a>
{% endfor %}
{{ post.content }}
</div>
{% endfor %}
<h3>For more posts, see the <a href="/archive.html">archive</a>.</h3>
</div>
{% include footer.html %}