More baseurl changes

pull/1/head
Max White 2015-09-07 22:35:16 +01:00
parent b2d1ab8024
commit 67cba1878a
3 changed files with 4 additions and 4 deletions

View File

@ -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 %}

View File

@ -12,7 +12,7 @@
<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>

View File

@ -19,12 +19,12 @@ layout: default
<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>