view default/input/navigation.html @ 124:11e729a7d8e9

photo: photos handling, first draft: this template is a specialized file view for photo albums. A comments panel is added if a comments link is found.
author Goffi <goffi@goffi.org>
date Sun, 18 Mar 2018 11:31:36 +0100
parents 5d9e2270ceb4
children
line wrap: on
line source

{% macro prev_next(prev_label=_("newer"), next_label=_("older")) %}
    <nav class="prev_next_links">
        <ul>
            {% if newer_url is defined %}
                <li class="newer_items">
                    <a href="{{newer_url}}">
                        <img src="{{media_path}}icons/tango/actions/32/go-previous.png">
                        {{prev_label}}
                    </a>
                </li>
            {% endif %}
            {% if older_url is defined %}
                <li class="older_items">
                    <a href="{{older_url}}">
                        <img src="{{media_path}}icons/tango/actions/32/go-next.png">
                        {{next_label}}
                    </a>
                </li>
            {% endif %}
        </ul>
    </nav>
{% endmacro %}