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
Raw Normal View History

2021-08-20 15:00:26 +00:00
{% extends "base.html" %}
{% block content %}
<div class="title">
<h1>{{ page.title }}</h1>
<p>{{ page.description }}</p>
</div>
{{ page.content | safe }}
2021-08-26 00:27:03 +00:00
<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>
2021-08-20 15:00:26 +00:00
{% endblock content %}