the-internet-vagabond-dot-com/index.html
Bill Niblock e45a841503 Implement Corrupt: My custom Jekyll Theme
Corrupt is a very simple site layout. It has two columns, one which is
the main content column, and one which serves as a small summary column.
The layout is designed for simplicity, and does not feature any
significant menu. The layout is responsive, too!
2018-01-12 15:27:48 -05:00

14 lines
402 B
HTML

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