2014-01-02 05:49:38 +00:00
|
|
|
---
|
2014-01-07 23:36:14 +00:00
|
|
|
layout: list
|
|
|
|
title: Latest Posts
|
2015-07-25 21:44:04 +00:00
|
|
|
subtitle: Cutting edge stuff here!
|
2014-01-07 23:36:14 +00:00
|
|
|
description: 'Latest Posts from Blog@VoltaicIdeas'
|
2014-01-02 05:49:38 +00:00
|
|
|
---
|
2014-01-07 23:36:14 +00:00
|
|
|
{% for post in site.posts limit: 10 %}
|
|
|
|
<article class="excerpt">
|
|
|
|
<header>
|
|
|
|
<h3><a href="{{ site.url }}{{ post.url }}">{{ post.title }}</a></h3>
|
2015-07-25 21:44:04 +00:00
|
|
|
<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>
|
2014-01-07 23:36:14 +00:00
|
|
|
{% 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>
|
2014-01-02 05:49:38 +00:00
|
|
|
{% endfor %}
|
2014-01-07 23:36:14 +00:00
|
|
|
<div class="text-center">
|
|
|
|
<h3><a href="{{ site.url }}/archive/">Post Archive</a></h3>
|
|
|
|
</div>
|