update
This commit is contained in:
parent
0c881c919b
commit
4a97c240eb
16 changed files with 217 additions and 59 deletions
|
|
@ -35,7 +35,7 @@ Github: https://github.com/lefuturiste
|
|||
class="header-sub-title">
|
||||
Espace Condorcet Centre Social
|
||||
</a>
|
||||
<h1 class="header-title">Forum des associations</h1>
|
||||
<h1 class="header-title">Forum des associations 2020</h1>
|
||||
<div class="header-description">
|
||||
Cette année nous vous invitons à découvrir le forum virtuel des associations.
|
||||
</div>
|
||||
|
|
|
|||
7
views/emails/test.twig
Normal file
7
views/emails/test.twig
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
<p>
|
||||
This is a test
|
||||
</p>
|
||||
|
||||
<p>
|
||||
Date: {{ date }}
|
||||
</p>
|
||||
|
|
@ -73,8 +73,17 @@
|
|||
<div class="section-divider"></div>
|
||||
</div>
|
||||
<div class="description">
|
||||
{% if data.descriptionLong is not null and data.descriptionLong|length > 7 %}
|
||||
{% if data.descriptionLong is not null and data.descriptionLong|length > 7 and not data.cutDescription %}
|
||||
{{ data.descriptionLong|raw }}
|
||||
{% elseif data.cutDescription %}
|
||||
<div class="description-cutted">
|
||||
{{ data.descriptionLong }}
|
||||
</div>
|
||||
<div class="description-actions-container closed">
|
||||
<button class="btn description-btn">
|
||||
Ouvrir la description
|
||||
</button>
|
||||
</div>
|
||||
{% else %}
|
||||
{{ data.descriptionShort }}
|
||||
{% endif %}
|
||||
|
|
@ -88,8 +97,9 @@
|
|||
<h2>Crénaux</h2>
|
||||
<div class="section-divider"></div>
|
||||
</div>
|
||||
<div class="schedule">
|
||||
{% for item in data.schedule %}
|
||||
<div class="schedule org-container">
|
||||
{% for item in data.schedule %}
|
||||
{% if item.when|length > 0 %}
|
||||
<div class="schedule-category">
|
||||
<div class="schedule-category-header" title="Déroulez">
|
||||
<div class="schedule-category-name">
|
||||
|
|
@ -120,6 +130,7 @@
|
|||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
</div>
|
||||
</section>
|
||||
|
|
@ -155,7 +166,7 @@
|
|||
<h2>Contact</h2>
|
||||
<div class="section-divider"></div>
|
||||
</div>
|
||||
<div class="contact">
|
||||
<div class="org-container contact">
|
||||
{% if data.contacts.person|length > 0 %}
|
||||
<div class="contact-item person">
|
||||
<div class="contact-icon">
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue