findcommonground.uk/_layouts/post_by_category.html

60 lines
2.2 KiB
HTML
Raw Normal View History

2016-01-04 20:49:37 +00:00
---
layout: default
---
2016-01-30 22:22:55 +00:00
<!-- Post Header -->
<header class="intro-header" style="background-image: url('{{ site.baseurl }}/{% if page.header-img %}{{ page.header-img }}{% else %}{{ site.header-img }}{% endif %}')">
2016-01-04 20:49:37 +00:00
2016-01-30 22:22:55 +00:00
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2 col-md-10 col-md-offset-1">
<div class="post-heading">
<h1>{{ page.title }}</h1>
<h2 class="subheading">Articles posted in {{ page.title }}</h2>
</div>
</div>
</div>
</div>
</header>
2016-01-04 20:49:37 +00:00
2016-01-30 22:22:55 +00:00
<article class="page">
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2 col-md-10 col-md-offset-1">
{% if site.categories[page.category] %}
{% for post in site.categories[page.category] %}
{% capture post_year %}{{ post.date | date: '%Y' }}{% endcapture %}
{% if forloop.first %}
<h3>{{ post_year }}</h3><ul>
{% endif %}
{% if forloop.first == false %}
{% assign previous_index = forloop.index0 | minus: 1 %}
{% capture previous_post_year %}{{ site.categories[page.category][previous_index].date | date: '%Y' }}{% endcapture %}
{% if post_year != previous_post_year %}
</div><h3>{{ post_year }}</h3><ul>
{% endif %}
{% endif %}
<li>
<a href="{{ post.url }}/" class="read-more">
{{ post.title }}
</a>
</li>
2016-01-04 20:49:37 +00:00
2016-01-30 22:22:55 +00:00
{% if forloop.last %}
</ul>
{% endif %}
{% endfor %}
{% else %}
<p>There are no posts in this category.</p>
2016-01-04 20:49:37 +00:00
{% endif %}
2016-01-30 22:22:55 +00:00
</div>
</div>
2016-01-04 20:49:37 +00:00
</div>
2016-01-30 22:22:55 +00:00
</article>
<hr>