extras_entries.html 315 B

123456789101112131415
  1. {% include head.html %}
  2. {{ page.content | markdownify }}
  3. {% for entry in site.data.blog.entries %}
  4. {% if entry.title != nil %}
  5. <a href="{{ entry.url }}" style="margin-left: 20px;">{{ entry.title }}</a>
  6. <br>
  7. {% endif %}
  8. {% endfor %}
  9. <br>
  10. {% include footer.html %}