diff options
Diffstat (limited to '')
| -rw-r--r-- | index.html | 48 |
1 files changed, 15 insertions, 33 deletions
@@ -1,37 +1,19 @@ --- -layout: default +layout: static +title: Writings --- -{% assign page = site.posts.first %} - -<div id="logo"> - <a href='/list.html'><img src='/static/imgs/logo.png' alt='' /></a> -</div> - -<h1><a href="{{ page.url }}">{{ page.title }}</a></h1> - -{% if page.previous.url %} - <p id="bigleft"><a href="{{page.previous.url}}">«</a></p><br /> -{% endif %} -{% if page.next.url %} - <p id="bigright"><a href="{{page.next.url}}">»</a></p> -{% endif %} - -<div id="entry"> - {{ page.content }} - - <p class="timestamp"> - {% if page.previous.url %} - <a href="{{page.previous.url}}">« {{page.previous.title}}</a> | - {% endif %} - - {{ page.date | date_to_string }} - - {% if page.next.url %} - | <a href="{{page.next.url}}">{{page.next.title}} »</a> - {% endif %} - </p> - +<h1><a href='/'>Writings</a></h1> + +<div id='wrapper'> + <ul> + {% for post in site.posts %} + {% unless post.type == "codex" %} + <li> + <a href="{{ post.url }}">{{ post.title }}</a> + <span class="date">{{ post.date | date_to_string }}</span> + </li> + {% endunless %} + {% endfor %} + </ul> </div> - -{% include footer.html %} |
