web/_layouts/default.html

58 lines
1.2 KiB
HTML
Raw Normal View History

2019-09-30 15:38:41 +03:00
---
layout: compress
# Default layout
2020-01-02 16:17:49 +03:00
# v2.0
# https://github.com/cotes2020/jekyll-theme-chirpy
2019-09-30 15:38:41 +03:00
# © 2017-2019 Cotes Chung
# MIT Licensed
---
<!DOCTYPE html>
{% capture prefer_mode %}
2020-12-04 21:44:28 +03:00
{% unless site.theme_mode == "dual" %}
mode="{{ site.theme_mode }}"
2020-12-04 21:44:28 +03:00
{% endunless %}
{% endcapture %}
2020-12-04 21:44:28 +03:00
<html lang="{{ site.lang | split: "_" | first | default: "en" }}" {{ prefer_mode }} >
2019-09-30 15:38:41 +03:00
{% include head.html %}
<body data-spy="scroll" data-target="#toc">
2020-04-16 19:26:58 +03:00
2019-09-30 15:38:41 +03:00
<div id="sidebar" class="d-flex flex-column">
{% include sidebar.html %}
</div>
2020-04-16 19:26:58 +03:00
{% include topbar.html %}
2020-01-03 16:22:11 +03:00
<div id="main-wrapper">
2019-09-30 15:38:41 +03:00
<div id="main">
{% include refactor-content.html content=content %}
2019-09-30 15:38:41 +03:00
{% include footer.html %}
2019-09-30 15:38:41 +03:00
</div>
2019-09-30 15:38:41 +03:00
{% include search-results.html %}
2020-04-16 19:26:58 +03:00
</div> <!-- #main-wrapper -->
2019-09-30 15:38:41 +03:00
<div id="mask"></div>
<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
{% include search-loader.html %}
2019-11-25 15:56:50 +03:00
{% if site.google_analytics.id and jekyll.environment == 'production' %}
{% include google-analytics.html %}
{% endif %}
2019-09-30 15:38:41 +03:00
</body>
</html>