1
0

Fix paths of static resources

This commit is contained in:
Emil Miler 2024-10-07 21:05:59 +02:00
parent 29402e477c
commit 4557625816

View File

@ -5,9 +5,9 @@
<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">
<title>{% block title %}{{ config.title }}{% endblock %}</title> <title>{% block title %}{{ config.title }}{% endblock %}</title>
<link rel="alternate" type="application/atom+xml" title="Atom" href="{{ get_url(path="/atom.xml", trailing_slash=false) }}"> <link rel="alternate" type="application/atom+xml" title="Atom" href="{{ get_url(path="/atom.xml") }}">
<link rel="stylesheet" href="/style.css"> <link rel="stylesheet" href="{{ get_url(path="/style.css") }}">
<link rel="icon" href="favicon.svg"> <link rel="icon" href="{{ get_url(path="/favicon.svg") }}">
</head> </head>
<body> <body>
<header> <header>
@ -17,7 +17,7 @@
{% if config.extra.repository_url %} {% if config.extra.repository_url %}
<a href="{{ config.extra.repository_url }}">Source</a>, <a href="{{ config.extra.repository_url }}">Source</a>,
{% endif %} {% endif %}
<a href="{{ get_url(path="/atom.xml", trailing_slash=false) }}">RSS/Atom</a> <a href="{{ get_url(path="/atom.xml") }}">RSS/Atom</a>
</div> </div>
</div> </div>
</header> </header>