comparison sat_templates/templates/default/event/invitation.html @ 164:e9f0a4215e46

multi-sites handling (moved templates to "templates" sub-directory) + noscript styles handling.
author Goffi <goffi@goffi.org>
date Mon, 10 Sep 2018 08:53:33 +0200
parents sat_templates/default/event/invitation.html@80cf52fbcc40
children
comparison
equal deleted inserted replaced
163:33f67228686a 164:e9f0a4215e46
1 {% extends 'base/base.html' %}
2
3 {% block body %}
4 <div class='box box--paper'>
5 <h1>{% trans %}Welcome {{name}}{% endtrans %}</h1>
6 <p class='instructions'>{% trans %}You have been invited to participate to an event{% endtrans %}</p>
7 {% if event.image is defined %}
8 <p><img id='event_picture' src="{{event.image}}"></p>
9 {% endif %}
10 </div>
11
12 {% include 'event/counter.html' %}
13
14 {% include 'event/attendance.html' %}
15
16 {% if items is defined %}
17 {% include 'blog/articles.html' %}
18 {% endif %}
19
20 {% endblock body %}