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/article.html

23 lines
503 B
HTML

{% extends "base.html" %}
{% block content %}
<div class="title">
<h1>{{ page.title }}</h1>
<p>{{ page.description }}</p>
</div>
{{ page.content | safe }}
<hr>
<details>
<summary>Get a copy of this Library</summary>
<h4>Using <code>git</code></h4>
<pre>
git clone https://tildegit.org/southlondon/library.git</pre>
<h4>Using <code>wget</code></h4>
<pre>
wget https://tildegit.org/southlondon/library/archive/main.zip
unzip main.zip</pre>
</details>
{% endblock content %}