Skip to content

Commit 9e75552

Browse files
committed
Don't need the /
1 parent b491bc6 commit 9e75552

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@
66
{% for post in site.posts %}
77
<article class="post">
88

9-
<h1><a href="{{ site.baseurl }}/{{ post.url }}">{{ post.title }}</a></h1>
9+
<h1><a href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a></h1>
1010

1111
<div class="entry">
1212
{{ post.content | truncatewords:40}}
1313
</div>
1414

15-
<a href="{{ site.baseurl }}/{{ post.url }}" class="read-more">Read More</a>
15+
<a href="{{ site.baseurl }}{{ post.url }}" class="read-more">Read More</a>
1616
</article>
1717
{% endfor %}
1818
</div>

0 commit comments

Comments
 (0)