1
ewpratten.com/templates/section.html
2022-11-25 14:58:40 -05:00

49 lines
1.2 KiB
HTML

{% extends "base.html" %}
{# Pass data through to the base template #}
{% block variable_wormhole %}
{{ super() }}
{% set title = section.title %}
{% set description = section.description %}
{% if section.extra.uses %}
{% set feature_flags = section.extra.uses %}
{% endif %}
{% endblock variable_wormhole %}
{# Page content #}
{% block page_start %}
{% include "components/heading-card.html" %}
{% endblock page_start %}
{% block content %}
{{ section.content | safe }}
{# Handle various embed modes #}
{% if section.extra.section_embed_mode %}
{% if section.extra.section_embed_mode == "blog_posts" %}
{# <ul style="margin:0"> #}
<div>
{# Posts shall be broken down by year #}
{% set title_year = "3000" %}
{% for page in section.pages %}
{% if not page.extra.hidden %}
{% set page_year = page.date | date(format="%Y")%}
{% if page_year != title_year %}
{% set_global title_year = page_year %}
</ul>
<h2>{{title_year}}</h2>
<ul>
{% endif %}
<li class="blog-post-li"><span style="color:{% if page.draft %}red{% else %}gray{% endif %};">{{page.date}}:</span>
<a href="{{page.path}}">{{page.title}}</a>
</li>
{% endif %}
{% endfor %}
</ul>
</div>
{% endif %}
{% endif %}
{% endblock content %}