This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{% 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 %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<style> | |
.categories ul { | |
list-style: none; | |
margin: 0; | |
} | |
.categories li { | |
padding-bottom: 0.5em; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{% 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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<nav class="categories"> | |
<h4>Categories</h4> | |
</nav> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<nav class="categories"> | |
</nav> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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 --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<li><a href="/tag/category" class="{{ set_active('/tag/category') }}">Category</a></li> |