1
0
mirror of https://github.com/arsenetar/arsenetar.github.io.git synced 2026-01-28 09:11:37 +00:00

Update blog style templates and configuration.

This commit is contained in:
2014-01-07 18:36:14 -05:00
parent 0d1a8bee77
commit d2fcf71162
21 changed files with 487 additions and 221 deletions

View File

@@ -1,9 +1,25 @@
---
layout: default
layout: list
title: Latest Posts
description: 'Latest Posts from Blog@VoltaicIdeas'
---
<h1>Some Text</h1>
<ul>
{% for post in paginator.posts %}
<li><a href="{{ site.url }}{{ post.url }}">{{ post.title }}</a></li>
{% for post in site.posts limit: 10 %}
<article class="excerpt">
<header>
<h3><a href="{{ site.url }}{{ post.url }}">{{ post.title }}</a></h3>
<h6 class="subheader"><time datetime="{{ post.date | date_to_xmlschema }}">{{ post.date | date_to_string }}</time> <em>By</em> {{ site.owner.name }} <em>Tagged:</em>
{% for tag in post.tags %}
<a class="tag" title="Posts tagged {{ tag }}" href="{{ site.url }}/tags/#{{ tag | cgi_escape }}">{{ tag }}</a>
{% endfor %}
</h6>
</header>
<div class="content">
{{ post.excerpt }}
</div>
<footer>
<a href="{{ site.url }}{{ post.url }}">Continue reading ...</a></footer>
</article>
{% endfor %}
</ul>
<div class="text-center">
<h3><a href="{{ site.url }}/archive/">Post Archive</a></h3>
</div>