mirror of
https://github.com/kremalicious/blog.git
synced 2024-11-11 23:55:16 +01:00
30 lines
600 B
HTML
30 lines
600 B
HTML
|
---
|
||
|
layout: base
|
||
|
---
|
||
|
|
||
|
<section role="main" id="main" class="row">
|
||
|
|
||
|
{% if page.type == 'category' %}
|
||
|
<h1 class="page-title icon icon-{{ page.title }}">{{ page.title }}</h1>
|
||
|
{% else %}
|
||
|
<h1 class="page-title">{{ page.type }} archive for {{ page.title }}</h1>
|
||
|
{% endif %}
|
||
|
|
||
|
{% if page.title == 'photos' %}
|
||
|
<div class="masonry">
|
||
|
<div class="grid-sizer"></div>
|
||
|
{% endif %}
|
||
|
|
||
|
{% for post in page.posts %}
|
||
|
{% include articles.html %}
|
||
|
{% endfor %}
|
||
|
|
||
|
{% if page.title == 'photos' %}
|
||
|
</div>
|
||
|
{% endif %}
|
||
|
|
||
|
|
||
|
</section>
|
||
|
|
||
|
{% include paginator.html %}
|