---
layout: default
---
{% include category/title.html %}
    {% assign empty_category = true %}
    {% for post in site.posts %}
        {% if post.categories contains page.category %}
            - 
                
                    {{ post.title }}
                    {{ post.date | date: "%d %B %Y" }}
                
            
 
            {% assign empty_category = false %}
        {% endif %}
    {% endfor %}
    {% if empty_category %}
        - 
            It seems that there are no articles on that category,
            please go back home to see the full list of articles.
        
 
    {% endif %}
{% include page/footer.html %}