diff options
author | Brandon Mathis <brandon@imathis.com> | 2011-07-21 23:50:32 -0400 |
---|---|---|
committer | Brandon Mathis <brandon@imathis.com> | 2011-07-22 00:00:18 -0400 |
commit | 39d56bc98834b09fc6939fd27bde8848efbb251d (patch) | |
tree | 404e6d12464884a763949215bb66081c74cf56c9 /.themes/classic/source/_layouts/page.html | |
parent | 44e1351fc71eaef7aefdc168dc9bc15b20d4bda4 (diff) | |
download | my_new_personal_website-39d56bc98834b09fc6939fd27bde8848efbb251d.tar.xz my_new_personal_website-39d56bc98834b09fc6939fd27bde8848efbb251d.zip |
Finally a nice solution for mapping relative urls
Diffstat (limited to '.themes/classic/source/_layouts/page.html')
-rw-r--r-- | .themes/classic/source/_layouts/page.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.themes/classic/source/_layouts/page.html b/.themes/classic/source/_layouts/page.html index 5749b4de..a2fc41ed 100644 --- a/.themes/classic/source/_layouts/page.html +++ b/.themes/classic/source/_layouts/page.html @@ -8,7 +8,7 @@ layout: default <h1 class="entry-title">{{ page.title | titlecase }}</h1> {% if page.date %}<p class="meta">{% include post/date.html %}</p>{% endif %} </header> - {{ content | full_urls: site.root | smart_quotes }} + {{ content }} {% unless page.footer == false %} <footer> {% if page.date %}<p class="meta">{% include post/date.html %}</p>{% endif %} |