No Description
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.

docs.html.twig 877B

1234567891011121314151617181920212223
  1. {% extends 'partials/base.html.twig' %}
  2. {% set tags = page.taxonomy.tag %}
  3. {% if tags %}
  4. {% set progress = page.collection({'items':{'@taxonomy':{'category': 'docs', 'tag': tags}},'order': {'by': 'default', 'dir': 'asc'}}) %}
  5. {% else %}
  6. {% set progress = page.collection({'items':{'@taxonomy':{'category': 'docs'}},'order': {'by': 'default', 'dir': 'asc'}}) %}
  7. {% endif %}
  8. {% block navigation %}
  9. <div id="navigation">
  10. {% if not progress.isFirst(page.path) %}
  11. <a class="nav nav-prev" href="{{ progress.nextSibling(page.path).url }}"> <i class="fa fa-chevron-left"></i></a>
  12. {% endif %}
  13. {% if not progress.isLast(page.path) %}
  14. <a class="nav nav-next" href="{{ progress.prevSibling(page.path).url }}"><i class="fa fa-chevron-right"></i></a>
  15. {% endif %}
  16. </div>
  17. {% endblock %}
  18. {% block content %}
  19. {% include 'partials/page.html.twig' %}
  20. {% endblock %}