view sat_templates/templates/bulma/blog/discover.html @ 295:1de599c5a68f

bulma (base): loading screen: when the `loading_screen` variable is set before extending `base/base.html`, a loading modal is shown (and must be removed via JavaScript). This avoids the user to try to use an interface which is not reactive or working normally because JS is not fully loaded yet.
author Goffi <goffi@goffi.org>
date Fri, 27 Nov 2020 12:24:03 +0100
parents 1928ba66c194
children c08fadf23c46
line wrap: on
line source

{% extends 'base/base.html' %}
{% import 'components/block.html' as block %}
{% import 'components/images.html' as images with context %}
{% import 'components/avatar.html' as avatar with context %}
{% import 'input/form.html' as form with context %}
{% import 'input/field.html' as field with context %}

{% block body %}
{{ icon_defs('blog') }}

<section class="section">
    <article class="message has-text-centered">
        <div class="message-body">
            {% trans %}
            Please select the blog you want to consult
            {% endtrans %}
        </div>
    </article>
</section>

<section class="section disco_blogs">
    <div class="columns is-mobile is-multiline">
        {% for entity in disco_entities %}
            <div class="column is-2-desktop is-4-touch">
                <div class="card x-is-hoverable">
                    <a href="{{entities_url[entity]}}" class="items_vert--centered">
                        <div class="card-image is-flex has-items-centered px-1 py-1">
                            {{ avatar.avatar(entity, "is-64x64") }}
                        </div>
                        <div class="card-content has-text-centered has-text-shortenable px-1 py-1">
                            <span>{{ identities[entity].nicknames[0] if identities[entity].nicknames else entity }}</span>
                        </div>
                    </a>
                </div>
            </div>
        {% endfor %}
    </div>
</section>

<section class="section">
    <p class="content">{% trans %}Or enter the jid of a blog writer{% endtrans %}</p>
    {% call form.form(class="form--single") %}
        {{ field.text("jid", _("blog writer jid"), required=true)}}
        {{ field.submit(_("Consult")) }}
    {% endcall %}
</section>
{% endblock body %}