the-internet-vagabond-dot-com/index.html
2018-01-13 15:34:13 -05:00

19 lines
553 B
HTML

---
layout: corrupt_index
tabtitle: Home
---
{% for post in site.posts limit:5 %}
<div id="posts">
<h1><a href="{{ post.url }}">{{ post.title }}</a></h1>
<div class="" id="details">
<div class="" id="date">{{ post.pub }}</div>
<div class="" id="tags">
{% for topic in post.topics %}
<a href="/topics/{{topic}}">{{topic}}</a>
{% endfor %}
</div>
</div>
<div id="desc">{{ post.short_desc }}</div>
</div>
{% endfor %}