2019-07-04 01:21:58 +08:00
|
|
|
{% extends 'section.html' %}
|
2019-07-05 20:58:20 +08:00
|
|
|
|
|
|
|
{% block styles %}
|
|
|
|
<style>
|
2019-07-19 19:49:18 +08:00
|
|
|
h5 {
|
|
|
|
margin-bottom: 2rem!important;
|
2019-07-05 20:58:20 +08:00
|
|
|
}
|
|
|
|
</style>
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
|
2019-07-17 00:14:50 +08:00
|
|
|
{% block hero %}
|
|
|
|
|
|
|
|
<div class="container-fluid hero2 d-flex flex-column justify-content-center">
|
|
|
|
|
|
|
|
<div class="container">
|
|
|
|
|
2019-07-18 17:24:14 +08:00
|
|
|
<div class="row mt-4 mb-4">
|
2019-07-17 00:14:50 +08:00
|
|
|
|
|
|
|
<div class="col-12 text-center mt-n0 mt-lg-n5">
|
|
|
|
|
2019-07-18 17:24:14 +08:00
|
|
|
{% if page.extra and page.extra.logo %}
|
2019-07-19 18:45:30 +08:00
|
|
|
<img src="{{ get_url(path=page.extra.logo, cachebust=true) }}" alt="logo" {% if page.extra and page.extra.logo_size %}width="{{ page.extra.logo_size }}"{% endif %}>
|
2019-07-18 17:24:14 +08:00
|
|
|
{% endif %}
|
|
|
|
|
2019-07-17 00:14:50 +08:00
|
|
|
{% if page.extra and page.extra.title %}
|
2019-07-19 18:45:30 +08:00
|
|
|
<h1>{{ page.extra.title }}</h1>
|
2019-07-17 00:14:50 +08:00
|
|
|
{% else %}
|
2019-07-19 18:45:30 +08:00
|
|
|
<h1>{{ page.title }}</h1>
|
2019-07-17 00:14:50 +08:00
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
<img src="{{ get_url(path='images/ion@2x.png', cachebust=true) }}" width="100" align="ion">
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
|
|
|
|
{% block main %}
|
|
|
|
|
|
|
|
<main class="container">
|
|
|
|
|
2019-07-19 18:45:30 +08:00
|
|
|
<div class="row">
|
2019-07-17 00:14:50 +08:00
|
|
|
|
2019-07-19 18:45:30 +08:00
|
|
|
<div class="{% if page and page.extra and page.extra.layout_css %}{{ page.extra.layout_css }}{% else %}col-12{% endif %}">
|
2019-07-17 00:14:50 +08:00
|
|
|
|
|
|
|
{% block main_content %}
|
|
|
|
|
|
|
|
{% if page and page.content %}
|
|
|
|
{{ page.content | safe }}
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</main>
|
|
|
|
|
2019-07-19 18:45:30 +08:00
|
|
|
{% block outside %}{% endblock %}
|
|
|
|
|
2019-07-17 00:14:50 +08:00
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
|
2019-07-19 18:45:30 +08:00
|
|
|
{% block footer_contact %}{% endblock %}
|