@willowtreeapps/ukor
Version:
Roku build tool with flavors and deployment
26 lines (22 loc) • 713 B
HTML
<html lang="{{ page.lang | default: site.lang | default: "en" }}">
{% include head.html %}
<body>
{% include menu.html %}
<main class="container" aria-label="Content">
<div class="row">
{% if page.sidebar != null %}
{% include sidebar.html %}
<article class="col-12 col-md-8 col-xl-9 page-content docs-content">
{{ content }}
</article>
{% else %}
<article class="col-12 page-content">
{{ content }}
</article>
{% endif %}
</div>
</main>
{% include footer.html %}
</body>
</html>