Skip to content

Commit

Permalink
More baseurl changes
Browse files Browse the repository at this point in the history
  • Loading branch information
mushishi78 committed Sep 7, 2015
1 parent b2d1ab8 commit 67cba18
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion _includes/sidebar.html
Expand Up @@ -6,7 +6,7 @@
<h3>{{ post.title }}</h3>
{{ post.excerpt }}
<footer>
<a href="{{ site.prefix }}{{ post.url }}" class="button">Continue Reading</a>
<a href="{{ site.baseurl }}{{ post.url }}" class="button">Continue Reading</a>
</footer>
</section>
{% endfor %}
Expand Down
2 changes: 1 addition & 1 deletion _layouts/post.html
Expand Up @@ -12,7 +12,7 @@ <h2>{{ page.title }}</h2>
<div class="row">
<div class="8u -2u">
<section class="box">
<a href="#" class="image left"><img src="{{ page.featured }}" alt="" /></a>
<a href="#" class="image left"><img src="{{ site.baseurl }}{{ page.featured }}" alt="" /></a>
{{ page.content }}
</section>
</div>
Expand Down
4 changes: 2 additions & 2 deletions blog/index.html
Expand Up @@ -19,12 +19,12 @@ <h2>The Blog</h2>
<div class="row">
<section class="12u">
<div class="box post">
<a href="#" class="image left"><img src="{{ post.featured }}" alt=""></a>
<a href="#" class="image left"><img src="{{ site.baseurl }}{{ post.featured }}" alt=""></a>
<div class="inner">
<h3>{{ post.title }}</h3>
{{ post.excerpt }}
<footer>
<a href="{{ site.prefix }}{{ post.url }}" class="button">Continue Reading</a>
<a href="{{ site.baseurl }}{{ post.url }}" class="button">Continue Reading</a>
</footer>
</div>
</div>
Expand Down

0 comments on commit 67cba18

Please sign in to comment.