Skip to content

Commit

Permalink
Bugfixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Oliver Stapleton committed Oct 12, 2014
1 parent d28f33a commit 0587fd0
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion _includes/nav.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="/">{{ site.title }}</a>
<a class="navbar-brand" href="{{ "/" | prepend: site.baseurl }}">{{ site.title }}</a>
</div>
<div class="navbar-collapse collapse navbar-right">
<ul class="nav navbar-nav">
Expand Down
2 changes: 1 addition & 1 deletion _includes/sidebar.html
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ <h4>Recent Posts</h4>
<ul class="popular-posts">
{% for post in site.categories['blog'] limit:4 %}
<li>
<a href="{{ post.url }}"><img src="{{ "/assets/img/blog/thumbs/" | prepend: site.baseurl }}{{ post.thumb }}" alt="Popular Post"></a>
<a href="{{ post.url | prepend: site.baseurl }}"><img src="{{ "/assets/img/blog/thumbs/" | prepend: site.baseurl }}{{ post.thumb }}" alt="Popular Post"></a>
<p><a href="{{ post.url }}">{{ post.title }}</a></p>
<em>Posted on {{ post.date | date_to_string }}</em>
</li>
Expand Down
4 changes: 3 additions & 1 deletion blog.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,9 @@

{% for post in site.categories['blog'] %}
<! -- Blog Post -->
<p><img class="img-responsive" src="{{ "/assets/img/blog/" | prepend: site.baseurl }}{{ post.img }}"></p>
<a href="{{ post.url | prepend: site.baseurl }}">
<img class="img-responsive" src="{{ "/assets/img/blog/" | prepend: site.baseurl }}{{ post.img }}">
</a>
<a href="{{ post.url | prepend: site.baseurl }}"><h3 class="ctitle">{{ post.title }}</h3></a>
<p><csmall>{{ post.date | date: "%b %-d, %Y" }}. | By: {{ post.author }}</csmall></p>
{{ post.excerpt }}
Expand Down

0 comments on commit 0587fd0

Please sign in to comment.