Browse Source

actually make section useable

main
xenua 2 years ago
parent
commit
50311dd980
  1. 56
      templates/section.html

56
templates/section.html

@ -1,16 +1,29 @@ @@ -1,16 +1,29 @@
{% extends "base.html" %}
{% import "macros.html" as macros %}
{% block content %}
{% for page in section.pages | reverse %}
<h1><a href="{{ page.permalink }}" class="stealth">{{ page.title }}</a></h1>
{% if page.date %}
<span>{{ page.date | date(format="%Y-%m-%d") }}</span>
{% endif %}
{% if page.summary %}
<p>{{ page.summary | safe }}</p>
{% endif %}
{% if not loop.last %}<hr>{% endif %}
{% endfor %}
{% for page in section.pages | reverse %}
<h1><a href="{{ page.permalink }}" class="stealth">{{ page.title }}</a></h1>
{% if page.date %}
<span>{{ page.date | date(format="%Y-%m-%d") }}</span>
{% endif %}
{% if page.summary %}
{% if config.extra.summary_max_length %}
{% set sum = page.summary | safe | truncate(length=config.extra.summary_max_length) %}
{% else %}
{% set sum = page.summary | safe %}
{% endif %}
<p>{{ sum | safe }}</p>
{% endif %}
{% if not loop.last %}<hr>{% endif %}
{% endfor %}
{% endblock %}
{% block nav %}
{% set dom = section.relative_path | trim_end_matches(pat="/_index.md") %}
<span><a class="stealth" href="..">../{{ dom }}</a></span>
<noscript id="theme-toggle-placeholder"></noscript>
{% endblock %}
{% block footer %}
@ -25,7 +38,24 @@ @@ -25,7 +38,24 @@
{% endblock %}
{% block aside %}
{% for k, thing in section %}
{{ k }}: {{ thing }}<br>
{% endfor %}
{% if section.title %}
<h1>{{ section.title }}</h1>
{% endif %}
{% if section.content %}
{{ section.content | safe }}
{% endif %}
{% if section.subsections %}
{{ config.extra.subsections_string | default(value="Subsections:") }}
<ul>
{% for sub in section.subsections %}
{% set dom = sub | trim_end_matches(pat="/_index.md") %}
<li><a class="stealth" href="{{ dom }}">{{ dom }}</a></li>
{% endfor %}
</ul>
{% endif %}
{% if config.extra.xscratch_debug_info %}
<span><strong>Debug info:</strong></span>
{{ macros::debug(thing=section, label="section", recurse=2) }}
{% endif %}
{% endblock %}
Loading…
Cancel
Save