{{!
    This file is part of Moodle - http://moodle.org/

    Moodle is free software: you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation, either version 3 of the License, or
    (at your option) any later version.

    Moodle is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
    GNU General Public License for more details.

    Edwiser RemUI
    @package theme_remui
    @copyright (c) 2023 WisdmLabs (https://wisdmlabs.com/)
    @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later

}}
{{!
    @template theme_remui/frontpage_legacy_aboutus
}}

{{#aboutus}}
<section id="edwiser-aboutus" class="bg-transparent" role="main">
    <div class="container r-py-16 {{aboutus_layout}}">
        <div class="heading d-flex flex-column align-items-center p-py-14">
            <h4 class="title h-semibold-3">{{{ aboutus_heading }}}</h4>
           {{# aboutus_desc }}<span class="desc para-regular-2">{{{ aboutus_desc }}}</span> {{/ aboutus_desc }}
        </div>
        <div class="cards-deck  p-py-14">
            {{# aboutus_spots }}
            <div class="feature-box {{^ image }} bg-white {{/ image }}" {{# image }} style="background: url({{ image }}) center/cover;" {{/ image }}>
                <i class="feature-box__icon fa fa-{{ icon }}"></i>
                {{# heading }}
                <h3 class="feature-box__heading">{{{ heading }}}</h3>
                {{/ heading }}

                {{# description }}
                <p class="feature-box__text">
                    {{ description }}
                </p>
                {{/ description }}

                {{# button }}
                <a class="feature-box__link d-flex align-item-center flex-gap-1" href="{{ link }}">{{ button }} <span class="edw-icon edw-icon-Right-Arrow large"></span></a>
                {{/ button }}
            </div>
            {{/ aboutus_spots }}
        </div>
    </div>
</section>
{{/aboutus}}
