mirror of
https://github.com/safing/web
synced 2025-09-01 18:49:06 +00:00
45 lines
1.2 KiB
HTML
45 lines
1.2 KiB
HTML
<!DOCTYPE html>
|
|
<html lang={{ site.lang }} >
|
|
<head>
|
|
{% include head.html %}
|
|
</head>
|
|
<body>
|
|
{% include header.html %}
|
|
{% include floating_button.html download=true %}
|
|
<div class="content" style="padding: 1rem 0 0 0;">
|
|
<div class="ui basic center aligned very padded segment" style="margin: 0;" >
|
|
|
|
<h1 class="">
|
|
{% if page.heading %}
|
|
{{ page.heading }}
|
|
{% elsif page.title %}
|
|
{{ page.title }}
|
|
{% elsif layout.heading %}
|
|
{{ layout.heading }}
|
|
{% endif %}
|
|
</h1>
|
|
{% if page.subheading %}
|
|
<h3 class="">
|
|
{% if page.subheading %}
|
|
{{ page.subheading }}
|
|
{% elsif page.title %}
|
|
{% elsif layout.subheading %}
|
|
{{ layout.subheading }}
|
|
{% endif %}
|
|
</h3>
|
|
{% endif %}
|
|
|
|
{% 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>
|