deblan.io-murph/templates/page/category/default.html.twig

31 lines
732 B
Twig
Raw Normal View History

2021-11-23 22:48:55 +01:00
{% extends "page/titled/default.html.twig" %}
{%- block meta_title -%}
2021-11-23 22:48:55 +01:00
{{- parent()|build_string(category) -}}
{% endblock %}
{% block meta_description %}
{{- parent()|build_string(post) -}}
{% endblock %}
{% block page_title %}
2021-11-23 22:48:55 +01:00
{{- parent()|build_string(category) -}}
{% endblock %}
{% block page_subtitle %}
2021-11-23 22:48:55 +01:00
{{- parent()|build_string(category) -}}
{% endblock %}
{% block pager %}
2021-03-29 22:45:00 +02:00
{{ include('module/_pager.html.twig', {
route: _node.routeName,
routeParams: {
category: category.id,
2021-11-23 22:48:55 +01:00
slug: category.slug,
_domain: _domain,
},
pages: pager.paginationData.endPage,
currentPage: pager.paginationData.current
}) }}
{% endblock %}