web/_layouts/default.html

47 lines
938 B
HTML
Raw Normal View History

2019-09-30 15:38:41 +03:00
---
layout: compress
# Default layout
# © 2017-2019 Cotes Chung
# MIT Licensed
---
<!DOCTYPE html>
<html lang="en">
{% include head.html %}
<body data-spy="scroll" data-target="#toc">
<div id="sidebar" class="d-flex flex-column">
{% include sidebar.html %}
</div>
2019-11-27 22:58:31 +03:00
<div id="main-wrap" class="bg-white">
2019-09-30 15:38:41 +03:00
{% include topbar.html %}
<div id="main">
{% capture _content %}
{{ content }}
{% endcapture %}
{% include fixlinenos.html %}
{{ _content }}
{% include footer.html %}
</div>
{% include search-results.html %}
</div>
<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
{% if jekyll.environment == 'production' %}
{% include google-analytics.html %}
{% endif %}
{% include search.html %}
2019-09-30 15:38:41 +03:00
</body>
</html>