Files
wona.github.com/_layouts/category.html
2016-07-06 03:06:49 -04:00

30 lines
907 B
HTML

---
layout: layout
---
{% include cat_header.html %}
<div class="category-posts container">
{% for post in site.categories[page.category] %}
<div class="category-post row">
{% if post.image != nil %}
<div class="col-sm-3 center-fill-container img-container">
<a href="{{ post.url }}">
<img src="/images/posts/{{post.image}}" alt="" class="img-center-fill {% if post.image == null %}hidden{% endif %}">
</a>
</div>
<div class="col-sm-9 details">
<h3 class="title"><a href="{{ post.url }}">{{ post.title}}</a></h3>
<p class="tag">{{ post.excerpt }}</p>
</div>
{% else %}
<div class="col-sm-12 details">
<h3 class="title"><a href="{{ post.url }}">{{ post.title}}</a></h3>
<p class="tag">{{ post.excerpt }}</p>
</div>
{% endif %}
</div>
{% endfor %}
</div>