comlib/templates/wishes.html

25 lines
1,018 B
HTML
Raw Normal View History

2023-12-13 04:51:05 +00:00
{% extends "layout.html" %}
{% block title %}{{ this.title }}{% endblock %}
{% block body %}
2024-09-17 11:48:15 +00:00
<main class="fp">
2023-12-13 04:51:05 +00:00
{% if this.body %}
<h2 class="page-title">{{ this.title }}</h2>
{{ this.body }}
{% else %}
<h2>{{ this.title }}</h2>
{% endif %}
<ul class="list-none">
{% for post in this.children %}
<li class="bib">
2023-12-13 04:55:16 +00:00
<span class="bib-title">{{ post.title }}</span><br>
2023-12-13 04:51:05 +00:00
{% if post.subtitle %}<span class="bib-small-txt">{{ post.subtitle }}</span><br>{% endif %}
{% if post.author %}<span class="bib-small-txt">by {{ post.author }}</span><br>{% endif %}
{% if post.publisher %}<span class="bib-small-txt italics">Publisher: {{ post.publisher}}</span><br>{% endif %}
{% if post.pub_date %}<span class="bib-small-txt italics">Publish date: {{ post.pub_date }}</span><br>{% endif %}
{% if post.ref %}<span class="bib-small-txt italics">Referenced in: {{ post.ref }}</span>{% endif %}
</li>
{% endfor %}
</ul>
2024-09-17 11:48:15 +00:00
</main>
2023-12-13 04:51:05 +00:00
{% endblock %}