mirror of https://github.com/saimn/sigal.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
1.1 KiB
31 lines
1.1 KiB
{% extends "base.html" %} |
|
|
|
{% block extra_head %} |
|
{# These are used on album pages - prefetch now #} |
|
<link rel="prefetch" href="static/jquery-3.3.1.min.js" /> |
|
<link rel="prefetch" href="static/galleria.min.js" /> |
|
<link rel="prefetch" href="static/themes/classic/galleria.classic.min.js" /> |
|
<link rel="prefetch" href="static/plugins/history/galleria.history.min.js" /> |
|
{% if settings.show_map %} |
|
<link rel="prefetch" href="static/leaflet/leaflet.css" /> |
|
<link rel="prefetch" href="static/leaflet/leaflet.js" /> |
|
<link rel="prefetch" href="static/leaflet/leaflet-providers.js" /> |
|
{% endif %} |
|
{% endblock %} |
|
|
|
{% block content %} |
|
<div id="albums"> |
|
<ul> |
|
{% for alb in album.albums %} |
|
<li><a href="{{ alb.url }}"> |
|
<img src="{{ alb.thumbnail }}" class="album_thumb" alt="{{ alb.name }}" title="{{ alb.name }}" /></a> |
|
<span class="album_title">{{ alb.title }}</span> |
|
</li> |
|
{% endfor %} |
|
</ul> |
|
</div> |
|
{% include 'album_items.html' %} |
|
|
|
|
|
|
|
{% endblock %}
|
|
|