2014-01-07 23:36:14 +00:00
|
|
|
---
|
|
|
|
layout: list
|
2015-07-25 21:44:04 +00:00
|
|
|
title: Tags
|
2014-01-07 23:36:14 +00:00
|
|
|
description: 'All Posts from Blog@VoltaicIdeas grouped by tag.'
|
|
|
|
permalink: /tags/
|
|
|
|
---
|
|
|
|
{% for tag in site.tags %}
|
|
|
|
<div class="row">
|
|
|
|
<div class="small-12 columns">
|
|
|
|
<h3 id="{{ tag[0] | cgi_escape }}">{{ tag[0] }}</h3>
|
|
|
|
<ul>
|
|
|
|
{% for post in tag[1] %}
|
|
|
|
<li><a href="{{ site.url }}{{ post.url }}">{{ post.title }}</a></li>
|
|
|
|
{% endfor %}
|
|
|
|
</ul>
|
|
|
|
<div class="text-center">
|
|
|
|
<a href="#top" class="button tiny radius secondary">Back to Top <i class="icon-up-big"></i></a>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% endfor %}
|