29 lines
553 B
HTML
29 lines
553 B
HTML
{% extends '_base.html' %}
|
|
|
|
|
|
{% block hero %}
|
|
|
|
<div class="container-fluid hero2 d-flex flex-column justify-content-center">
|
|
|
|
<div class="container">
|
|
|
|
<div class="row mt-4 mb-4">
|
|
|
|
<div class="col-12 text-center mb-lg-5">
|
|
|
|
{% if section.extra.title %}
|
|
<h1>{{ section.extra.title | markdown | safe }}</h1>
|
|
{% endif %}
|
|
|
|
<img src="{{ get_url(path='images/ion@2x.png', cachebust=true) }}" width="100" align="ion">
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% endblock %}
|