diff options
Diffstat (limited to '_includes/postmeta.html')
| -rw-r--r-- | _includes/postmeta.html | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/_includes/postmeta.html b/_includes/postmeta.html new file mode 100644 index 0000000..0c7416d --- /dev/null +++ b/_includes/postmeta.html @@ -0,0 +1,18 @@ +<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 %} + {{ post.date | date: "%B %-d, %Y" }} + {% endif %} + + {% t footer.by %} {{ site.author }}. + <span>{% t blog.tags %}: </span> + </div> + <div class="separator"></div> + + {% include listtags.html tags=include.tags urltobeused=include.urltobeused %} +</div> |
