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.
 
 
 

16 lines
433 B

{%- extends "_layout.swig" -%}
{%- import '_macro/archive.swig' as archive_template -%}
{%- block title -%}
{%- if page.archive -%}
{{ __('menu.archives') }} - {{ config.title }}
{%- elif page.tag -%}
{{ page.tag }} · {{ config.title }}
{%- elif page.category -%}
{{ page.category }} · {{ config.title }}
{%- endif -%}
{%- endblock -%}
{%- block content -%}
{{ archive_template.render() }}
{%- endblock -%}