From 59a79170105fc9bb30055e0f07e3880d9d4cf2e6 Mon Sep 17 00:00:00 2001 From: Anton Sarukhanov <code@ant.sr> Date: Tue, 21 Apr 2020 17:17:25 -0400 Subject: [PATCH] WIP: Photo Gallery (contd) --- pelicanconf.py | 9 ++++++++- theme/templates/article.html | 10 ++++++++++ 2 files changed, 18 insertions(+), 1 deletion(-) diff --git a/pelicanconf.py b/pelicanconf.py index 2ff690d..bee56d0 100644 --- a/pelicanconf.py +++ b/pelicanconf.py @@ -9,7 +9,14 @@ SITENAME = 'Anton Sarukhanov' SITESUBTITLE = 'Full-Stack Developer' SITEURL = os.environ.get('SITEURL') -PLUGINS = ['advthumbnailer'] +PLUGIN_PATHS = ['plugins'] +PLUGINS = ['advthumbnailer', 'photos'] + +# Photos +PHOTO_LIBRARY = "photos" +PHOTO_GALLERY = (3840, 2160, 80) +PHOTO_ARTICLE = (3840, 2160, 80) +PHOTO_RESIZE_JOBS = 8 MARKDOWN = {'extensions': ['toc(permalink=🔗)', 'codehilite(linenums=False)', 'extra']} diff --git a/theme/templates/article.html b/theme/templates/article.html index c5d6d7a..e71828e 100644 --- a/theme/templates/article.html +++ b/theme/templates/article.html @@ -47,5 +47,15 @@ </header> <article> {{ article.content }} +{% if article.photo_gallery %} + <div class="gallery"> + {% for title, gallery in article.photo_gallery %} + <h1>{{ title }}</h1> + {% for name, photo, thumb, exif, caption in gallery %} + <a href="{{ SITEURL }}/{{ photo }}" title="{{ name }}" exif="{{ exif }}" caption="{{ caption }}"><img src="{{ SITEURL }}/{{ thumb }}"></a> + {% endfor %} + {% endfor %} + </div> +{% endif %} </article> {% endblock %} -- GitLab