comparison sat_templates/templates/bulma/invitation/welcome.html @ 240:cb08d92f181f

bulma (invitation/welcome): design for the welcome page
author Goffi <goffi@goffi.org>
date Fri, 19 Jun 2020 17:57:13 +0200
parents
children
comparison
equal deleted inserted replaced
239:61f3efd69fc3 240:cb08d92f181f
1 {% extends 'base/base.html' %}
2 {% import 'components/block.html' as block with context %}
3
4 {% block body %}
5 {{ icon_defs('file-image', 'exchange', 'calendar') }}
6 <section class="section">
7 <h1 class='title is-4'>{% trans %}Welcome {{name}}{% endtrans %}</h1>
8 <div class="message is-info">
9 <div class="message-body">
10 {% trans %}You have been invited to participate with the community, please choose an action below{% endtrans %}
11 </div>
12 </div>
13
14 {% if interests_map.event %}
15 {{ block.separator(_("events")) }}
16 {{block.interests_grid(interests_map.event, 'calendar')}}
17 {% endif %}
18 {% if interests_map.photos %}
19 {{ block.separator(_("photo albums")) }}
20 {{block.interests_grid(interests_map.photos, 'file-image')}}
21 {% endif %}
22 {% if interests_map.files %}
23 {{ block.separator(_("file sharing")) }}
24 {{block.interests_grid(interests_map.fis, 'exchange')}}
25 {% endif %}
26
27 {% if include_url is defined %}
28 <iframe id='include_main' src='{{include_url}}'></iframe>
29 {% endif %}
30 </section>
31
32 {% endblock body %}