1
0
mirror of https://github.com/kremalicious/blog.git synced 2024-06-28 16:48:00 +02:00

fix category icons

This commit is contained in:
Matthias Kretschmann 2014-07-13 21:06:22 +02:00
parent 620c2e2715
commit 00372c20bb
5 changed files with 27 additions and 27 deletions

View File

@ -6,13 +6,13 @@ category: design
---
<section role="main" id="main" class="row">
<h1 class="page-title icon-{{ page.category }}">{{ page.category }}</h1>
<h1 class="page-title icon icon-{{ page.category }}">{{ page.category }}</h1>
{% for post in paginator.posts %}
{% include articles.html %}
{% endfor %}
</section>

View File

@ -6,13 +6,13 @@ category: goodies
---
<section role="main" id="main" class="row">
<h1 class="page-title icon-{{ page.category }}">{{ page.category }}</h1>
<h1 class="page-title icon icon-{{ page.category }}">{{ page.category }}</h1>
{% for post in paginator.posts %}
{% include articles.html %}
{% endfor %}
</section>

View File

@ -5,13 +5,13 @@ category: personal
---
<section role="main" id="main" class="row">
<h1 class="page-title icon-{{ page.category }}">{{ page.category }}</h1>
<h1 class="page-title icon icon-{{ page.category }}">{{ page.category }}</h1>
{% for post in paginator.posts %}
{% include articles.html %}
{% endfor %}
</section>

View File

@ -5,13 +5,13 @@ category: photography
---
<section role="main" id="main" class="row">
<h1 class="page-title icon-{{ page.category }}">{{ page.category }}</h1>
<h1 class="page-title icon icon-{{ page.category }}">{{ page.category }}</h1>
{% for post in paginator.posts %}
{% include articles.html %}
{% endfor %}
</section>

View File

@ -6,18 +6,18 @@ category: photos
---
<section role="main" id="main" class="row">
<h1 class="page-title icon-photos">photos</h1>
<h1 class="page-title icon icon-photos">photos</h1>
<div class="masonry">
<div class="grid-sizer"></div>
{% for post in paginator.posts %}
{% include articles.html %}
{% endfor %}
</div>
</section>