Author
|
zPlus <zplus@peers.community>
2022-08-03 15:33:10
|
Committer
|
zPlus <zplus@peers.community>
2022-08-03 15:33:10
|
Commit
|
6b84231
(patch)
|
Tree
|
84367d7
|
Parent(s)
|
|
Add HTML title to website pages.
commits diff:
64fd1f0..6b84231
10 files changed,
19 insertions,
1 deletion
—
download
Diffstat
Diff options
+2/-0
M templates/about.html
1
|
1
|
|
{% extends "index.html" %}
|
2
|
2
|
|
|
|
3
|
+ |
{% block page_title %}About{% endblock %}
|
|
4
|
+ |
|
3
|
5
|
|
{% block menu_about_class %}selected{% endblock %}
|
4
|
6
|
|
|
5
|
7
|
|
{% block content %}
|
+2/-0
M templates/explore.html
1
|
1
|
|
{% extends "index.html" %}
|
2
|
2
|
|
|
|
3
|
+ |
{% block page_title %}Explore{% endblock %}
|
|
4
|
+ |
|
3
|
5
|
|
{% block menu_explore_class %}selected{% endblock %}
|
4
|
6
|
|
|
5
|
7
|
|
{% block content %}
|
+1/-1
M templates/layout.html
7
|
7
|
|
<link href="/static/css/pygments_default.css" rel="stylesheet">
|
8
|
8
|
|
<link href="/static/css/clif.css" rel="stylesheet">
|
9
|
9
|
|
|
10
|
|
- |
<title>{{ title if title }}</title>
|
|
10
|
+ |
<title>{% block page_title %}{% endblock %}</title>
|
11
|
11
|
|
</head>
|
12
|
12
|
|
|
13
|
13
|
|
<body>
|
+2/-0
M templates/mailing_list/emails.html
1
|
1
|
|
{% extends "mailing_list/mailing_list.html" %}
|
2
|
2
|
|
|
|
3
|
+ |
{% block page_title %}Mailing list: {{ list_address }}{% endblock %}
|
|
4
|
+ |
|
3
|
5
|
|
{% block content %}
|
4
|
6
|
|
|
5
|
7
|
|
<details class="filters">
|
+2/-0
M templates/mailing_list/emails_thread.html
1
|
1
|
|
{% extends "mailing_list/mailing_list.html" %}
|
2
|
2
|
|
|
|
3
|
+ |
{% block page_title %}{{ thread.title }} - {{ list_address }}{% endblock %}
|
|
4
|
+ |
|
3
|
5
|
|
{% block content %}
|
4
|
6
|
|
<div class="thread">
|
5
|
7
|
|
|
+2/-0
M templates/repository/blob.html
1
|
1
|
|
{% extends "repository/repository.html" %}
|
2
|
2
|
|
|
|
3
|
+ |
{% block page_title %}Tree: {{ repository }}/{{ revision }}{{ '/' + tree_path if tree_path }}{% endblock %}
|
|
4
|
+ |
|
3
|
5
|
|
{% block menu_tree_class %}selected{% endblock %}
|
4
|
6
|
|
|
5
|
7
|
|
{% block content %}
|
+2/-0
M templates/repository/log.html
1
|
1
|
|
{% extends "repository/repository.html" %}
|
2
|
2
|
|
|
|
3
|
+ |
{% block page_title %}Log: {{ repository }}/{{ revision }}{% endblock %}
|
|
4
|
+ |
|
3
|
5
|
|
{% block menu_log_class %}selected{% endblock %}
|
4
|
6
|
|
|
5
|
7
|
|
{% block content %}
|
+2/-0
M templates/repository/overview.html
1
|
1
|
|
{% extends "repository/repository.html" %}
|
2
|
2
|
|
|
|
3
|
+ |
{% block page_title %}Overview: {{ repository }}{% endblock %}
|
|
4
|
+ |
|
3
|
5
|
|
{% block menu_overview_class %}selected{% endblock %}
|
4
|
6
|
|
|
5
|
7
|
|
{% block content %}
|
+2/-0
M templates/repository/refs.html
1
|
1
|
|
{% extends "repository/repository.html" %}
|
2
|
2
|
|
|
|
3
|
+ |
{% block page_title %}Refs: {{ repository }}{% endblock %}
|
|
4
|
+ |
|
3
|
5
|
|
{% block menu_refs_class %}selected{% endblock %}
|
4
|
6
|
|
|
5
|
7
|
|
{% block content %}
|
+2/-0
M templates/repository/tree.html
1
|
1
|
|
{% extends "repository/repository.html" %}
|
2
|
2
|
|
|
|
3
|
+ |
{% block page_title %}Tree: {{ repository }}/{{ revision }}{{ '/' + tree_path if tree_path }}{% endblock %}
|
|
4
|
+ |
|
3
|
5
|
|
{% block menu_tree_class %}selected{% endblock %}
|
4
|
6
|
|
|
5
|
7
|
|
{% block content %}
|