diff options
| author | Miquel Sabaté Solà <msabate@suse.com> | 2019-01-15 20:38:52 +0100 |
|---|---|---|
| committer | Miquel Sabaté Solà <msabate@suse.com> | 2019-01-15 20:38:52 +0100 |
| commit | 13d319d72cc44db35490fd34a71fa69269397668 (patch) | |
| tree | b6e5da11fdfbb084b03a5715d4b3a6904c001417 /_includes/postmeta.html | |
| parent | 32dcded10e6bbdb02e8aa54df8a15748d574c89b (diff) | |
| download | jo.mssola.com-13d319d72cc44db35490fd34a71fa69269397668.tar.gz jo.mssola.com-13d319d72cc44db35490fd34a71fa69269397668.zip | |
Minor fixes
Signed-off-by: Miquel Sabaté Solà <msabate@suse.com>
Diffstat (limited to '_includes/postmeta.html')
| -rw-r--r-- | _includes/postmeta.html | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/_includes/postmeta.html b/_includes/postmeta.html index 0c7416d..d9cc684 100644 --- a/_includes/postmeta.html +++ b/_includes/postmeta.html @@ -6,11 +6,15 @@ {% include date.html date=include.date %} {{ pre }}{{ day }} de {{ month }} del {{ year }} {% else %} - {{ post.date | date: "%B %-d, %Y" }} + {{ 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> |
