Migrate from Bazel
This commit is contained in:
commit
016dbd0814
59 changed files with 7044 additions and 0 deletions
14
themes/retro-future/templates/taxonomy_single.html
Normal file
14
themes/retro-future/templates/taxonomy_single.html
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
{% extends "base.html" %}
|
||||
{% import "macros.html" as macros %}
|
||||
|
||||
{% block title %}{{ term.name }} · {{ taxonomy.name | title }} · {{ config.title }}{% endblock title %}
|
||||
|
||||
{% block content %}
|
||||
<h1 class="page-title">{{ taxonomy.name | title }}: {{ term.name }}</h1>
|
||||
|
||||
<ul class="post-list">
|
||||
{% for page in term.pages %}
|
||||
{{ macros::post_list_item(page=page, show_tags=false) }}
|
||||
{% endfor %}
|
||||
</ul>
|
||||
{% endblock content %}
|
||||
Loading…
Add table
Add a link
Reference in a new issue