aboutsummaryrefslogtreecommitdiff
path: root/_includes/postmeta.html
blob: d9cc6841cd84c88832219744c5156bdc56be7a22 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<div class="post-meta">
  <div class="autor">
    {% t blog.posted_on %}

    {% if site.lang == "ca" %}
      {% include date.html date=include.date %}
      {{ pre }}{{ day }} de {{ month }} del {{ year }}
    {% else %}
      {{ include.date | date: "%B %-d, %Y" }}
    {% endif %}

    {% t footer.by %} {{ site.author }}.

    {% capture tags_count %}{{ include.tags | size }}{% endcapture %}
    {% if tags_count != "0" %}
    <span>{% t blog.tags %}: </span>
    {% endif %}
  </div>
  <div class="separator"></div>

  {% include listtags.html tags=include.tags urltobeused=include.urltobeused %}
</div>