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>
|
<!DOCTYPE html>
|
||||||
<head>
|
<head>
|
||||||
<meta charset=utf-8>
|
<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">
|
<meta name=viewport content="width=device-width, initial-scale=1.0">
|
||||||
<link rel=icon href="/favicon.png">
|
<link rel=icon href="/favicon.png">
|
||||||
<link rel=stylesheet href="/common.css">
|
<link rel=stylesheet href="/common.css">
|
||||||
<body>
|
<body>
|
||||||
<h1>{{ self.title() }}</h1>
|
<h1>{% block titleheader %}{{ self.title() }}{% endblock titleheader %}</h1>
|
||||||
<main>
|
<main>
|
||||||
{% block content %}{% endblock content %}
|
{% block content %}{% endblock content %}
|
||||||
</main>
|
</main>
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
{% extends 'base.j2.html' %}
|
{% 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 %}
|
{% 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>.
|
<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>
|
<ol>
|
||||||
|
|
Loading…
Reference in New Issue