-
Notifications
You must be signed in to change notification settings - Fork 350
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixing the relative path of all contents to /jasper/
- Loading branch information
1 parent
33387dd
commit d6491af
Showing
49 changed files
with
606 additions
and
731 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
<nav class="pagination" role="pagination"> | ||
{% if paginator.previous_page %} | ||
{% if paginator.previous_page == 1 %} | ||
<a class="newer-posts" href="/author/{{ site.username }}" title="Previous Page">« Newer Posts</a> | ||
<a class="newer-posts" href="{{ site.baseurl }}author/{{ site.username }}" title="Previous Page">« Newer Posts</a> | ||
{% else %} | ||
<a class="newer-posts" href="/author/{{ site.username }}/page{{ paginator.previous_page }}/" title="Previous Page">« Newer Posts</a> | ||
<a class="newer-posts" href="{{ site.baseurl }}author/{{ site.username }}/page{{ paginator.previous_page }}/" title="Previous Page">« Newer Posts</a> | ||
{% endif %} | ||
{% endif %} | ||
<span class="page-number"> Page {{ paginator.page }} of {{ paginator.total_pages }} </span> | ||
{% if paginator.next_page %} | ||
<a class="older-posts" href="/author/{{ site.username }}/page{{ paginator.next_page }}/" title="Next Page">Older Posts »</a> | ||
<a class="older-posts" href="{{ site.baseurl }}author/{{ site.username }}/page{{ paginator.next_page }}/" title="Next Page">Older Posts »</a> | ||
{% endif %} | ||
</nav> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
<link rel="canonical" href="{{ site.baseurl }}" /> | ||
<meta name="generator" content="Jekyll 2.5.3" /> | ||
<link rel="alternate" type="application/rss+xml" title="{{ site.title }}" href="{{ site.baseurl }}/rss.xml" /> | ||
<link rel="alternate" type="application/rss+xml" title="{{ site.title }}" href="{{ site.baseurl }}rss.xml" /> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
<nav class="pagination" role="pagination"> | ||
{% if paginator.previous_page %} | ||
{% if paginator.previous_page == 1 %} | ||
<a class="newer-posts" href="/" title="Previous Page">« Newer Posts</a> | ||
<a class="newer-posts" href="{{ site.baseurl }}" title="Previous Page">« Newer Posts</a> | ||
{% else %} | ||
<a class="newer-posts" href="/page{{ paginator.previous_page }}/" title="Previous Page">« Newer Posts</a> | ||
<a class="newer-posts" href="{{ site.baseurl }}page{{ paginator.previous_page }}/" title="Previous Page">« Newer Posts</a> | ||
{% endif %} | ||
{% endif %} | ||
<span class="page-number"> Page {{ paginator.page }} of {{ paginator.total_pages }} </span> | ||
{% if paginator.next_page %} | ||
<a class="older-posts" href="/page{{ paginator.next_page }}/" title="Next Page">Older Posts »</a> | ||
<a class="older-posts" href="{{ site.baseurl }}page{{ paginator.next_page }}/" title="Next Page">Older Posts »</a> | ||
{% endif %} | ||
</nav> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
<nav class="pagination" role="pagination"> | ||
{% if paginator.previous_page %} | ||
{% if paginator.previous_page == 1 %} | ||
<a class="newer-posts" href="/tag/{{ page.tag }}" title="Previous Page">« Newer Posts</a> | ||
<a class="newer-posts" href="{{ site.baseurl }}tag/{{ page.tag }}" title="Previous Page">« Newer Posts</a> | ||
{% else %} | ||
<a class="newer-posts" href="/tag/{{ page.tag }}/page{{ paginator.previous_page }}/" title="Previous Page">« Newer Posts</a> | ||
<a class="newer-posts" href="{{ site.baseurl }}tag/{{ page.tag }}/page{{ paginator.previous_page }}/" title="Previous Page">« Newer Posts</a> | ||
{% endif %} | ||
{% endif %} | ||
<span class="page-number"> Page {{ paginator.page }} of {{ paginator.total_pages }} </span> | ||
{% if paginator.next_page %} | ||
<a class="older-posts" href="/tag/{{ page.tag }}/page{{ paginator.next_page }}/" title="Next Page">Older Posts »</a> | ||
<a class="older-posts" href="{{ site.baseurl }}tag/{{ page.tag }}/page{{ paginator.next_page }}/" title="Next Page">Older Posts »</a> | ||
{% endif %} | ||
</nav> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.