Updated talks

This commit is contained in:
Oliver Davies 2015-12-30 23:53:01 +00:00
parent 3b87527d90
commit b6609a5f60
13 changed files with 75 additions and 21 deletions

View file

@ -4,16 +4,25 @@
<main class="col-md-9">
<h1>{{ page.title }}</h1>
<p>
At {{ page.event.name }} -
{% spaceless %}{% if page.fuzzy_date %}
{{ page.date|date(site.fuzzy_date_format) }}
{% else %}
{{ page.date|date(site.default_date_format) }}
{% endif %}{% endspaceless %}.
</p>
{% if page.blocks.abstract %}
<h2>Abstract</h2>
{{ page.blocks.content|raw }}
{{ page.blocks.abstract|raw }}
{% endif %}
<h2>Details</h2>
<ul>
<li>Event:
{% if page.event.website %}
<a href="{{ page.event.website }}">{{ page.event.name }}</a>
{% else %}
{{ page.event.name }}
{% endif %}
</li>
<li>Date: {{ page.date|date(site.default_date_format) }}</li>
<li>Location: {{ page.event.location }}</li>
</ul>
{% if page.blocks.slides %}
<h2>Slides</h2>
@ -26,5 +35,11 @@
{{ page.blocks.video|raw }}
{% endif %}
{% if page.blocks.feedback %}
<h2>Feedback</h2>
{{ page.blocks.feedback|raw }}
{% endif %}
</main>
{% endblock %}