You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

16 lines
323 B

{% extends 'base.html'%}
{% block content %}
<h1 class="site-title">Il était une fois dans l'est</h1>
<br/>
<br/>
<div class="row">
<div class="col-md-6 text-justify">
{{message|safe}}
</div>
<div class="col-md-6">
{% if poster %}
<img class="w-100" src="{{poster.url}}"/>
{% endif %}
</div>
</div>
{% endblock %}