view sat_templates/templates/bulma/blog/item.html @ 353:ddcdc0475940

(bulma) blog/item: `published` timestamp now links to the item
author Goffi <goffi@goffi.org>
date Tue, 22 Mar 2022 16:55:23 +0100
parents e982a05d43b1
children
line wrap: on
line source

{# display a blog item which can be expanded/retracted by clicking on it

    if the locale differs from item language, it will be totally reduced, and will need a click to be displayed

    @variable item(data_object.BlogItem): item to display
    @variable identities(data_object.Identities): identities which can be used to display info on item author
    @variable dates_format(unicode): format of the date to use (see date_fmt filter)
#}

{% block item %}

{% set item_level = (item_level or 0) + 1 %}

{% if item.language and locale and locale.language != item.language %}
    {# we may display items in different language in a specific way #}
    {% set other_lang = " other_lang" if expanded else " other_lang state_init" %}
{% endif %}
    <article id="{{item.id}}" class="media has-background-white px-4 py-3" >
        {% if identities is defined %}
            {% if avatar is defined %}
                <div class="media-left">
                    {{ avatar.avatar(item.author_jid) }}
                </div>
            {% endif %}
        {% endif %}
        <div class="media-content">
            {% set title = item.title_xhtml|safe or item.title%}
            {% set item_http_uri = items_http_uri.get(item.id) if items_http_uri is defined else none %}
            {% if title %}
                <h4 class="title is-4">
                    {% if item_http_uri %}
                        <a href="{{item_http_uri}}" class="has-text-black">{{title}}</a>
                    {% else %}
                        {{title}}
                    {% endif %}
                </h4>
            {% endif %}
            <div class="content">
                <p class="subtitle is-6 has-text-grey">
                    {% set published = item.published|date_fmt(fmt=dates_format) %}
                    {% if Identities is defined %}
                        <strong>{{identities[item.author_jid].nicknames[0] if identities[item.author_jid].nicknames else item.author}}</strong>
                    {% else %}
                        <strong>{{item.author}}</strong>
                    {% endif %}
                    {% if item_http_uri %}
                        <small><a href="{{item_http_uri}}" class="has-text-black">{{published}}</a></small>
                    {% else %}
                        <small>{{published}}</small>
                    {% endif %}
                    {% if item.tags %}
                        <small class="labels">
                            {% if tags_http_uri is defined %}
                                {% for tag in item.tags %}
                                    <a href="{{tags_http_uri[tag]}}"><span class="tag is-rounded">{{tag}}</span></a>
                                {% endfor %}
                            {% else %}
                                {% for tag in item.tags %}
                                    <span class="tag">{{tag}}</span>
                                {% endfor %}
                            {% endif %}
                        </small>
                    {% endif %}
                </p>
                {% if item.content_xhtml is defined %}
                    {{item.content_xhtml|safe}}
                {% else %}
                    <p class="is-text-content">
                        {{- item.content|urlize -}}
                    </p>
                {% endif %}
                {% for comments_data in item.comments %}
                    {% for item in comments_data['items'] %}
                        {% include 'blog/item.html' %}
                    {% endfor %}
                    {% if allow_commenting and item_level == 1 %}
                        <div class="comment_post">
                            {{- textbox.comment(service=comments_data.service, node=comments_data.node) -}}
                        </div>
                    {% endif %}
                {% endfor %}

            </div>
        </div>
    </article>

{% endblock item %}