1
0
Fork 0
forked from wezm/wezm.net
wezm.net/v2/templates/section.html

34 lines
1,008 B
HTML
Raw Normal View History

2020-01-27 06:53:47 +00:00
{% extends "layout.html" %}
{% block title %}{{ section.title }} - {{ config.title }}{% endblock %}
{% block body %}
<h1 class="logo"><a href="{{ config.base_url }}/" class="no-border hover-underline">👨‍💻 {{ config.title }}</a></h1>
<nav>
{% for ancestor in section.ancestors %}
{% set section = get_section(path=ancestor) %}
{% if section.path == "/" %}
<a href="{{ config.base_url }}{{ section.path }}" class="no-border hover-underline">Home</a>
{% else %}
<span class="breadcrumb-sep">/</span>
<a href="{{ config.base_url }}/{{ section.path }}" class="no-border hover-underline">{{ section.title }}</a>
{% endif %}
{% endfor %}
</nav>
<main class="{{ section.extra.main_class | default(value="") }}">
<h2>{{ section.title }}</h2>
{{ section.content | safe }}
2022-01-27 10:03:53 +00:00
{% for page in section.pages %}
{% include "article.html" %}
2020-01-27 06:53:47 +00:00
{% endfor %}
{% for page in paginator.pages %}
{% include "article.html" %}
{% endfor %}
</main>
{% endblock %}