aboutsummaryrefslogtreecommitdiffstats
path: root/pelican-bootstrap3/templates/includes/sidebar-images.html
diff options
context:
space:
mode:
authorJustin Mayer <entroP@gmail.com>2016-04-29 09:23:44 -0700
committerJustin Mayer <entroP@gmail.com>2016-04-29 09:23:44 -0700
commit5c5fe8dcaf0ec34aac37cf18e5b55ea21f9d8f77 (patch)
tree927539b1d77514d31a1dde5268a9bd048b019762 /pelican-bootstrap3/templates/includes/sidebar-images.html
parent2cd39ad5c0c03818900611ddee699b2a6acc2453 (diff)
parent22e33297f8484d0c531120db0dcc3b76f6c2a1b8 (diff)
downloadpelican-themes-5c5fe8dcaf0ec34aac37cf18e5b55ea21f9d8f77.zip
pelican-themes-5c5fe8dcaf0ec34aac37cf18e5b55ea21f9d8f77.tar.gz
pelican-themes-5c5fe8dcaf0ec34aac37cf18e5b55ea21f9d8f77.tar.bz2
Merge pull request #383 from DandyDev/update-pelican-bootstrap3
Update pelican-bootstrap3 to newest version; donate to Pelican community
Diffstat (limited to 'pelican-bootstrap3/templates/includes/sidebar-images.html')
-rw-r--r--pelican-bootstrap3/templates/includes/sidebar-images.html9
1 files changed, 9 insertions, 0 deletions
diff --git a/pelican-bootstrap3/templates/includes/sidebar-images.html b/pelican-bootstrap3/templates/includes/sidebar-images.html
new file mode 100644
index 0000000..59282ab
--- /dev/null
+++ b/pelican-bootstrap3/templates/includes/sidebar-images.html
@@ -0,0 +1,9 @@
+{% if SIDEBAR_IMAGES %}
+ <li class="list-group-item">
+ <ul class="list-group" id="links">
+ {% for image in SIDEBAR_IMAGES %}
+ <img width="100%" class="img-thumbnail" src="{{ image }}"/>
+ {% endfor %}
+ </ul>
+ </li>
+{% endif %}