mirror of
https://github.com/YunoHost/doc.git
synced 2024-09-03 20:06:26 +02:00
17 lines
629 B
Twig
17 lines
629 B
Twig
{% set body_classes = body_classes ~ ' ' ~ page.header.body_classes %}
|
|
{% extends 'partials/base.html.twig' %}
|
|
|
|
{% set tags = page.taxonomy.tag %}
|
|
{% if tags %}
|
|
{% set progress = page.collection({'items':{'@taxonomy':{'category': 'docs', 'tag': tags}},'order': {'by': 'default', 'dir': 'asc'}}) %}
|
|
{% else %}
|
|
{% set progress = page.collection({'items':{'@taxonomy':{'category': 'docs'}},'order': {'by': 'default', 'dir': 'asc'}}) %}
|
|
{% endif %}
|
|
|
|
{% block content %}
|
|
{% include 'partials/toc.html.twig' %}
|
|
|
|
{% include 'partials/page.html.twig' %}
|
|
|
|
{% include 'partials/github-note.html.twig' %}
|
|
{% endblock %}
|