the-internet-vagabond-dot-com/index.html
2018-01-11 18:28:28 -05:00

15 lines
450 B
HTML

---
layout: default
tabtitle: Home
---
{% for post in site.posts %}
<div id="posts">
<h1><a href="{{ post.url }}">{{ post.title }}</a></h1>
<div class="pure-g" id="details">
<div class="pure-u-1-2" id="date">Published: {{ post.date }}</div>
<div class="pure-u-1-2" id="tags">Tagged: {{ post.tags }}</div>
</div>
<div id="desc">{{ post.short_desc }}</div>
</div>
{% endfor %}