{% include head.html %}
The following are the entries for the category "{{ page.category }}"
{% for entry in site.data.blog.entries %}
{% if entry.title != nil %}
{% if entry.cat == page.category %}
{{ entry.title }}
{% endif %}
{% endif %}
{% endfor %}
{% include footer.html %}