92 lines
2.6 KiB
Twig
Executable File
92 lines
2.6 KiB
Twig
Executable File
{% extends 'partials/base.html.twig' %}
|
|
|
|
{% block content %}
|
|
|
|
{% include 'partials/article_head.html.twig' with {'top':page } %}
|
|
|
|
|
|
<div class="columns medium-2 medium-offset-1 small-10 small-offset-1 sidebar">
|
|
{% if page.header.programme is defined %}
|
|
<a href="{{ page.header.programme }}">
|
|
<div class="button hollow upper">Programme</div>
|
|
</a><br>
|
|
{% endif %}
|
|
{% if page.header.inscript is defined %}
|
|
<a href="{{ page.header.inscript }}">
|
|
<div class="button hollow upper">S'inscrire</div>
|
|
</a><br>
|
|
{% endif %}
|
|
{% if page.header.video is defined %}
|
|
<a href="{{ page.header.inscript }}">
|
|
<div class="button hollow upper">Voir le replay</div>
|
|
</a>
|
|
{% endif %}
|
|
<div class="speakers">
|
|
{% if page.header.speaker is defined %}
|
|
|
|
<h4 class="pinky"> Intervenants</h4>
|
|
<ul>
|
|
{% for speaker in page.header.speaker %}
|
|
<li><b>{{ speaker.name}}</b></br>
|
|
{{ speaker.fct }}</li>
|
|
{% endfor %}
|
|
</ul>
|
|
|
|
|
|
{% elseif page.header.author is defined %}
|
|
<h4 class="pinky">Par</h4>
|
|
<ul>
|
|
<li><b>{{ page.header.author }}</b></li>
|
|
</ul>
|
|
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
<div class="columns medium-6 medium-offset-1 small-10 small-offset-1 content">
|
|
<p>
|
|
<b class="upper">
|
|
{% if page.header.dlp != "" %}
|
|
<span class="date" >{{ page.header.dlp }}</span>
|
|
{% else %}
|
|
<span class="date" >{# {{ post.header.date }} #}
|
|
{{page.header.date|date('d')}} {{'GRAV.MONTHS_OF_THE_YEAR'|ta(page.header.date|date('n') - 1)}} {{page.header.date|date('Y')}}
|
|
</span>
|
|
{% endif %}
|
|
</b>
|
|
</p>
|
|
{{ page.content }}
|
|
|
|
</div>
|
|
<div class="columns medium-1 small-10 small-offset-1 media">
|
|
<div class="logo">
|
|
<a href="mailto:mail?subject={{ page.title }}&body={{ uri.url }}">
|
|
<img src="{{ url('theme://images/m.svg') }}" alt="">
|
|
</a>
|
|
</div>
|
|
<div class="logo">
|
|
<a href="https://twitter.com/intent/tweet?url={{ uri.url }}&text={{ page.title }}" target="_blank">
|
|
<img src="{{ url('theme://images/tw.svg') }}" alt="">
|
|
</a>
|
|
</div>
|
|
<div class="logo">
|
|
<a href="https://www.facebook.com/sharer/sharer.php?u={{uri.url }}" target="_blank">
|
|
<img src="{{ url('theme://images/fb.svg') }}" alt="">
|
|
</a>
|
|
</div>
|
|
<div class="logo">
|
|
<a href="https://www.linkedin.com/shareArticle?mini=true&url={{ uri.url }}&title={{ page.title }}" target="_blank">
|
|
<img src="{{ url('theme://images/ln.svg') }}" alt="">
|
|
</a>
|
|
</div>
|
|
</div>
|
|
<div class="columns small-1 small-offset-10 ">
|
|
<a href="">
|
|
<div class="arrow">
|
|
<img src="{{ url('theme://images/fleche.svg') }}" alt="">
|
|
</div>
|
|
</a>
|
|
</div>
|
|
|
|
|
|
{% endblock %}
|