2024-07-07 08:27:18 -05:00
|
|
|
{% extends "base.html" %}
|
|
|
|
|
|
|
|
{% block content %}
|
2024-09-13 20:20:08 -05:00
|
|
|
<h1>{{ section.title }}</h1>
|
|
|
|
<hr style="border: dashed 1px; color: var(--hovColor); width: 93%; margin: 1em auto;">
|
2024-07-07 08:27:18 -05:00
|
|
|
|
|
|
|
{{ section.content | safe }}
|
|
|
|
|
|
|
|
{% if paginator %}
|
|
|
|
{% set pages = paginator.pages %}
|
|
|
|
{% else %}
|
|
|
|
{% set pages = section.pages %}
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
<ul class="titleList">
|
2024-09-15 00:15:34 -05:00
|
|
|
{% 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>
|
2024-07-07 08:27:18 -05:00
|
|
|
{% endfor %}
|
|
|
|
</ul>
|
|
|
|
{% endblock content %}
|