diff options
Diffstat (limited to '.themes/classic/source/_includes/article.html')
-rw-r--r-- | .themes/classic/source/_includes/article.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.themes/classic/source/_includes/article.html b/.themes/classic/source/_includes/article.html index 90257b8e..fee7a19c 100644 --- a/.themes/classic/source/_includes/article.html +++ b/.themes/classic/source/_includes/article.html @@ -1,7 +1,7 @@ {% unless page.no_header %} <header> {% if index %} - <h1 class="entry-title"><a href="{{ post.url }}">{{ post.title | titlecase }}</a></h1> + <h1 class="entry-title"><a href="{{ site.root }}{{ post.url }}">{{ post.title | titlecase }}</a></h1> {% else %} <h1 class="entry-title">{{ page.title | titlecase }}</h1> {% endif %} @@ -13,7 +13,7 @@ {% if index %} <div class="entry-content">{{ content | exerpt | smart_quotes }}</div> <footer> - <a rel="full-article" href="{{ post.url }}">Read on →</a> + <a rel="full-article" href="{{ site.root }}{{ post.url }}">Read on →</a> </footer> {% else %} <div class="entry-content">{{ content | smart_quotes }}</div> |