diff options
Diffstat (limited to 'templates/index.html')
-rw-r--r-- | templates/index.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/index.html b/templates/index.html index 222ea74..b7dd98b 100644 --- a/templates/index.html +++ b/templates/index.html @@ -21,7 +21,7 @@ {% block header %} <header> - <a href="/"><img id="logo" src="{{ config.extra.logo }}" /></a> + <a href="/"><img id="logo" src="{{ config.extra.logo | safe }}" /></a> <h1>{{ config.extra.title }}</h1> </header> {% endblock header %} @@ -38,7 +38,7 @@ {%- for post in posts %} <article class="list-item"> - <a href="{{ post.permalink | safe }}" class="list-item-link">{{ post.title }}</a> + <a href="{{ post.path | safe }}" class="list-item-link">{{ post.title }}</a> <span class="list-item-date">{{ post.date | date(format="%B %e, %Y") }}</span> </article> {%- endfor %} |