My blog
https://blog.franco.net.eu.org/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
1.2 KiB
37 lines
1.2 KiB
--- |
|
layout: compress |
|
--- |
|
|
|
<!DOCTYPE html> |
|
{% comment %}See https://www.bennadel.com/blog/822-using-body-id-as-a-back-to-top-page-anchor.htm#comments_448{% endcomment %} |
|
<html lang="en" id="top-page"> |
|
<head> |
|
{% include head.html %} |
|
</head> |
|
<body> |
|
{% include header.html %} |
|
|
|
{% if page.is_post != true %} |
|
<div id="main"></div> |
|
{% endif %} |
|
|
|
{% if site.anchor_headings_enabled %} |
|
{% include anchor_headings.html html=content anchorBody=site.anchor_headings_character anchorClass="hAnchor" h_min=site.anchor_headings_min h_max=site.anchor_headings_max beforeHeading=site.anchor_headings_before %} |
|
{% else %} |
|
{{ content }} |
|
{% endif %} |
|
|
|
{% comment %}Can't use == false since page.is_home might be undefined{% endcomment %} |
|
{% if page.is_home != true and page.is_404 != true and page.is_tags != true and page.is_sitemap != true %} |
|
{% include comments.html %} |
|
{% endif %} |
|
|
|
{% if page.is_post %} |
|
{% include post_navigation.html %} |
|
{% else %} |
|
{% include page_navigation.html %} |
|
{% endif %} |
|
|
|
{% include footer.html %} |
|
</body> |
|
</html>
|
|
|