2016-05-13 23:55:00 +00:00
|
|
|
{% extends "base" %}
|
2015-09-09 07:02:35 +00:00
|
|
|
|
2016-05-13 23:55:00 +00:00
|
|
|
{% block content_top %}
|
|
|
|
<h1>{{ page.title }}</h1>
|
|
|
|
{% endblock %}
|
2015-09-09 07:02:35 +00:00
|
|
|
|
2016-05-13 23:55:00 +00:00
|
|
|
{% block content_wrapper %}
|
|
|
|
{% block content %}{% endblock %}
|
|
|
|
|
|
|
|
{% if page.event %}
|
|
|
|
<h2>Details</h2>
|
|
|
|
|
|
|
|
<ul>
|
|
|
|
<li>
|
|
|
|
Event:
|
|
|
|
{% if page.event.website %}<a href="{{ page.event.website }}">{%- endif -%}
|
|
|
|
{{ page.event.name }}
|
|
|
|
{%- if page.event.website -%}</a>{%- endif %}
|
|
|
|
</li>
|
|
|
|
<li>Date: {{ page.date|date(site.default_date_format) }}</li>
|
|
|
|
<li>Location: {{ page.event.location }}</li>
|
|
|
|
</ul>
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
{% if page.slides.embed %}
|
|
|
|
<div class="slides">
|
|
|
|
<h2 class="slides__title">Slides</h2>
|
|
|
|
|
|
|
|
<div class="slides__content">
|
|
|
|
{{ page.slides.embed|raw }}
|
2016-03-27 18:17:23 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2016-05-13 23:55:00 +00:00
|
|
|
{% endif %}
|
2015-09-10 00:45:06 +00:00
|
|
|
|
2016-05-13 23:55:00 +00:00
|
|
|
{% if page.video.embed %}
|
|
|
|
<h2>Video</h2>
|
2015-10-05 23:31:09 +00:00
|
|
|
|
2016-05-13 23:55:00 +00:00
|
|
|
<div class="embed-container">
|
|
|
|
{{ page.video.embed|raw }}
|
|
|
|
</div>
|
|
|
|
{% endif %}
|
2015-12-29 00:39:54 +00:00
|
|
|
{% endblock %}
|