diff --git a/pelicanconf.py b/pelicanconf.py index 2ff690d9f7962d4412fa4b977810da3cedad1e38..bee56d0b7ab90a0c8876d493ca750cc4ad77324e 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 c5d6d7ad52ef0c3f58df4cbc8b0f86a277e435b4..e71828e714ed3b2515687100659416ef4e8c9c38 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 %}