summaryrefslogtreecommitdiff
path: root/libretube-theme/templates/article_info_aside.html
blob: f0b7e144019d7892dc23b099976e0c832cb8678e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<!-- post footer -->
<div class="card-content-footer">
    <span class="soumaicon text-info">
        <svg>
            <use href="{{ SITEURL }}/{{ THEME_STATIC_DIR }}/images/svg/master.svg#calendar" />
        </svg>
    </span>
    {% set año = article.date|strftime('%Y') %}
    {% set mes = article.date|strftime('%m') %}
    {% set nombre_mes = article.date|strftime('%B') %}
    <time class="entry-date published"
          datetime="{{ article.date.isoformat() }}">
        <small>
            {{ article.date|strftime('%a %-d') }}
            <a class="text-info" href="{{ SITEURL }}/archives/{{ año }}/{{ mes }}/"
               title="{% trans %}Artículos de {{ nombre_mes }} de {{ año }}{% endtrans %}">
                {{ nombre_mes }}
            </a>
            <a class="text-secondary" href="{{ SITEURL }}/archives/{{ año }}/"
               title="{% trans %}Artículos de {{ año }}{% endtrans %}">{{ año }}
            </a>
        </small>
    </time>

    {% if not HIDE_AUTHORS and article.authors %}
        <span class="soumaicon text-info">
            <svg>
                <use href="{{ SITEURL }}/{{ THEME_STATIC_DIR }}/images/svg/master.svg#user" />
            </svg>
        </span>
        {% for author in article.authors %}
            <small>
                <a class="text-white" href="{{ SITEURL }}/{{ author.url }}"
                   title="{% trans %}Autor del artículo{% endtrans %}">{{ author }}</a>{% if not loop.last %}, {% endif %}
            </small>
        {% endfor %}
    {% endif %}

    {% import 'translations.html' as translations with context %}
    {% if translations.translations_for(article) %}
        <span class="soumaicon text-info">
            <svg>
                <use href="{{ SITEURL }}/{{ THEME_STATIC_DIR }}/images/svg/master.svg#translate" />
            </svg>
        </span>
        <small>
            {{ translations.translations_for(article) }}
        </small>
    {% else %}
    {% endif %}

</div>
<!-- end of post footer -->
<!-- /.post-info -->