Migrate from Bazel
This commit is contained in:
commit
016dbd0814
59 changed files with 7044 additions and 0 deletions
16
themes/retro-future/templates/taxonomy_list.html
Normal file
16
themes/retro-future/templates/taxonomy_list.html
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
{% extends "base.html" %}
|
||||
|
||||
{% block title %}{{ taxonomy.name | title }} · {{ config.title }}{% endblock title %}
|
||||
|
||||
{% block content %}
|
||||
<h1 class="page-title">{{ taxonomy.name | title }}</h1>
|
||||
|
||||
<ul class="taxonomy-list">
|
||||
{% for term in terms %}
|
||||
<li class="taxonomy-list__item">
|
||||
<a href="{{ term.permalink }}">{{ term.name }}</a>
|
||||
<span class="taxonomy-list__count">({{ term.pages | length }})</span>
|
||||
</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
{% endblock content %}
|
||||
Loading…
Add table
Add a link
Reference in a new issue