sito-hackit-17/talks/_templates/talk.html

53 lines
1.5 KiB
HTML
Raw Normal View History

2017-05-03 01:43:18 +02:00
<div id="talk-{{id}}">
<h3 class="talk-title">{{title}}</h3>
<div class="talk-info">
2017-05-18 20:38:59 +02:00
<p>
{% if time is defined and day is defined %}
{# Vedi http://babel.pocoo.org/en/latest/dates.html #}
<span>
{{day|dateformat(format='EEEE', locale=lang)}}
-
{{time.time()|timeformat(format='short', locale=lang)}}
</span>
2017-05-03 01:43:18 +02:00
{% else %}
2017-05-18 20:38:59 +02:00
<i>L'orario non è ancora stato fissato</i>
{% endif %} {# date-time #}
2017-05-03 01:43:18 +02:00
{% if room is defined %}
2017-05-18 20:38:59 +02:00
<span>Stanza {{ room }}</span>
2017-05-03 01:43:18 +02:00
{% endif %}
2017-05-18 20:38:59 +02:00
</p>
{% if needs: %}
2017-05-17 13:21:35 +02:00
<div class="talk-needs">
<strong>Materiale necessario:</strong>
{{needs|join(", ")}}
</div>
{% endif %}
2017-05-03 01:43:18 +02:00
</div>
2017-05-17 13:21:35 +02:00
<div class="talk-description">{{text | markdown}}
{% if contacts: %}
<p class="contacts">A cura di {{contacts|join(', ')}}</p>
{% endif %}
</div>
2017-05-03 01:43:18 +02:00
{% if links is defined or resources is defined or mail is defined %}
<div class="talk-resources">
<h4>Link utili:</h4>
<ul>
{% if links is defined: %}
{% for link in links %}
2017-05-17 13:21:35 +02:00
<li>{{link|urlize}}</li>
2017-05-03 01:43:18 +02:00
{% endfor %}
{% endif %}
{% if resources is defined: %}
<li><a href="{{resources}}">Materiali</a></li>
{% endif %}
{% if mail is defined: %}
<li><a href="{{mail}}">Mail</a></li>
{% endif %}
</ul>
{% endif %}
</div>
</div>
{# vim: set ft=jinja: #}