aboutsummaryrefslogtreecommitdiff
path: root/infra/website/crumbs/templates/category.html
blob: 22e0081281819ebf6959718d45d4cdab9d9b3214 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{% extends "base.html" %}

{% block body %}
<div class="gay nav">
  {% include "components/title.html" %}
  {% include "components/links.html" %}
</div>

{% include "components/gay.html" %}

<div class="content">
  <h1>{{ category }}</h1>
  
  {% for article in articles %}
  <ul class="list">
    <li><time class="date">{{ article.locale_date }}</time>
      <a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}</a></li>
  </ul>
  {% endfor %}
</div>
{% endblock %}