2019-09-30 15:38:41 +03:00
|
|
|
---
|
|
|
|
layout: compress
|
|
|
|
# Default layout
|
|
|
|
---
|
|
|
|
|
2023-05-06 02:22:29 +03:00
|
|
|
<!doctype html>
|
2020-02-14 23:05:31 +03:00
|
|
|
|
2022-02-09 17:32:50 +03:00
|
|
|
{% include assets-origin.html %}
|
|
|
|
|
2023-05-06 02:22:29 +03:00
|
|
|
{% include lang.html %}
|
|
|
|
|
2020-02-14 23:05:31 +03:00
|
|
|
{% capture prefer_mode %}
|
2020-12-06 20:14:40 +03:00
|
|
|
{% if site.theme_mode %}
|
2022-01-12 19:23:08 +03:00
|
|
|
data-mode="{{ site.theme_mode }}"
|
2020-12-06 20:14:40 +03:00
|
|
|
{% endif %}
|
2020-02-14 23:05:31 +03:00
|
|
|
{% endcapture %}
|
|
|
|
|
2022-10-18 22:47:48 +03:00
|
|
|
<!-- `site.alt_lang` can specify a language different from the UI -->
|
2023-05-06 02:22:29 +03:00
|
|
|
<html lang="{{ site.alt_lang | default: site.lang }}" {{ prefer_mode }}>
|
2019-09-30 15:38:41 +03:00
|
|
|
{% include head.html %}
|
|
|
|
|
2023-03-15 21:56:54 +03:00
|
|
|
<body data-topbar-visible="true">
|
2023-05-06 02:22:29 +03:00
|
|
|
{% include sidebar.html lang=lang %}
|
2020-04-16 19:26:58 +03:00
|
|
|
|
2023-05-06 02:22:29 +03:00
|
|
|
{% include topbar.html lang=lang %}
|
2020-04-16 19:26:58 +03:00
|
|
|
|
2022-06-08 11:15:38 +03:00
|
|
|
<div id="main-wrapper" class="d-flex justify-content-center">
|
2023-04-10 05:54:27 +03:00
|
|
|
<div id="main" class="container px-xxl-5">
|
2021-12-01 16:48:57 +03:00
|
|
|
{{ content }}
|
2019-09-30 15:38:41 +03:00
|
|
|
</div>
|
2020-07-22 16:41:49 +03:00
|
|
|
|
2023-05-06 02:22:29 +03:00
|
|
|
{% include search-results.html lang=lang %}
|
|
|
|
</div>
|
|
|
|
<!-- #main-wrapper -->
|
2020-04-16 19:26:58 +03:00
|
|
|
|
2023-05-06 02:22:29 +03:00
|
|
|
{% include footer.html lang=lang %}
|
2022-09-28 12:21:32 +03:00
|
|
|
|
2020-12-09 21:42:46 +03:00
|
|
|
{% if page.mermaid %}
|
|
|
|
{% include mermaid.html %}
|
|
|
|
{% endif %}
|
|
|
|
|
2019-09-30 15:38:41 +03:00
|
|
|
<div id="mask"></div>
|
|
|
|
|
2020-10-27 11:20:22 +03:00
|
|
|
<a id="back-to-top" href="#" aria-label="back-to-top" class="btn btn-lg btn-box-shadow" role="button">
|
2019-09-30 15:38:41 +03:00
|
|
|
<i class="fas fa-angle-up"></i>
|
|
|
|
</a>
|
2019-11-25 15:56:50 +03:00
|
|
|
|
2022-06-04 19:10:20 +03:00
|
|
|
{% if site.pwa.enabled %}
|
2023-05-06 02:22:29 +03:00
|
|
|
<div
|
|
|
|
id="notification"
|
|
|
|
class="toast"
|
|
|
|
role="alert"
|
|
|
|
aria-live="assertive"
|
|
|
|
aria-atomic="true"
|
2023-04-10 05:54:27 +03:00
|
|
|
data-bs-animation="true"
|
|
|
|
data-bs-autohide="false"
|
2023-05-06 02:22:29 +03:00
|
|
|
>
|
2022-06-04 19:10:20 +03:00
|
|
|
<div class="toast-header">
|
2023-04-10 05:54:27 +03:00
|
|
|
<button
|
|
|
|
type="button"
|
|
|
|
class="btn-close ms-auto"
|
|
|
|
data-bs-dismiss="toast"
|
|
|
|
aria-label="Close"
|
|
|
|
></button>
|
2022-06-04 19:10:20 +03:00
|
|
|
</div>
|
|
|
|
<div class="toast-body text-center pt-0">
|
2023-04-10 05:54:27 +03:00
|
|
|
<p class="px-2 mb-3">{{ site.data.locales[lang].notification.update_found }}</p>
|
2022-06-04 19:10:20 +03:00
|
|
|
<button type="button" class="btn btn-primary" aria-label="Update">
|
2023-05-06 02:22:29 +03:00
|
|
|
{{ site.data.locales[lang].notification.update }}
|
2022-06-04 19:10:20 +03:00
|
|
|
</button>
|
|
|
|
</div>
|
2022-06-04 18:54:06 +03:00
|
|
|
</div>
|
2022-06-04 19:10:20 +03:00
|
|
|
{% endif %}
|
2022-06-04 18:54:06 +03:00
|
|
|
|
2019-12-31 18:17:27 +03:00
|
|
|
{% include search-loader.html %}
|
2019-11-25 15:56:50 +03:00
|
|
|
|
2021-07-01 11:20:36 +03:00
|
|
|
{% include js-selector.html %}
|
2019-09-30 15:38:41 +03:00
|
|
|
</body>
|
2020-10-12 00:27:13 +03:00
|
|
|
</html>
|