diff options
author | jamesbeebop <jamesbeebop@gmail.com> | 2012-12-15 14:50:27 -0500 |
---|---|---|
committer | jamesbeebop <jamesbeebop@gmail.com> | 2012-12-15 14:50:27 -0500 |
commit | 602a2b85d4b17fefd9a90a90c454b1c28d5c2767 (patch) | |
tree | 3198e77308c2acd1a651386be976fff3d8591c9a /syte/templates/base.html | |
parent | e4c896d1f5c0b093537e8f162df75484573d1d2c (diff) | |
download | pelican-themes-602a2b85d4b17fefd9a90a90c454b1c28d5c2767.tar.gz |
Update syte/templates/base.html
Site-name href was hard-coded to "/", modified this to use SITEURL instead.
Diffstat (limited to 'syte/templates/base.html')
-rw-r--r-- | syte/templates/base.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/syte/templates/base.html b/syte/templates/base.html index fe42127..2ea24af 100644 --- a/syte/templates/base.html +++ b/syte/templates/base.html @@ -22,7 +22,7 @@ <div> <img src="{{ GRAVATAR }}" style="margin-left: 34px; margin-top: 30px;"> </div> - <h1><a href="/" id="home-link">{{ SITENAME }}</a></h1> + <h1><a href={{ SITEURL }} id="home-link">{{ SITENAME }}</a></h1> <h2>{{ ABOUT }}</h2> </hgroup> <nav> |