Skip to content

Instantly share code, notes, and snippets.

View matt-west's full-sized avatar

Matt West matt-west

View GitHub Profile
@matt-west
matt-west / postachio-tag-cloud.html
Created May 23, 2014 10:37
Postach.io: Tag Cloud
{% if site.tags %}
<div class="tag-cloud">
<h4>Tags</h4>
<ul>
{% for tag in site.tags %}
<li><a href="/tag/{{ tag.name }}">{{ tag.name }}</a></li>
{% endfor %}
</ul>
</div>
{% endif %}
@matt-west
matt-west / postachio-tags-list-post-result.html
Created May 23, 2014 10:32
Postach.io: List Tags for an Individual Post (Result)
<ul>
<li><a href="/tag/cat">cat</a></li>
<li><a href="/tag/dog">dog</a></li>
<li><a href="/tag/rabbit">rabbit</a></li>
</ul>
@matt-west
matt-west / postachio-tags-list-post.html
Created May 23, 2014 10:31
Postach.io: List Tags for an Individual Post
{% if post.tags %}
<ul>
{% for tag in post.tags %}
<li><a href="/tag/{{ tag }}">{{ tag }}</a></li>
{% endfor %}
</ul>
{% endif %}
@matt-west
matt-west / postachio-categories-8.html
Created May 6, 2014 13:19
Postach.io Categoires Nav Styling
<style>
.categories ul {
list-style: none;
margin: 0;
}
.categories li {
padding-bottom: 0.5em;
}
@matt-west
matt-west / postachio-categories-7.html
Created May 6, 2014 13:18
Postach.io Categoires Nav Example
{% if site.tags %}
<nav class="categories">
<h4>Categories</h4>
<ul>
<li><a href="/tag/design" class="{{ set_active('/tag/design') }}">Design</a></li>
<li><a href="/tag/web" class="{{ set_active('/tag/web') }}">Web</a></li>
<li><a href="/tag/ios" class="{{ set_active('/tag/ios') }}">iOS</a></li>
<li><a href="/tag/android" class="{{ set_active('/tag/android') }}">Android</a></li>
</ul>
</nav>
@matt-west
matt-west / postachio-categories-5.html
Created May 6, 2014 13:17
Postach.io Categoires Nav Step 3
<nav class="categories">
<h4>Categories</h4>
<ul>
<li><a href="/tag/design" class="{{ set_active('/tag/design') }}">Design</a></li>
<li><a href="/tag/web" class="{{ set_active('/tag/web') }}">Web</a></li>
<li><a href="/tag/ios" class="{{ set_active('/tag/ios') }}">iOS</a></li>
<li><a href="/tag/android" class="{{ set_active('/tag/android') }}">Android</a></li>
</ul>
</nav>
@matt-west
matt-west / postachio-categories-5.html
Created May 6, 2014 13:16
Postach.io Categoires Nav Step 2
<nav class="categories">
<h4>Categories</h4>
</nav>
@matt-west
matt-west / postachio-categories-4.html
Created May 6, 2014 13:16
Postach.io Categoires Nav Step 1
<nav class="categories">
</nav>
@matt-west
matt-west / postachio-categories-3.html
Created May 6, 2014 13:15
Postach.io Categories Header Links
<div class="nav-collapse collapse">
<ul class="nav pull-right">
<li><a href="/">Blog</a></li>
<!-- Categories -->
<li><a href="/tag/design" class="{{ set_active('/tag/design') }}">Design</a></li>
<li><a href="/tag/web" class="{{ set_active('/tag/web') }}">Web</a></li>
<li><a href="/tag/ios" class="{{ set_active('/tag/ios') }}">iOS</a></li>
<li><a href="/tag/android" class="{{ set_active('/tag/android') }}">Android</a></li>
<!-- END Categories -->
@matt-west
matt-west / postachio-categories-2.html
Created May 6, 2014 13:13
Postach.io Category Link Example with List Item
<li><a href="/tag/category" class="{{ set_active('/tag/category') }}">Category</a></li>