diff options
-rw-r--r-- | pelicanconf.py | 4 | ||||
-rw-r--r-- | sleepmap-theme/templates/base.html | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/pelicanconf.py b/pelicanconf.py index 1d8c2a6..cd4ded2 100644 --- a/pelicanconf.py +++ b/pelicanconf.py @@ -3,8 +3,8 @@ from __future__ import unicode_literals ARTICLE_PATHS = ['blog'] -ARTICLE_SAVE_AS = '{date:%Y}/{slug}.html' -ARTICLE_URL = '{date:%Y}/{slug}.html' +ARTICLE_SAVE_AS = '{date:%Y}/{slug}/index.html' +ARTICLE_URL = '{date:%Y}/{slug}/' AUTHOR = 'David Runge' AUTHOR_FEED_ATOM = None AUTHOR_FEED_RSS = None diff --git a/sleepmap-theme/templates/base.html b/sleepmap-theme/templates/base.html index 85ed884..e88b271 100644 --- a/sleepmap-theme/templates/base.html +++ b/sleepmap-theme/templates/base.html @@ -14,7 +14,7 @@ <body id="index" class="home"> <header id="banner"> <h1> - <a href="{{ SITEURL }}/index.html">{{ SITENAME }} </a> + <a href="{{ SITEURL }}">{{ SITENAME }} </a> {% if SITESUBTITLE %} <strong>{{ SITESUBTITLE }}</strong>{% endif %} </h1> </header> <!--/#banner--> |