Skip to content
Snippets Groups Projects
Unverified Commit 98d30893 authored by luigi1111's avatar luigi1111 Committed by GitHub
Browse files

Merge pull request #612 from rehrar/blog-fix

Fixed blog tag issue
parents 490a83c4 da3d667c
No related branches found
No related tags found
No related merge requests found
......@@ -23,7 +23,7 @@ layout: custom
<div>
{% if site.tags[tag.slug] %}
{% for post in site.tags[tag.slug] %}
<h3><a href="{{site.baseurl}}/{{ post.url }}">{{ post.title }}</a></h3>
<h3><a href="{{ post.url }}">{{ post.title }}</a></h3>
<p>
{{ post.summary }}
</p>
......@@ -46,7 +46,7 @@ layout: custom
{% for post in site.posts limit:4 %}
<div class="row start-xs info-block-row">
<div class="col">
<p><a href="{{site.baseurl}}/{{ post.url }}">{{ post.title }}</a></p>
<p><a href="{{ post.url }}">{{ post.title }}</a></p>
</div>
</div>
{% endfor %}
......@@ -60,7 +60,7 @@ layout: custom
{% for tag in site.data.tags limit:4 %}
<div class="row start-xs">
<div class="col">
<p><a href="{{site.baseurl}}/blog/tags/{{ tag.slug }}.html">{{ tag.name }}</a></p>
<p><a href="/blog/tags/{{ tag.slug }}.html">{{ tag.name }}</a></p>
</div>
</div>
{% endfor %}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment