summaryrefslogtreecommitdiff
path: root/_includes/themes/twitter/post.html
diff options
context:
space:
mode:
Diffstat (limited to '_includes/themes/twitter/post.html')
-rw-r--r--_includes/themes/twitter/post.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/_includes/themes/twitter/post.html b/_includes/themes/twitter/post.html
index 591cbca..ebf66ca 100644
--- a/_includes/themes/twitter/post.html
+++ b/_includes/themes/twitter/post.html
@@ -9,13 +9,13 @@
<div class="pagination">
<ul>
{% if page.previous %}
- <li class="prev"><a href="{{ page.previous.url }}" title="{{ page.previous.title }}">&larr; Previous</a></li>
+ <li class="prev"><a href="{{ BASE_PATH }}{{ page.previous.url }}" title="{{ page.previous.title }}">&larr; Previous</a></li>
{% else %}
<li class="prev disabled"><a>&larr; Previous</a></li>
{% endif %}
- <li><a href="/archive.html">Archive</a></li>
+ <li><a href="{{ BASE_PATH }}{{site.var.archive_path}}">Archive</a></li>
{% if page.next %}
- <li class="next"><a href="{{ page.next.url }}" title="{{ page.next.title }}">Next &rarr;</a></li>
+ <li class="next"><a href="{{ BASE_PATH }}{{ page.next.url }}" title="{{ page.next.title }}">Next &rarr;</a></li>
{% else %}
<li class="next disabled"><a>Next &rarr;</a>
{% endif %}