Add the tag's name into the <head> title.
This commit is contained in:
parent
533970f248
commit
2d732c5ab0
1 changed files with 5 additions and 1 deletions
|
@ -3,7 +3,11 @@
|
||||||
<head>
|
<head>
|
||||||
{% import "header.html" as header %}
|
{% import "header.html" as header %}
|
||||||
{% import "tag_object.html" as tag_object %}
|
{% import "tag_object.html" as tag_object %}
|
||||||
<title>Tags</title>
|
{% if specific is none %}
|
||||||
|
<title>Tags</title>
|
||||||
|
{% else %}
|
||||||
|
<title>Tag {{specific_tag.name}}</title>
|
||||||
|
{% endif %}
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<link rel="stylesheet" href="/static/common.css">
|
<link rel="stylesheet" href="/static/common.css">
|
||||||
<script src="/static/common.js"></script>
|
<script src="/static/common.js"></script>
|
||||||
|
|
Loading…
Reference in a new issue