2019-09-30 15:38:41 +03:00
|
|
|
---
|
|
|
|
layout: compress
|
|
|
|
---
|
|
|
|
|
2023-05-06 02:22:29 +03:00
|
|
|
<!doctype html>
|
2020-02-14 23:05:31 +03:00
|
|
|
|
2023-03-31 01:41:51 +03:00
|
|
|
{% include origin-type.html %}
|
2022-02-09 17:32:50 +03:00
|
|
|
|
2023-05-06 02:22:29 +03:00
|
|
|
{% include lang.html %}
|
|
|
|
|
2023-09-29 23:46:40 +03:00
|
|
|
{% if site.theme_mode %}
|
|
|
|
{% capture prefer_mode %}data-mode="{{ site.theme_mode }}"{% endcapture %}
|
2023-09-08 17:48:37 +03:00
|
|
|
{% endif %}
|
|
|
|
|
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-05-16 20:59:34 +03:00
|
|
|
<body>
|
2023-05-06 02:22:29 +03:00
|
|
|
{% include sidebar.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-09-18 23:44:35 +03:00
|
|
|
<div class="container d-flex flex-column px-xxl-5">
|
2023-05-16 20:59:34 +03:00
|
|
|
{% include topbar.html lang=lang %}
|
2023-09-08 17:48:37 +03:00
|
|
|
|
2023-09-18 23:44:35 +03:00
|
|
|
<div class="row flex-grow-1">
|
2023-09-29 23:46:40 +03:00
|
|
|
<main aria-label="Main Content" class="col-12 col-lg-11 col-xl-9 px-md-4">
|
|
|
|
{% if layout.refactor or layout.layout == 'default' %}
|
|
|
|
{% include refactor-content.html content=content lang=lang %}
|
|
|
|
{% else %}
|
|
|
|
{{ content }}
|
|
|
|
{% endif %}
|
2023-09-08 17:48:37 +03:00
|
|
|
</main>
|
|
|
|
|
|
|
|
<!-- panel -->
|
2023-09-29 00:35:50 +03:00
|
|
|
<aside aria-label="Panel" id="panel-wrapper" class="col-xl-3 ps-2 mb-5 text-muted">
|
2023-09-08 17:48:37 +03:00
|
|
|
<div class="access">
|
|
|
|
{% include_cached update-list.html lang=lang %}
|
|
|
|
{% include_cached trending-tags.html lang=lang %}
|
|
|
|
</div>
|
|
|
|
|
|
|
|
{% for _include in layout.panel_includes %}
|
|
|
|
{% assign _include_path = _include | append: '.html' %}
|
|
|
|
{% include {{ _include_path }} lang=lang %}
|
|
|
|
{% endfor %}
|
|
|
|
</aside>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="row">
|
|
|
|
<!-- tail -->
|
|
|
|
<div id="tail-wrapper" class="col-12 col-lg-11 col-xl-9 px-md-4">
|
2023-09-29 23:46:40 +03:00
|
|
|
{% for _include in layout.tail_includes %}
|
|
|
|
{% assign _include_path = _include | append: '.html' %}
|
|
|
|
{% include {{ _include_path }} lang=lang %}
|
|
|
|
{% endfor %}
|
2023-09-08 17:48:37 +03:00
|
|
|
|
|
|
|
{% include_cached footer.html lang=lang %}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2023-06-19 09:41:40 +03:00
|
|
|
{% include_cached search-results.html lang=lang %}
|
2019-09-30 15:38:41 +03:00
|
|
|
</div>
|
2023-09-08 17:48:37 +03:00
|
|
|
|
|
|
|
<aside aria-label="Scroll to Top">
|
|
|
|
<button id="back-to-top" type="button" class="btn btn-lg btn-box-shadow">
|
|
|
|
<i class="fas fa-angle-up"></i>
|
|
|
|
</button>
|
|
|
|
</aside>
|
2023-05-06 02:22:29 +03:00
|
|
|
</div>
|
2020-04-16 19:26:58 +03:00
|
|
|
|
2019-09-30 15:38:41 +03:00
|
|
|
<div id="mask"></div>
|
|
|
|
|
2022-06-04 19:10:20 +03:00
|
|
|
{% if site.pwa.enabled %}
|
2023-09-08 17:48:37 +03:00
|
|
|
{% include_cached notification.html lang=lang %}
|
2022-06-04 19:10:20 +03:00
|
|
|
{% endif %}
|
2022-06-04 18:54:06 +03:00
|
|
|
|
2023-09-08 17:48:37 +03:00
|
|
|
<!-- JavaScripts -->
|
|
|
|
|
2021-07-01 11:20:36 +03:00
|
|
|
{% include js-selector.html %}
|
2023-03-22 20:29:17 +03:00
|
|
|
|
|
|
|
{% if page.mermaid %}
|
|
|
|
{% include mermaid.html %}
|
|
|
|
{% endif %}
|
|
|
|
|
2023-06-19 09:41:40 +03:00
|
|
|
{% include_cached search-loader.html %}
|
2019-09-30 15:38:41 +03:00
|
|
|
</body>
|
2020-10-12 00:27:13 +03:00
|
|
|
</html>
|