diff options
Diffstat (limited to 'pelican-bootstrap3/README.md')
-rw-r--r-- | pelican-bootstrap3/README.md | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/pelican-bootstrap3/README.md b/pelican-bootstrap3/README.md index d990004..bb83c64 100644 --- a/pelican-bootstrap3/README.md +++ b/pelican-bootstrap3/README.md @@ -389,14 +389,19 @@ The footer will display a copyright message using the AUTHOR variable and the ye ### Sidebar Images -Include a series of images in the sidebar, with an optional header: +Include a series of _optionally linked_ images in the sidebar, with an optional +header. +``` SIDEBAR_IMAGES_HEADER = 'My Images' -SIDEBAR_IMAGES = ["/path/to/image1.png", "/path/to/image2.png"] - -Originally developed for including certification marks in your sidebar. E.g., +SIDEBAR_IMAGES = ( + ('/path/to/image1.png', 'https://link1'), + ('/path/to/image2.png', 'https://link2'), + ('/path/to/image2.png', ''), +) +``` -http://dmark.github.io +Originally developed for including certification marks in your sidebar. ### Translations |