Migrate from Bazel
This commit is contained in:
commit
016dbd0814
59 changed files with 7044 additions and 0 deletions
28
themes/retro-future/templates/series.html
Normal file
28
themes/retro-future/templates/series.html
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
{% extends "base.html" %}
|
||||
{% import "macros.html" as macros %}
|
||||
|
||||
{% block title %}{{ section.title }} · {{ config.title }}{% endblock title %}
|
||||
|
||||
{% block description %}{{ section.description | default(value=config.description) }}{% endblock description %}
|
||||
|
||||
{% block content %}
|
||||
<h1 class="page-title">{{ section.title }}</h1>
|
||||
|
||||
{% if section.description %}
|
||||
<p class="section-description">{{ section.description }}</p>
|
||||
{% endif %}
|
||||
|
||||
{% if section.content %}
|
||||
<div class="section-content">
|
||||
{{ section.content | safe }}
|
||||
</div>
|
||||
{% endif %}
|
||||
|
||||
<nav aria-label="Series navigation">
|
||||
<ol class="post-list">
|
||||
{% for page in section.pages %}
|
||||
{{ macros::post_list_item(page=page, show_series=false) }}
|
||||
{% endfor %}
|
||||
</ol>
|
||||
</nav>
|
||||
{% endblock content %}
|
||||
Loading…
Add table
Add a link
Reference in a new issue