diff options
author | sefidel <contact@sefidel.net> | 2023-03-26 16:55:25 +0900 |
---|---|---|
committer | sefidel <contact@sefidel.net> | 2023-03-26 16:55:25 +0900 |
commit | 77ffc8dfeabd45cb3fac500902fcbcb7176edcc7 (patch) | |
tree | 4c3a538e0792d60ca637a3921341820087311233 /templates/parts/head.html | |
download | sefidel-web-77ffc8dfeabd45cb3fac500902fcbcb7176edcc7.tar.gz sefidel-web-77ffc8dfeabd45cb3fac500902fcbcb7176edcc7.zip |
project: Initial commit
Diffstat (limited to 'templates/parts/head.html')
-rw-r--r-- | templates/parts/head.html | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/templates/parts/head.html b/templates/parts/head.html new file mode 100644 index 0000000..1336ec0 --- /dev/null +++ b/templates/parts/head.html @@ -0,0 +1,11 @@ +<meta charset="utf-8"> +<meta name="viewport" content="width=device-width, initial-scale=1"> +{% block rss %} +<link rel="alternate" type="application/atom+xml" title="RSS" href="{{ get_url(path="atom.xml", trailing_slash=false) }}"> +{% endblock %} +{% if current_url %} +<link rel="canonical" href="{{ current_url | safe }}"> +{% endif %} +<link rel="stylesheet" href="{{ get_url(path="normalize.css") }}"> +<link rel="stylesheet" href="{{ get_url(path="style.css") }}"> +<link rel="stylesheet" href="{{ get_url(path="sarasa-gothic.css") }}"> |