Skip to content
This repository has been archived by the owner on Oct 5, 2021. It is now read-only.

Commit

Permalink
Updating index.html links to include baseurl
Browse files Browse the repository at this point in the history
  • Loading branch information
barryclark committed Jun 3, 2014
1 parent 1011dd7 commit b491bc6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@
{% for post in site.posts %}
<article class="post">

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

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

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

0 comments on commit b491bc6

Please sign in to comment.