2024-04-20 12:54:05 +00:00
|
|
|
{% import "macros/date.html" as date_macros -%}
|
|
|
|
{% import "macros/head.html" as head_macros -%}
|
|
|
|
{% import "macros/menu.html" as menu_macros -%}
|
|
|
|
{% import "macros/post.html" as post_macros -%}
|
|
|
|
{% import "macros/title.html" as title_macros -%}
|
|
|
|
|
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
|
|
|
|
<head>
|
|
|
|
<title>{%- block title %}{{ config.title }}{% endblock title -%}</title>
|
|
|
|
{{ head_macros::head(config=config) }}
|
|
|
|
|
|
|
|
{%- if config.generate_feed %}
|
2024-05-27 08:17:20 +00:00
|
|
|
<link rel="alternate" type="application/rss+xml" title="RSS" href="{{ get_url(path="rss.xml
|
2024-04-20 12:54:05 +00:00
|
|
|
") | safe }}">
|
|
|
|
{% endif -%}
|
|
|
|
|
|
|
|
{%- if config.extra.favicon %}
|
|
|
|
<link rel="shortcut icon" type="{{ config.extra.favicon_mimetype | default(value=" image
|
|
|
|
/x-icon") | safe }}" href="{{ config.extra.favicon | safe }}">
|
|
|
|
{% endif -%}
|
|
|
|
|
|
|
|
{%- block extra_head %}
|
|
|
|
{% endblock extra_head -%}
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<body class="">
|
|
|
|
<div class="container">
|
|
|
|
{% block header %}
|
|
|
|
<header class="header">
|
|
|
|
<div class="header__inner">
|
|
|
|
<div class="header__logo">
|
|
|
|
{%- if config.logo_home_link %}
|
|
|
|
{% set logo_link = config.logo_home_link %}
|
|
|
|
{% else %}
|
|
|
|
{% set logo_link = config.base_url %}
|
|
|
|
{% endif -%}
|
|
|
|
<a href="{{ logo_link | safe }}" style="text-decoration: none;">
|
|
|
|
<div class="logo">
|
|
|
|
{% block logo_content %}
|
|
|
|
{{ config.extra.logo_text }}
|
|
|
|
{% endblock logo_content %}
|
|
|
|
</div>
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
{% block header_menu %}
|
|
|
|
{{ menu_macros::menu(config=config, current_path=current_path) }}
|
|
|
|
{% endblock header_menu %}
|
|
|
|
</header>
|
|
|
|
{% endblock header %}
|
|
|
|
|
|
|
|
<div class="content">
|
|
|
|
{% block content %}
|
|
|
|
<div class="posts">
|
|
|
|
{%- if paginator %}
|
|
|
|
{%- set show_pages = paginator.pages -%}
|
|
|
|
{% else %}
|
|
|
|
{%- set show_pages = section.pages -%}
|
|
|
|
{% endif -%}
|
|
|
|
|
|
|
|
{%- for page in show_pages %}
|
|
|
|
<div class="post on-list">
|
|
|
|
{{ post_macros::header(page=page) }}
|
|
|
|
{{ post_macros::content(page=page, summary=true) }}
|
|
|
|
</div>
|
|
|
|
{% endfor -%}
|
|
|
|
<div class="pagination">
|
|
|
|
<div class="pagination__buttons">
|
|
|
|
{%- if paginator.previous %}
|
|
|
|
<span class="button previous">
|
|
|
|
<a href="{{ paginator.previous | safe }}">
|
|
|
|
<span class="button__icon">←</span>
|
|
|
|
<span class="button__text">Newer posts</span>
|
|
|
|
</a>
|
|
|
|
</span>
|
|
|
|
{% endif -%}
|
|
|
|
{%- if paginator.next %}
|
|
|
|
<span class="button next">
|
|
|
|
<a href="{{ paginator.next | safe }}">
|
|
|
|
<span class="button__text">Older posts</span>
|
|
|
|
<span class="button__icon">→</span>
|
|
|
|
</a>
|
|
|
|
</span>
|
|
|
|
{% endif -%}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% endblock content %}
|
|
|
|
</div>
|
|
|
|
|
|
|
|
{% block footer %}
|
2024-05-16 10:33:43 +00:00
|
|
|
<footer class="footer noprint">
|
2024-06-07 12:50:38 +00:00
|
|
|
<div style="display: flex; margin-top: 1rem; justify-content: center;">
|
2024-04-20 12:54:05 +00:00
|
|
|
|
|
|
|
<span><a href="/impressum">Impressum</a></span>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
<div style="display: flex; margin-top: 1rem; justify-content: center;">
|
|
|
|
<a href="/rss.xml">RSS</a>
|
|
|
|
</div>
|
|
|
|
<div style="display: flex; margin-top: 1rem; justify-content: center;">
|
|
|
|
|
|
|
|
<img src="/buttons/antinft.gif" alt="Anti NFT">
|
|
|
|
<img src="/buttons/acab.gif" alt="ACAB">
|
|
|
|
<img src="/buttons/transnow2.gif" alt="Trans rights now">
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</footer>
|
|
|
|
{% endblock footer %}
|
|
|
|
|
|
|
|
</div>
|
|
|
|
{%- block extra_body %}
|
|
|
|
{% endblock extra_body -%}
|
|
|
|
</body>
|
|
|
|
|
|
|
|
</html>
|