summaryrefslogtreecommitdiff
path: root/templates/index.html
blob: 8a9042fdfdc966abcc705b54cfb799dbbbf9e19a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{% extends "base.html" %}

{% block content %}

	{{ section.content | safe }}

	<div id="gifs">
		{% for gif in config.extra.gifs %}
			{% set img = '<img src = "/imgs/gifs/' ~ gif.name ~'" alt="' ~ gif.alt ~ '" width=88 height=31 loading="lazy" decoding="async">' %}
			{% if gif.href %}
				<a href="{{ gif.href }}">{{ img | safe }}</a>
			{% else %}
				{{ img | safe }}
			{% endif %}
		{% endfor %}
	</div>
{% endblock content %}