1
0
Fork 0
mirror of https://github.com/safing/web synced 2025-04-09 05:29:10 +00:00
safing-web/_layouts/page.html
2018-06-11 12:52:23 +02:00

48 lines
1.3 KiB
HTML

<!DOCTYPE html>
<html lang={{ site.lang }}>
<head>
{% include head.html %}
</head>
<body>
{% include header.html %}
<div>
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h1 class="section-heading padding-top-40">
{% if page.heading %}
{{ page.heading }}
{% elsif page.title %}
{{ page.title }}
{% elsif layout.heading %}
{{ layout.heading }}
{% endif %}
</h1>
{% if page.subheading %}
<h3 class="section-subheading text-muted padding-bottom-40">
{% if page.subheading %}
{{ page.subheading }}
{% elsif page.title %}
{% elsif layout.subheading %}
{{ layout.subheading }}
{% endif %}
</h3>
{% endif %}
</div>
</div>
{% if page.include_divider %}
{% include page_divider.html %}
{% endif %}
</div>
{{ content }}
</div>
{% unless page.exclude_community_snippet %}
{% include community_snippet.html %}
{% endunless %}
{% include footer.html %}
</body>
</html>
{% include foot.html %}