the-internet-vagabond-dot-com/index.html

21 lines
599 B
HTML
Raw Normal View History

2015-02-23 17:26:52 +00:00
---
2018-01-12 20:38:06 +00:00
layout: corrupt_index
tabtitle: Home
2015-02-23 17:26:52 +00:00
---
2018-01-12 22:39:13 +00:00
{% for post in site.posts limit:5 %}
2018-01-11 23:28:28 +00:00
<div id="posts">
<h1><a href="{{ post.url }}">{{ post.title }}</a></h1>
<div class="" id="details">
<div class="" id="date">Published: {{ post.pub }}</div>
2018-01-12 22:39:13 +00:00
<div class="" id="tags">
Tagged:
{% for tag in post.tags %}
{% if forloop.last %} {{tag}}{% else %} {{tag}}, {% endif %}
{% endfor %}
</div>
2018-01-11 23:28:28 +00:00
</div>
<div id="desc">{{ post.short_desc }}</div>
</div>
{% endfor %}