Skip to content

Commit

Permalink
Fix for links in the bottom bar (#29)
Browse files Browse the repository at this point in the history
* Fixes url to posts on bottom bar
* Remove typo?
  • Loading branch information
dpshelio committed Mar 8, 2021
1 parent 77131fd commit 3c3756e
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions _includes/bottombar.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,7 @@ <h4>Recent Posts</h4>
<ul class="popular-posts">
{% for post in site.posts limit:4 %}
<li>
<a href="{{ post.url | prepend: site.baseurl }}">
<p><a href="/apps{{ post.url }}.html">{{ post.title }} baa{{ post.url }}</a></p>
<p><a href="{{ post.url | prepend: site.baseurl }}">{{ post.title }} {{ post.url }}</a></p>
<em>Posted on {{ post.date | date_to_string }}</em>
</li>
{% endfor %}
Expand Down

0 comments on commit 3c3756e

Please sign in to comment.