{% from 'util.jinja2' import render_markdown %} {% if this.slide_layout == "title-slide" %}

{{ render_markdown(this.title) }}


{% if this.subtitle %}

{{ render_markdown(this.subtitle) }}

{% endif %} {% if this.author %}
{{ this.author }}
{% endif %}
{% elif this.slide_layout == "image_left" %}

{{ render_markdown(this.title) }}

{% if this.image %}
{% endif %}
{{ render_markdown(this.description) }}
{% elif this.slide_layout == "image_right" %}

{{ render_markdown(this.title) }}

{{ render_markdown(this.description) }}
{% if this.image %}
{% endif %}
{% else %}

{{ render_markdown(this.title) }}

{{ render_markdown(this.description) }} {% if this.image %} {% endif %}
{% endif %}