diff options
author | Justin Mayer <entroP@gmail.com> | 2016-12-10 15:26:42 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-12-10 15:26:42 -0800 |
commit | 0a62cde55ce3bc1c954e72f9cd666412e2ba57a3 (patch) | |
tree | 296b177512e4f2b9b784be184222025164d1389b /pelican-bootstrap3/templates | |
parent | 605c828e943caba0720e67666cc468e60322709f (diff) | |
parent | f7fc22f8d44ac5f4ecfa722f24ce1810a06b9554 (diff) | |
download | pelican-themes-0a62cde55ce3bc1c954e72f9cd666412e2ba57a3.tar.gz |
Merge pull request #453 from kevin-brotcke/master
Fix avatar source URL for subpages in pelican-bootstrap3
Diffstat (limited to 'pelican-bootstrap3/templates')
-rw-r--r-- | pelican-bootstrap3/templates/includes/aboutme.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pelican-bootstrap3/templates/includes/aboutme.html b/pelican-bootstrap3/templates/includes/aboutme.html index fefc6eb..3dc1c1c 100644 --- a/pelican-bootstrap3/templates/includes/aboutme.html +++ b/pelican-bootstrap3/templates/includes/aboutme.html @@ -1,7 +1,7 @@ <div id="aboutme"> {% if AVATAR %} <p> - <img width="100%" class="img-thumbnail" src="{{ AVATAR }}"/> + <img width="100%" class="img-thumbnail" src="{{ SITEURL }}/{{ AVATAR }}"/> </p> {% endif %} {% if ABOUT_ME %} |