57 lines
1.5 KiB
Text
57 lines
1.5 KiB
Text
{% extends "base.njk" %}
|
|
{% import "macros.njk" as macros %}
|
|
{% set site_section = "troupe" %}
|
|
{% 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 %}
|
|
|
|
{% macro list_shows(show, config) %}
|
|
<article>
|
|
{{ macros.build_show_header(show, { 'display_date': show.creation }) }}
|
|
</article>
|
|
{% endmacro %}
|
|
|
|
{% block header %}
|
|
<h1>La troupe</h1>
|
|
{% endblock %}
|
|
|
|
{% block main %}
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="col-sm-12 col-md-8">
|
|
<div>
|
|
<h2>Spectacles en cours</h2>
|
|
</div>
|
|
<div>
|
|
{{ macros.iterate_shows(collections, "troupe_shows", {
|
|
'no_display_date': true, 'ongoing': true, 'render': macros.expose_show })
|
|
}}
|
|
</div>
|
|
</div>
|
|
|
|
<div id="sidebar" class="4u">
|
|
<section>
|
|
<div>
|
|
<h2>Agenda</h2>
|
|
</div>
|
|
<div class="tes-agenda tes-agenda-side" data-format="side" data-section="troupe"></div>
|
|
</section>
|
|
|
|
<section>
|
|
<div>
|
|
<h2>Toutes les pièces</h2>
|
|
</div>
|
|
{{ macros.iterate_shows(collections, "troupe_creations", {
|
|
'render': list_shows })
|
|
}}
|
|
</section>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|