2022-04-25 00:22:51 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="{{ config.extra.language_code | default(value="en-US") }}">
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<meta http-equiv="x-ua-compatible" content="ie=edge">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
2022-06-09 03:50:30 +00:00
|
|
|
{% block styles %}
|
|
|
|
<link rel="stylesheet" href="{{ get_url(path="index.css") | safe }}">
|
|
|
|
{% endblock %}
|
2022-04-25 00:22:51 +00:00
|
|
|
|
2022-06-09 03:50:30 +00:00
|
|
|
{% block seo %}{% endblock %}
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
{% block body %}
|
|
|
|
{% include "components/sitebar.html" %}
|
|
|
|
{% block content %}
|
|
|
|
{% block header %}
|
|
|
|
{% endblock header %}
|
2022-04-25 00:22:51 +00:00
|
|
|
|
2022-06-09 03:50:30 +00:00
|
|
|
{% block main %}
|
|
|
|
{% endblock main %}
|
|
|
|
{% endblock content %}
|
|
|
|
{% block footer %}
|
|
|
|
{% endblock footer %}
|
|
|
|
{% endblock body %}
|
2022-04-25 00:22:51 +00:00
|
|
|
</body>
|
|
|
|
</html>
|