Improve page layouts

This commit is contained in:
clerie 2025-02-01 20:07:33 +01:00
parent 0971df3cbe
commit 652c7afb7a
5 changed files with 11 additions and 4 deletions

View File

@ -9,6 +9,8 @@
<div id="content">
{% block content %}{% endblock %}
</div>
<center><small><a href="/">Home</a> | <a href="/flakes">All flakes</a></small></center>
</body>
</html>

View File

@ -1,7 +1,11 @@
{% extends "base.html" %}
{% block content %}
<h1>{{ uri }}</h1>
<h1>Flake details</h1>
<ul>
<li>Flake: {{ uri }}</li>
</ul>
<h2>Revisions</h2>

View File

@ -1,7 +1,7 @@
{% extends "base.html" %}
{% block content %}
<h1>All scanned flakes</h1>
<h1>All flakes</h1>
<ul>
{% for flake in flakes %}

View File

@ -4,7 +4,7 @@
<h1>Flake Tracker</h1>
<ul>
<li><a href="/flakes">All scanned flakes</a></li>
<li><a href="/flakes">All flakes</a></li>
</ul>
{% endblock %}

View File

@ -1,9 +1,10 @@
{% extends "base.html" %}
{% block content %}
<h1>{{ revision_uri }}</h1>
<h1>Revision details</h1>
<ul>
<li>Revision: {{ revision_uri }}</li>
<li>Revision of: <a href="{# flake_revision.flake_link() #}">{# flake_revision.uri #}</a></a>
</ul>