Skip to content
Snippets Groups Projects
Commit 59a79170 authored by Anton Sarukhanov's avatar Anton Sarukhanov
Browse files

WIP: Photo Gallery (contd)

parent ad2e77eb
No related branches found
No related tags found
No related merge requests found
Pipeline #231 passed with stages
in 1 minute and 22 seconds
......@@ -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']}
......
......@@ -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 %}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment