this repo has no description
at main 21 lines 495 B view raw
1{% extends "base.html" %} 2 3{% block content %} 4{%- if not section.extra.no_header -%} 5 <h1>{{ section.title }}</h1> 6{%- endif -%} 7 8{{ section.content | safe }} 9 10<ul class="posts"> 11 {% for page in paginator.pages %} 12 <li class="post"> 13 <p><a href="{{ page.permalink }}">{{ page.title }}</a> {{ page.date }}</p> 14 <div class="post-summary"> 15 {{ page.summary | safe }} 16 </div> 17 </li> 18 {% endfor %} 19</ul> 20 21{% endblock content %}