rolandjesse.de/_layouts/category.html
2016-03-05 17:21:36 +01:00

40 lines
792 B
HTML

<!-- Category Layout Start -->
<!DOCTYPE html>
<html lang="{{ site.lang }}">
{% include head.html %}
<body>
{% include navigation.html %}
<section class="container content-section text-center">
<div class="row">
<div class="col-md-10 col-md-offset-1 col-xs-10 col-xs-offset-1">
{% assign category = page.title %}
<h3 id="#{{ category }}">Category: {{ category }}</h3>
<div>
{% for post in site.posts %}
{% if post.category == category %}
{% include post-list.html%}
{% endif %}
{% endfor %}
</div>
</div>
</div>
</section>
{% include footer.html %}
{% include js.html %}
</body>
</html>
<!-- Category Layout End -->