We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b491bc6 commit 9e75552Copy full SHA for 9e75552
index.html
@@ -6,13 +6,13 @@
6
{% for post in site.posts %}
7
<article class="post">
8
9
- <h1><a href="{{ site.baseurl }}/{{ post.url }}">{{ post.title }}</a></h1>
+ <h1><a href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a></h1>
10
11
<div class="entry">
12
{{ post.content | truncatewords:40}}
13
</div>
14
15
- <a href="{{ site.baseurl }}/{{ post.url }}" class="read-more">Read More</a>
+ <a href="{{ site.baseurl }}{{ post.url }}" class="read-more">Read More</a>
16
</article>
17
{% endfor %}
18
0 commit comments