48 lines
1.3 KiB
Text
48 lines
1.3 KiB
Text
{% extends "base.njk" %}
|
|
{% import "macros.njk" as macros %}
|
|
{% set site_section = "combaillaux" %}
|
|
{% set date = moment().subtract(1, 'year') %}
|
|
|
|
{% block scripts %}
|
|
<link rel="stylesheet" href="/css/agenda.css" />
|
|
<script src="/js/moment-with-locales.min.js"></script>
|
|
<script src="/js/jquery.min.js"></script>
|
|
<script src="/js/clndr.min.js"></script>
|
|
<script src="/js/agenda.js"></script>
|
|
{% endblock %}
|
|
|
|
{% block header %}
|
|
<h1>Spectacles à Combaillaux</h1>
|
|
{% endblock %}
|
|
|
|
{% block main %}
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="col-sm-12 col-md-8">
|
|
<section>
|
|
{{ macros.iterate_shows(collections, "combaillaux", {
|
|
'after': date, 'render': macros.expose_show })
|
|
}}
|
|
</section>
|
|
</div>
|
|
|
|
<div id="sidebar" class="col-sm-12 col-md-4">
|
|
<section>
|
|
<div>
|
|
<h2>Agenda</h2>
|
|
</div>
|
|
<div class="tes-agenda tes-agenda-side" data-format="side" data-section="combaillaux"></div>
|
|
</section>
|
|
|
|
<section>
|
|
<div>
|
|
<h2>Archives</h2>
|
|
</div>
|
|
{{ macros.iterate_shows(collections, "combaillaux", {
|
|
'before': date, 'render': macros.expose_archive })
|
|
}}
|
|
</section>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|