view sat_templates/templates/default/components/block.html @ 230:0e69b5843c2f

theme: bulma theme first draft: This theme uses the Bulma CSS framework, Brython to handle the menu on touch devices, and Sass to customize Bulma. CSS default fallbacks are disabled as Bulma uses its own naming conventions, and default fallbacks would lead to hard to debug conflicts. `common.js` has been slightly improved to handle custom classed in `tab_select` The theme is not complete yet, but it is functional.
author Goffi <goffi@goffi.org>
date Tue, 19 May 2020 00:02:34 +0200
parents 03c8fd941c0c
children
line wrap: on
line source

{% macro separator(label, align='center') %}
{# display a bloc separator
    @param label(unicode): label to show
    @param align(unicode): one of "left", "center", "right"
#}
    <div class="block_separator">
        {% if align in ('center', 'right') %}
            <div class="block_separator__line"></div>
        {% endif %}
        <div class="block_separator__label">
            {{label}}
        </div>
        {% if align in ('center', 'left') %}
            <div class="block_separator__line"></div>
        {% endif %}
    </div>
{% endmacro %}

{% macro disco_icon_grid(disco_entities, icon_name) %}
{# display discovered entities in a grid
    @param disco_entities: entities which mush have a name and url key or attribute
    @param icon_name: name of a defined icon
#}
    <ul class="grid grid--center">
        {% for disco_entity in disco_entities %}
            <li class='grid__item grid__item--medium grid__item--selectable'>
                <a href="{{disco_entity.url}}" class="items_vert--centered">
                    {{ icon(icon_name, cls='icon--block icon--medium') }}
                    <span>{{ disco_entity.name }}</span>
                </a>
            </li>
        {% endfor %}
    </ul>
{% endmacro %}

{% macro interests_grid(interests, default_icon_name) %}
{# display list of interests
    @param interests: list of interests
    @param default_icon_name: name of a defined icon to use when no thumb_url is available
#}
    <ul class="grid grid--center">
        {% for interest in interests %}
            <li class='grid__item grid__item--medium grid__item--selectable'>
                <a href="{{interest.url}}">
                    {% if interest.thumb_url %}
                        <img class="img--small" src="{{interest.thumb_url}}">
                    {% else %}
                        <div>{{ icon(default_icon_name, cls='icon--medium') }}</div>
                    {% endif %}
                    <span><em>{{ interest.name|default(_("unnamed")) }}</em></span>
                </a>
            </li>
        {% endfor %}
    </ul>
{% endmacro %}