aboutsummaryrefslogtreecommitdiff
path: root/.themes/classic/source/_includes/article.html
diff options
context:
space:
mode:
Diffstat (limited to '.themes/classic/source/_includes/article.html')
-rw-r--r--.themes/classic/source/_includes/article.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/.themes/classic/source/_includes/article.html b/.themes/classic/source/_includes/article.html
index a25691f8..a658e340 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="{{ site.root }}{{ post.url }}">{{ post.title | titlecase }}</a></h1>
+ <h1 class="entry-title"><a href="{{ root_url }}{{ post.url }}">{{ post.title | titlecase }}</a></h1>
{% else %}
<h1 class="entry-title">{{ page.title | titlecase }}</h1>
{% endif %}
@@ -11,10 +11,10 @@
</header>
{% endunless %}
{% if index %}
- <div class="entry-content">{{ content | full_urls: site.root | exerpt | smart_quotes }}</div>
+ <div class="entry-content">{{ content | exerpt }}</div>
<footer>
- <a rel="full-article" href="{{ site.root }}{{ post.url }}">Read on &rarr;</a>
+ <a rel="full-article" href="{{ root_url }}{{ post.url }}">Read on &rarr;</a>
</footer>
{% else %}
-<div class="entry-content">{{ content | full_urls: site.root | smart_quotes }}</div>
+<div class="entry-content">{{ content }}</div>
{% endif %}