Skip to content

Commit

Permalink
fix series.html baseurl (willianjusten#34)
Browse files Browse the repository at this point in the history
* fix author site url

* fix tags baseurl

* fix assets baseurl

* fix author image url

* Update series.html
  • Loading branch information
danielschmitz authored and willianjusten committed Jun 3, 2016
1 parent 3c19166 commit b5a0888
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion series.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
{% 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.baseurl }}{{ 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>
{% endif %}
{% endif %}
{% endfor %}
Expand Down

0 comments on commit b5a0888

Please sign in to comment.