Mirror/docs/_layouts/default.html

34 lines
686 B
HTML
Raw Normal View History

2018-12-19 23:05:06 +00:00
<!DOCTYPE html>
<html lang="{{ page.lang | default: site.lang | default: "en" }}">
2018-12-18 18:42:55 +00:00
2018-12-19 23:05:06 +00:00
{%- include head.html -%}
2018-12-18 18:42:55 +00:00
2018-12-19 23:05:06 +00:00
<body>
{%- include header.html -%}
<div class="container-fluid">
<div class = "row flex-xl-nowrap">
{%- include sidebar.html -%}
2018-12-20 04:37:59 +00:00
<div class="d-none d-xl-block col-xl-2 bd-toc">
{%- include toc.html html=content class="section-nav" item_class="toc-entry" -%}
</div>
2018-12-19 23:05:06 +00:00
<div class="col-12 col-md-9 col-xl-8 py-md-3 pl-md-5 bd-content" role="main">
{{ content }}
{%- include disqus.html -%}
{%- include footer.html -%}
2018-12-18 18:42:55 +00:00
</div>
2018-12-19 23:05:06 +00:00
</div>
2018-12-18 18:42:55 +00:00
</div>
2018-12-19 23:05:06 +00:00
</body>
</html>