{% extends "enap_designsystem/base.html" %} {% load static wagtailcore_tags wagtailimages_tags %} {% block title %}{{ page.title }}{% endblock %} {% block extra_css %} {% endblock %} {% block content %}
{% if page.enap_image %} {% for block in page.enap_image %} {% if block.block_type == 'imagem' %} {% image block.value.imagem original as enap_img %} {{ enap_img.alt }} {% endif %} {% endfor %} {% endif %}

{{ page.enap_title }}

{{ page.enap_description|richtext }}

{{ page.directions_title }}

{% if page.metro_title or page.metro_text %}

{{ page.metro_title }}

{{ page.metro_text }}

{% endif %} {% if page.taxi_title or page.taxi_text %}

{{ page.taxi_title }}

{{ page.taxi_text }}

{% endif %} {% if page.bus_title or page.bus_text %}

{{ page.bus_title }}

{{ page.bus_text|linebreaks }}

{% endif %} {% if page.special_title or page.special_text %}

{{ page.special_title }}

{{ page.special_text }}

{% endif %}
{% if page.map_image %} {% for block in page.map_image %} {% if block.block_type == 'imagem' %} {% image block.value.imagem width-500 as map_img %}
{{ block.value.alt_text|default:map_img.alt }} {% if block.value.legenda %}
{{ block.value.legenda }}
{% endif %}
{% endif %} {% endfor %} {% endif %}
{% endblock %}