19 lines
856 B
Django/Jinja
19 lines
856 B
Django/Jinja
{% extends "base.html.j2" %}
|
||
{% block title %}{{ page_title }}{% endblock %}
|
||
{% block description %}{{ page_description }}{% endblock %}
|
||
{% block canonical_path %}{{ canonical_path }}{% endblock %}
|
||
{% block content %}
|
||
<nav class="breadcrumb" aria-label="Breadcrumb">
|
||
{% for label, href in breadcrumb %}{% if href %}<a href="{{ href }}">{{ label }}</a>{% else %}<span>{{ label }}</span>{% endif %}{% if not loop.last %} <span class="sep">›</span> {% endif %}{% endfor %}
|
||
</nav>
|
||
<article class="climate-page">
|
||
<h1>Weather & climate glossary</h1>
|
||
<p class="lede">Plain-language definitions of the terms Thermograph uses to grade the weather.</p>
|
||
{% for t in terms %}
|
||
<div class="glossary-term">
|
||
<h2><a href="{{ base }}/glossary/{{ t.slug }}">{{ t.term }}</a></h2>
|
||
<p>{{ t.short }}</p>
|
||
</div>
|
||
{% endfor %}
|
||
</article>
|
||
{% endblock %}
|