web/_layouts/default.html

60 lines
1.1 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>
2020-05-23 12:06:36 +03:00
{% if site.lang %}
{% assign lang = site.lang | split: "_" | first %}
{% else %}
{% assign lang = 'en' %}
{% endif %}
{% capture prefer_mode %}
{% if site.theme_mode != "dual" %}
mode="{{ site.theme_mode }}"
{% endif %}
{% endcapture %}
2020-05-23 12:06:36 +03:00
<html lang="{{ lang }}" {{ 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="#" class="btn btn-lg btn-box-shadow" role="button">
<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
2019-09-30 15:38:41 +03:00
</body>
</html>