This repository has been archived on 2024-01-11. You can view files and clone it, but cannot push or open issues or pull requests.
library/templates/category.html

19 lines
761 B
HTML

{% extends "base.html" %}
{% block content %}
<div class="title">
<h1><b>{{ section.title }}</b></h1>
<p>{{section.description}}</p>
</div>
<div>
{% for page in section.pages %}
<div>
<a class="page" href="{{ page.permalink | safe }}">
<h4 class="page-title"><svg class="icon" xmlns="http://www.w3.org/2000/svg" class="h-5 w-5" viewBox="0 0 20 20" fill="currentColor">
<path d="M9 4.804A7.968 7.968 0 005.5 4c-1.255 0-2.443.29-3.5.804v10A7.969 7.969 0 015.5 14c1.669 0 3.218.51 4.5 1.385A7.962 7.962 0 0114.5 14c1.255 0 2.443.29 3.5.804v-10A7.968 7.968 0 0014.5 4c-1.255 0-2.443.29-3.5.804V12a1 1 0 11-2 0V4.804z" />
</svg> {{ page.title }}</h4></a>
{{ page.description }}
</div>
{% endfor %}
</div>
{% endblock content %}