extras_category.html 408 B

123456789101112131415161718192021222324
  1. {% include head.html %}
  2. <br>
  3. The following are the entries for the category "<i>{{ page.category }}</i>"
  4. <br>
  5. <br>
  6. {% for entry in site.data.blog.entries %}
  7. {% if entry.title != nil %}
  8. {% if entry.cat == page.category %}
  9. <a href="{{ entry.url }}" style="marin-left: 20px;">
  10. {{ entry.title }}
  11. </a>
  12. {% endif %}
  13. {% endif %}
  14. {% endfor %}
  15. <br>
  16. <br>
  17. {% include footer.html %}