You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
1.2 KiB
23 lines
1.2 KiB
{# SPDX-License-Identifier: EUPL-1.2 #}
|
|
|
|
{% from "includes/markdown_by_paragraph.twig" import markdown_by_paragraph %}
|
|
{% from "includes/actions.twig" import actions %}
|
|
<!-- About Section-->
|
|
<section class="page-section bg-primary text-white mb-0" id="about">
|
|
<div class="container">
|
|
<!-- About Section Heading-->
|
|
<h2 class="page-section-heading text-center text-uppercase text-white">{{ index.about.title ? index.about.title : "About" }}</h2>
|
|
<!-- Icon Divider-->
|
|
<div class="divider-custom divider-light">
|
|
<div class="divider-custom-line"></div>
|
|
<div class="divider-custom-icon"><i class="fas fa-{{ index.about.divider ? index.about.divider : 'star' }}"></i></div>
|
|
<div class="divider-custom-line"></div>
|
|
</div>
|
|
<!-- About Section Content-->
|
|
<div class="row">
|
|
{{ markdown_by_paragraph(index.about.content ? index.about.content : config.theme_config.demo.about.content, "about") }}
|
|
</div>
|
|
<!-- About Section Buttons-->
|
|
{{ actions(index.about.actions ? index.about.actions : not index.about.content ? config.theme_config.demo.about.actions, "about") }}
|
|
</div>
|
|
</section>
|
|
|