Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 45fab77 commit ba8364dCopy full SHA for ba8364d
_includes/sidebar.html
@@ -20,7 +20,7 @@
20
{% for node in pages_list %}
21
{% if node.title != null %}
22
{% if node.layout == "page" %}
23
- <a class="sidebar-nav-item{% if page.url == node.url %} active{% endif %}" href="{{ site.baseurl }}{{ node.url }}">{{ node.title }}</a>
+ <a class="sidebar-nav-item{% if page.url == node.url %} active{% endif %}" href="{{ node.url }}">{{ node.title }}</a>
24
{% endif %}
25
26
{% endfor %}
index.html
@@ -7,7 +7,7 @@
7
{% for post in paginator.posts %}
8
<div class="post">
9
<h1 class="post-title">
10
- <a href="{{ site.baseurl }}{{ post.url }}">
+ <a href="{{ post.url }}">
11
{{ post.title }}
12
</a>
13
</h1>
0 commit comments