Browse Source

Fix for date format and html strip

redesign
Anxhelo Lushka 7 years ago
committed by GitHub
parent
commit
8936617790
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      tags/index.html

2
tags/index.html

@ -26,7 +26,7 @@ title: "#Tags"
{% for post in pages_list reversed %}
{% if post.title != null %}
{% if group == null or group == post.group %}
<li><a href="{{ site.url }}{{ post.url }}">{{ post.title }}<span class="entry-date"><time datetime="{{ post.date | date_to_xmlschema }}" itemprop="datePublished">{{ post.date | date: "%B %d, %Y" }}</time></a></li>
<li><a href="{{ site.url }}{{ post.url | replace:'.html','' }}">{{ post.title }}<span class="entry-date"><time datetime="{{ post.date | date_to_xmlschema }}" itemprop="datePublished">{{ post.date | date: "%d %B %Y" }}</time></a></li>
{% endif %}
{% endif %}
{% endfor %}

Loading…
Cancel
Save