tousenscene34.fr/layouts/show.njk
2023-09-02 14:22:37 +02:00

44 lines
1.2 KiB
Text

{% extends "base.njk" %}
{% import "macros.njk" as macros %}
{% block header %}
{{ macros.build_title(title, author, company) }}
{% endblock %}
{% block main %}
<section class="container">
<div class="row hidden-md hidden-lg">
<div class="col-sm-12">
{{ macros.build_title(title, author, company) }}
</div>
</div>
<div class="row">
<div class="col-sm-12 col-md-8">
{{ contents | safe }}
</div>
<div class="col-sm-12 col-sm-first col-md-4 col-md-normal">
<img class="image full" src="/images/posters/{{ poster }}" alt="">
</div>
</div>
<div class="row hidden-sm page-show-links">
{% set offset = 8 %}
{% if previous %}
{% set offset = 4 %}
<div class="col-md-4">
<a class="button" href="/{{ previous.path }}">
<i>Spectacle précédent&nbsp;:</i><br/>
<span class="show-link-title">{{ previous.title }}</span>
</a>
</div>
{%endif %}
{% if next %}
<div class="col-md-4 col-md-offset-{{ offset }}">
<a class="button" href="/{{ next.path }}">
<i>Spectacle suivant&nbsp;:</i><br/>
<span class="show-link-title">{{ next.title }}</span>
</a>
</div>
{% endif %}
</div>
</section>
{% endblock %}