sitic
Version:
Generate static sites using Markdown and YAML. Straightforward, zero-complexity. Complete toolkit for landing pages, blogs, documentation, admin dashboards, and more.git remote add origin git@github.com:yuusoft-org/sitic.git
28 lines (24 loc) • 595 B
HTML
<html lang="en">
<head>
{% include "core/htmlHeader.html" %}
</head>
{% assign base_template_size_attrs = "w=\"768\"" %}
{% unless layoutConfiguration.size == "small" %}
{% assign base_template_size_attrs = "w=\"1024\" lg-w=\"768\"" %}
{% endunless %}
<body class="dark">
<rtgl-view h="48"></rtgl-view>
<rtgl-view w="f" ah="c">
<rtgl-view
md-w="100vw"
{{ base_template_size_attrs }}
ph="l"
pb="l">
{{ content }}
</rtgl-view>
{% include "core/footer.html" %}
</rtgl-view>
{% include "core/navbar.html" %}
</body>
</html>