1
0
mirror of https://github.com/kremalicious/blog.git synced 2024-06-30 21:52:05 +02:00
blog/_src/_layouts/category_index.html

60 lines
1.7 KiB
HTML

---
layout: base
---
<section role="main" id="main" class="row">
<h1 class="page-title"><a class="home" href="/" title="Back to Home">/</a>{{ page.category }}</h1>
{% if page.url contains "/photos" %}
<div class="masonry">
<div class="grid-sizer"></div>
{% endif %}
{% for post in site.categories[page.category] %}
{% if post.categories contains "goodies" %}
<article class="hentry goodie">
<header>
<h1 class="entry-title"><a href="{{ post.url }}">{{ post.title }}</a></h1>
</header>
<section class="entry-content">
{% if post.image %}
<a href="{{ post.url }}">
{% picture {{ post.image }} class="teaser" %}
</a>
{% else %}
{{ post.excerpt }}
{% endif %}
<footer class="goodie-actions">
<p class="info col3">
<a class="btn icon-info" href="{{ post.url }}">Release Post</a>
</p>
{% if post.download %}
<p class="download col3">
<a class="btn icon-arrow-down" href="/media/{{ post.download }}">Download <span>zip</span></a>
</p>
{% endif %}
</footer>
</section>
</article>
{% else %}
{% include index.html %}
{% endif %}
{% endfor %}
{% if page.url contains "/photos" %}
</div>
{% endif %}
</section>