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.
36 lines
954 B
36 lines
954 B
--- |
|
layout: compress |
|
--- |
|
|
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> |
|
<html lang="en"> |
|
<head> |
|
{% include head.html %} |
|
</head> |
|
<body> |
|
{% include header.html %} |
|
|
|
{% if page.is_home or page.is_tags %} |
|
{% include tag_list.html %} |
|
{% endif %} |
|
|
|
{% if page.is_post != true %} |
|
<div id="main"></div> |
|
{% endif %} |
|
|
|
{{ content | replace: '↩', '↩︎' }} |
|
|
|
{% 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>
|
|
|