staticadventures/templates/skills/single.html

16 lines
380 B
HTML

{% extends "index.html" %}
{% block main %}
<section>
<h1>{{ term.name }}</h1>
{% set page = get_page(path="_common/skills/" ~ term.slug ~ ".md") %}
{{ page.content | safe }}
<h2>Latest articles:</h2>
<ul>
{% for page in term.pages %}
<li><a href="{{ page.permalink }}">{{ page.title }}</a></li>
{% endfor %}
</ul>
</section>
{% endblock main %}