diff options
| author | Jan Tuomi <jans.tuomi@gmail.com> | 2024-03-01 10:20:26 +0200 |
|---|---|---|
| committer | Jan Tuomi <jan@jantuomi.fi> | 2024-12-21 19:43:13 +0200 |
| commit | 4ad8fae0f1641f6c023d6de5e1407056b703a332 (patch) | |
| tree | 195e699627188d01cfb23938a3eff6912dc24fd8 | |
| parent | 43947c05fe2e913e203f6d110844e0cd2d393d24 (diff) | |
Fix landing page header hierarchy
| -rw-r--r-- | templates/index.html.j2 | 19 |
1 files changed, 9 insertions, 10 deletions
diff --git a/templates/index.html.j2 b/templates/index.html.j2 index 546a684..fed619b 100644 --- a/templates/index.html.j2 +++ b/templates/index.html.j2 @@ -10,7 +10,8 @@ </form> {% if created_polls | length != 0 %} -<h3>My diddles</h3> +<br> +<h2>My diddles</h2> <ul> {% for poll in created_polls %} <li><a href="/manage/{{ poll.manage_code }}">{{ poll.title }}</a></li> @@ -20,13 +21,11 @@ <br> <br> -<div> - <h3>About diddle</h3> - <p><i>diddle</i> is a minimalist, mobile friendly, fast and self-hosted scheduling tool, - licensed under <a href="https://github.com/jantuomi/diddle/blob/main/LICENSE">Apache 2.0.</a> - </p> - <p> - Find <i>diddle</i> on <a href="https://github.com/jantuomi/diddle">GitHub</a>. © {{ now.year }} Jan Tuomi. All rights reserved. - </p> -</div> +<h2>About diddle</h2> +<p><i>diddle</i> is a minimalist, mobile friendly, fast and self-hosted scheduling tool, + licensed under <a href="https://github.com/jantuomi/diddle/blob/main/LICENSE">Apache 2.0.</a> +</p> +<p> + Find <i>diddle</i> on <a href="https://github.com/jantuomi/diddle">GitHub</a>. © {{ now.year }} Jan Tuomi. All rights reserved. +</p> {% endblock %} |
