{{!
    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_blogs
}}

{{# blog }}

<section id="edwiser-blogs" 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">{{#str}}blog, blog{{/str}}</h4>
        </div>
        <div class="blogs">
            {{# blogs }}
            <div class="recent-item blog-item h-100">
                <div class="card card-transparent h-100">
                    <div class="card-body">
                        <div class="card-content">
                        <h4 class="card-title mt-2"><a href="{{ link }}" class="font-weight-400 font-size-18">{{ subject }}</a></h4>
                        <p class="card-text">
                            <small>By {{ firstname }} {{ lastname }}, on {{ createdat }}</small>
                        </p>
                        <p class="card-text">{{ summary }}</p>
                        </div>
                    </div>
                </div>
            </div>
            {{/ blogs }}
        </div>
    </div>
</section>
{{/ blog }}
