site_tps/templates/home.html

17 lines
334 B
HTML
Raw Normal View History

2018-01-20 22:14:11 +00:00
{% extends 'base.html'%}
{% block content %}
2018-03-10 14:11:10 +00:00
<h1 class="site-title text-center">IL ETAIT UNE FOIS DANS L'EST</h1>
2018-03-01 12:58:06 +00:00
<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 %}
2018-03-01 12:58:06 +00:00
</div>
</div>
2018-01-20 22:14:11 +00:00
{% endblock %}