28 lines
1.0 KiB
HTML
28 lines
1.0 KiB
HTML
|
{% extends "index.html" %}
|
||
|
|
||
|
{% block title %}{{ section.title }} - {{ config.title }}{% endblock %}
|
||
|
|
||
|
{% block main %}
|
||
|
<section class="h-feed">
|
||
|
<h1 class="p-name">{{ section.title }}</h1>
|
||
|
<a class="u-url" hidden aria-hidden=true href="{{ section.permalink }}">Permalink</a>
|
||
|
{% for page in section.pages %}
|
||
|
<article>
|
||
|
<div>
|
||
|
<a class="u-url" href="{{ page.permalink }}"><h2>{{ page.title }}</h2></a>
|
||
|
{%- if page.date -%}<time class="dt-published" datetime="{{ page.date }}">📅 {{ page.date | date(format="%d/%m/%Y") }}</time>{%- endif -%}
|
||
|
</div>
|
||
|
{% if page.summary %}
|
||
|
<div class="p-summary e-content">
|
||
|
{{ page.summary | markdown | safe }}
|
||
|
</div>
|
||
|
{% else %}
|
||
|
<div class="e-content">
|
||
|
{{ page.content | markdown | safe }}
|
||
|
</div>
|
||
|
{% endif %}
|
||
|
</article>
|
||
|
{% endfor %}
|
||
|
</article>
|
||
|
{% endblock %}
|