Add <title> to writing index and tag listings.
This commit is contained in:
parent
bc2ab74050
commit
596ba3b9d4
1 changed files with 6 additions and 0 deletions
|
@ -280,6 +280,11 @@ def maketagpage(index, path):
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
|
||||||
<link rel="stylesheet" href="/writing/dark.css"/>
|
<link rel="stylesheet" href="/writing/dark.css"/>
|
||||||
|
{% if path %}
|
||||||
|
<title>Articles tagged {{path}}</title>
|
||||||
|
{% else %}
|
||||||
|
<title>Articles by tag</title>
|
||||||
|
{% endif %}
|
||||||
<style>
|
<style>
|
||||||
body
|
body
|
||||||
{
|
{
|
||||||
|
@ -360,6 +365,7 @@ def write_writing_index():
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
|
||||||
<link rel="stylesheet" href="/writing/dark.css"/>
|
<link rel="stylesheet" href="/writing/dark.css"/>
|
||||||
|
<title>Writing</title>
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
|
|
Loading…
Reference in a new issue