<!DOCTYPE html> <html lang=β€œ{{ page.lang | default: site.lang | default: ”enβ€œ }}”>

{%- include head.html -%}

<body>

{%- include header.html -%}
{%- include carousel.html page = page -%}

<div class="container">
    <div class="row">
        <div class="col-12">
            <h1 class="mb-5">{%- include fmi.html data = page.title datas = page.titles -%}</h1>
        </div>
    </div>
    <div class="row">
        <div class="col-lg-3 order-lg-2">
            {%- include server-nav.html page = page -%}
        </div>
        <div class="col-lg-9 order-lg-1">
            <div class="kramdown">
                {{ content }}
            </div>
        </div>
    </div>
</div>

{%- include footer.html -%}

</body>

</html>