mirror of
https://github.com/pawroman/zola-theme-terminimal.git
synced 2025-01-08 19:51:06 +01:00
d0bb9da1d1
Zola 0.19.0 changed the config options related to RSS/ATOM feed generation, allowing multiple feeds at once. This patch addresses this change and adds as many links in the HTML head as there are feeds. Fix #64
137 lines
5.2 KiB
HTML
137 lines
5.2 KiB
HTML
{% 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="{%- if config.default_language -%}{{ config.default_language }}{%- else -%}en{%- endif -%}">
|
|
|
|
<head>
|
|
<title>{%- block title %}{{ config.title }}{% endblock title -%}</title>
|
|
{{ head_macros::head(config=config) }}
|
|
|
|
{%- block open_graph %}{{ head_macros::open_graph(config=config) }}{% endblock open_graph -%}
|
|
|
|
{%- if config.generate_feeds %}
|
|
{%- for feed in config.feed_filenames %}
|
|
{%- if feed is containing('atom') %}
|
|
<link rel="alternate" type="application/atom+xml" title="{{ config.title }} Atom Feed" href="{{ get_url(path=feed, trailing_slash=false, lang=lang) | safe }}" />
|
|
{%- endif %}
|
|
|
|
{%- if feed is containing('rss') %}
|
|
<link rel="alternate" type="application/rss+xml" title="{{ config.title }} RSS Feed" href="{{ get_url(path=feed, trailing_slash=false, lang=lang) | safe }}" />
|
|
{%- endif %}
|
|
|
|
{%- endfor %}
|
|
{% 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.extra.logo_home_link %}
|
|
{% set logo_link = config.extra.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 %}
|
|
{%- if config.extra.logo_text %}
|
|
{{ config.extra.logo_text }}
|
|
{% else %}
|
|
Terminimal theme
|
|
{% endif -%}
|
|
{% 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, show_only_description=page.extra.show_only_description | default(value=false)) }}
|
|
</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 %}
|
|
<footer class="footer">
|
|
<div class="footer__inner">
|
|
{%- if config.extra.copyright_html %}
|
|
<div class="copyright copyright--user">{{ config.extra.copyright_html | safe }}</div>
|
|
{% else %}
|
|
<div class="copyright">
|
|
{%- if config.extra.author %}
|
|
<span>© {{ date_macros::now_year() }} {{ config.extra.author }}</span>
|
|
{% else %}
|
|
<span>© {{ date_macros::now_year() }} Powered by <a href="https://www.getzola.org/">Zola</a></span>
|
|
{% endif -%}
|
|
|
|
<span class="copyright-theme">
|
|
<span class="copyright-theme-sep">:: </span>
|
|
Theme: <a href="https://github.com/pawroman/zola-theme-terminimal/">Terminimal</a> by pawroman
|
|
</span>
|
|
</div>
|
|
{% endif -%}
|
|
</div>
|
|
</footer>
|
|
{% endblock footer %}
|
|
|
|
</div>
|
|
{%- block extra_body %}
|
|
{% endblock extra_body -%}
|
|
</body>
|
|
|
|
</html>
|