Skip to content

Commit

Permalink
Fix errors
Browse files Browse the repository at this point in the history
  • Loading branch information
hanju-jo committed Oct 8, 2017
2 parents 9e75eff + bf1f19a commit 6eaff86
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
7 changes: 4 additions & 3 deletions _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@ description: Web Developer from Somewhere
# URL of your avatar or profile pic (you could use your GitHub profile pic)
avatar: https://raw.githubusercontent.com/barryclark/jekyll-now/master/images/jekyll-logo.png

# Tabs in header. There are 'Blog', 'About', 'Archive', 'Tags'

# Tabs in header. There are 'Blog', 'About', 'Archive', 'Tags'
# and URL Link(e.g. 'Theme' tab below) tabs. If you don't need one, just delete
# it from the list(Delete '- name: ' and 'url: ', too!)
navigation:
Expand Down Expand Up @@ -56,7 +57,7 @@ footer-text: © 2017 Kiko Now

# Enter your Disqus shortname (not your username) to enable commenting on posts
# You can find your shortname on the Settings page of your Disqus account
disqus: kiko-now # <username>.disqus.com
disqus: # <username>.disqus.com

# Enter your Google Analytics web tracking code (e.g. UA-2110908-2) to activate tracking
google_analytics:
Expand All @@ -69,7 +70,7 @@ url:
# (http://yourusername.github.io/repository-name)
# and NOT your User repository (http://yourusername.github.io)
# then add in the baseurl here, like this: "/repository-name"
baseurl: ""
baseurl:

#
# !! You don't need to change any of the configuration flags below !!
Expand Down
4 changes: 2 additions & 2 deletions _layouts/post.html
Original file line number Diff line number Diff line change
Expand Up @@ -28,14 +28,14 @@ <h1>{{ page.title }}</h1>
<div class="pagination">
{% if page.previous.url %}
<span class="prev" >
<a href="{{ page.previous.url }}">
<a href="{{ site.url }}{{ site.baseurl }}{{ page.previous.url }}">
&#xE000; {{ page.previous.title }}
</a>
</span>
{% endif %}
{% if page.next.url %}
<span class="next" >
<a href="{{ page.next.url }}">
<a href="{{ site.url }}{{ site.baseurl }}{{ page.next.url }}">
{{ page.next.title }} &#xE001;
</a>
</span>
Expand Down

0 comments on commit 6eaff86

Please sign in to comment.