Simple theme article permalink missing SITEURL

This change modifies the simple template so that the SITEURL
prefix is added to the article permalink found within the article
page itself.
This commit is contained in:
Chris Elston 2013-03-21 11:28:06 +00:00
commit 173e17d992

View file

@ -3,7 +3,7 @@
<section id="content" class="body">
<header>
<h2 class="entry-title">
<a href="{{ article.url }}" rel="bookmark"
<a href="{{ SITEURL }}/{{ article.url }}" rel="bookmark"
title="Permalink to {{ article.title|striptags }}">{{ article.title }}</a></h2>
{% import 'translations.html' as translations with context %}
{{ translations.translations_for(article) }}