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!
14 lines
402 B
HTML
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 %}
|