make the title of the rules page easier to see with a lot of tabs open
This commit is contained in:
parent
63e439bccc
commit
5d32717701
|
@ -1,12 +1,13 @@
|
|||
<!DOCTYPE html>
|
||||
<head>
|
||||
<meta charset=utf-8>
|
||||
<title>{% block title %}{% endblock title %}</title>
|
||||
<!-- {% block title %}{% endblock title %} -->
|
||||
<title>{% block titletag %}{{ self.title() }}{% endblock titletag %}</title>
|
||||
<meta name=viewport content="width=device-width, initial-scale=1.0">
|
||||
<link rel=icon href="/favicon.png">
|
||||
<link rel=stylesheet href="/common.css">
|
||||
<body>
|
||||
<h1>{{ self.title() }}</h1>
|
||||
<h1>{% block titleheader %}{{ self.title() }}{% endblock titleheader %}</h1>
|
||||
<main>
|
||||
{% block content %}{% endblock content %}
|
||||
</main>
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
{% extends 'base.j2.html' %}
|
||||
{% block title %}Freak University Rules{% endblock %}
|
||||
{% block titletag %}Rules - Freak University{% endblock titletag %}
|
||||
{% block titleheader %}Freak University Rules {% endblock titleheader %}
|
||||
{% block content %}
|
||||
<p>As of 2024-08-03. Based on the <a href="https://archive.is/9PoIp">original Freak U fediverse rules as of 2022-08-11</a>.
|
||||
<ol>
|
||||
|
|
Loading…
Reference in New Issue