-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
25 lines (20 loc) · 832 Bytes
/
index.html
File metadata and controls
25 lines (20 loc) · 832 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{% extends "layout.html" %}
{% block content %}
<div id="content-outer" class="container index">
<section class="p-0 row no-gutters layout-standard">
<div class="col-12 col-lg-4 sidebar">
{% include "header_2.html" %}
</div>
<div class="col-12 col-lg-8 mainbar">
<div class="page-title dh-bg-light dh-border p-4 d-flex align-items-center">
<h1 class="text-white text-shadow">{{ __("Welcome") }}</h1>
</div>
<div class="p-4 dh-bg-light dh-border desc">
<i class="fa-solid fa-mustache"></i>
{{ index.description|raw }}
</div>
</div>
</section>
</div>
{% include "content_footer.html" %}
{% endblock %}