wiki/_layouts/default.html
Pk11 c454594a0d Use page.collection instead of page.lang
and auto add language to nav
2020-12-21 15:28:32 -06:00

29 lines
545 B
HTML

---
layout: compress
---
<!DOCTYPE html>
<html lang="{{ page.collection | default: "en-US" }}">
{% include head.html%}
<body>
<div class="content">
{% include nav.html %}
<main>
<div class="container-fluid">
<div class="row pt-5">
<div class="col-sm-2"></div>
<div class="col-sm-8">
{% include anchor-headings.html html=content anchorBody="<small>#</small>" anchorClass="header-anchor" %}
</div>
</div>
</div>
</main>
</div>
{% include footer.html %}
{% include common-js.html %}
</body>
</html>