Skip to content

Commit fc5ffb9

Browse files
Merge pull request #3 from gjuniioor/master
Resolve bug in category list
2 parents 929e28f + 374d565 commit fc5ffb9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

category.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ <h2 id="{{ tag[0] }}">{{ tag[0] | capitalize }}</h2>
2525
{% for post in pages_list %}
2626
{% if post.title != null %}
2727
{% if group == null or group == post.group %}
28-
<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>
28+
<li><a href="{{ 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>
2929
{% endif %}
3030
{% endif %}
3131
{% endfor %}

0 commit comments

Comments
 (0)