krata/_layouts/default.html

63 lines
1.2 KiB
HTML
Raw Normal View History

2019-09-30 14:38:41 +02:00
---
layout: compress
# Default layout
2020-01-02 14:17:49 +01:00
# v2.0
# https://github.com/cotes2020/jekyll-theme-chirpy
2019-09-30 14:38:41 +02:00
# © 2017-2019 Cotes Chung
# MIT Licensed
---
<!DOCTYPE html>
2020-05-23 11:06:36 +02: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 11:06:36 +02:00
<html lang="{{ lang }}" {{ prefer_mode }} >
2019-09-30 14:38:41 +02:00
{% include head.html %}
<body data-spy="scroll" data-target="#toc">
2020-04-16 18:26:58 +02:00
2019-09-30 14:38:41 +02:00
<div id="sidebar" class="d-flex flex-column">
{% include sidebar.html %}
</div>
2020-04-16 18:26:58 +02:00
{% include topbar.html %}
2020-01-03 14:22:11 +01:00
<div id="main-wrapper">
2019-09-30 14:38:41 +02:00
<div id="main">
{% include refactor-content.html content=content %}
2019-09-30 14:38:41 +02:00
{% include footer.html %}
2019-09-30 14:38:41 +02:00
</div>
2019-09-30 14:38:41 +02:00
{% include search-results.html %}
2020-04-16 18:26:58 +02:00
</div> <!-- #main-wrapper -->
2019-09-30 14:38:41 +02: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 13:56:50 +01:00
{% if jekyll.environment == 'production' %}
{% include google-analytics.html %}
{% endif %}
{% include search-loader.html %}
2019-11-25 13:56:50 +01:00
2019-09-30 14:38:41 +02:00
</body>
</html>