Fix paths of static resources
This commit is contained in:
parent
29402e477c
commit
4557625816
@ -5,9 +5,9 @@
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<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="stylesheet" href="/style.css">
|
||||
<link rel="icon" href="favicon.svg">
|
||||
<link rel="alternate" type="application/atom+xml" title="Atom" href="{{ get_url(path="/atom.xml") }}">
|
||||
<link rel="stylesheet" href="{{ get_url(path="/style.css") }}">
|
||||
<link rel="icon" href="{{ get_url(path="/favicon.svg") }}">
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
@ -17,7 +17,7 @@
|
||||
{% if config.extra.repository_url %}
|
||||
<a href="{{ config.extra.repository_url }}">Source</a>,
|
||||
{% 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>
|
||||
</header>
|
||||
|
Loading…
Reference in New Issue
Block a user