webbed-site/templates/section.html
2024-09-15 00:15:34 -05:00

22 lines
No EOL
647 B
HTML

{% extends "base.html" %}
{% block content %}
<h1>{{ section.title }}</h1>
<hr style="border: dashed 1px; color: var(--hovColor); width: 93%; margin: 1em auto;">
{{ section.content | safe }}
{% if paginator %}
{% set pages = paginator.pages %}
{% else %}
{% set pages = section.pages %}
{% endif %}
<ul class="titleList">
{% for page in pages %}
{% set line = page.content | trim_start_matches(pat="<p>") | trim_end_matches(pat="</p>") -%}
{% set size = line | length - 5 -%}
<li><strong>{{ page.date | date(format="%y/%m/%d")}}</strong>: {{ line | truncate(length=size, end="") | safe }}</li>
{% endfor %}
</ul>
{% endblock content %}