mirror of
https://github.com/kremalicious/blog.git
synced 2024-11-11 23:55:16 +01:00
22 lines
502 B
HTML
22 lines
502 B
HTML
---
|
|
layout: base
|
|
---
|
|
|
|
<section role="main" id="main" class="grid">
|
|
|
|
{% if page.type == 'category' %}
|
|
<h1 class="page-title">{{ page.title }}</h1>
|
|
{% elsif page.type == 'tag' %}
|
|
<h1 class="page-title"><span class="hash">#</span>{{ page.title }}</h1>
|
|
{% else %}
|
|
<h1 class="page-title">{{ page.type }} archive for {{ page.title }}</h1>
|
|
{% endif %}
|
|
|
|
{% for post in page.posts %}
|
|
{% include articles.html %}
|
|
{% endfor %}
|
|
|
|
</section>
|
|
|
|
{% include paginator.html %}
|