41 lines
1.3 KiB
Django/Jinja
41 lines
1.3 KiB
Django/Jinja
{% from "macros.html.j2" import make_header %}{% from "macros.html.j2" import make_social_links %}<!DOCTYPE html>
|
|
<html lang="en">
|
|
{{ make_header(config, alttitle="Explore " + config.title, css_bundle=css_bundle, js_bundle=js_bundle) }}
|
|
<body>
|
|
<div id="background-image"><div class="overlay"></div></div>
|
|
|
|
<div id="preloader" class="nojs"><div class="spinner"><div></div></div></div>
|
|
|
|
<div id="toggle-description" class="nojs active"><i class="fas fa-paragraph"></i></div>
|
|
|
|
<div id="content">
|
|
<div id="header">
|
|
<h1>
|
|
Explore {{ config.title }}
|
|
|
|
<span class="float-right">
|
|
{{ make_social_links(config) }}
|
|
</span>
|
|
</h1>
|
|
</div>
|
|
|
|
<ul>
|
|
{% for post in posts %}
|
|
<li class="article primary-text{{ ' hidden' if loop.index > 10 else '' }}">
|
|
<div class="article-banner" style="background-image: url('{{ post.banner_url(config) }}');">
|
|
<a href="{{ post.slug }}/" class="article-content">
|
|
<h2>{{ post.title }}</h2>
|
|
<p>
|
|
<i class="fas fa-map-marker-alt"></i>{{ post.location.title }}
|
|
<i class="far fa-calendar-alt"></i>{{ post.date }}
|
|
</p>
|
|
</a>
|
|
</div>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
</div>
|
|
</body>
|
|
|
|
</html>
|