16 lines
476 B
Twig
16 lines
476 B
Twig
{% extends "default.html.twig" %}
|
|
|
|
{% block body_classes 'page--talks page--talks__talk' %}
|
|
|
|
{% block content_wrapper %}
|
|
<main class="col-md-10">
|
|
<h1>{{ page.title }}</h1>
|
|
|
|
{{ page.blocks.content|raw }}
|
|
|
|
{% if page.speakerdeck_id %}
|
|
<script async class="speakerdeck-embed" data-id="{{ page.speakerdeck_id }}" data-ratio="1.29456384323641" src="//speakerdeck.com/assets/embed.js"></script>
|
|
{% endif %}
|
|
</main>
|
|
{% endblock %}
|