Skip to content

Commit

Permalink
add site.baseurl to next button at bottom of each page.
Browse files Browse the repository at this point in the history
  • Loading branch information
brntbeer committed Aug 15, 2017
1 parent ad210d9 commit 5627497
Show file tree
Hide file tree
Showing 9 changed files with 12 additions and 16 deletions.
5 changes: 2 additions & 3 deletions basic/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -730,7 +730,7 @@ <h4 id="reset-hard">
dangerous option and is not working directory safe. Any changes not committed will
be lost.
</p>

<pre>
<b>$ git status</b>
# On branch master
Expand Down Expand Up @@ -970,5 +970,4 @@ <h4 id="stash-drop">
</div>
</div>

<p><a class="page-button next-page" href="/branching">On to Branching and Merging &#187;</a></p>

<p><a class="page-button next-page" href="{{ site.baseurl }}/branching">On to Branching and Merging &#187;</a></p>
5 changes: 2 additions & 3 deletions branching/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ <h4 id="branch-last-commit">
<small>see the last commit on each branch</small>
</h4>

<p>If we want to see last commits on each branch
<p>If we want to see last commits on each branch
we can run <code>git branch -v</code> to see them.</p>

<pre>
Expand Down Expand Up @@ -860,5 +860,4 @@ <h2>
</div>
</div>

<p><a class="page-button next-page" href="/remotes">On to Sharing and Updating Projects &#187;</a></p>

<p><a class="page-button next-page" href="{{ site.baseurl }}/remotes">On to Sharing and Updating Projects &#187;</a></p>
2 changes: 1 addition & 1 deletion creating/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -139,4 +139,4 @@ <h2>
</div>
</div>

<p><a class="page-button next-page" href="/basic">On to Basic Snapshotting &#187;</a></p>
<p><a class="page-button next-page" href="{{ site.baseurl }}/basic">On to Basic Snapshotting &#187;</a></p>
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -109,4 +109,4 @@ <h2>How to Think Like Git</h2>
</div>
</div>

<p><a class="page-button next-page" href="/creating">On to Getting and Creating Projects &#187;</a></p>
<p><a class="page-button next-page" href="{{ site.baseurl }}/creating">On to Getting and Creating Projects &#187;</a></p>
4 changes: 2 additions & 2 deletions remotes/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ <h4 id="remote-rename">
<small>rename remote aliases</small>
</h4>

<p>If you want to rename remote aliases without having to delete them and add them again
<p>If you want to rename remote aliases without having to delete them and add them again
you can do that by running <code>git remote rename [old-alias] [new-alias]</code>. This will
allow you to modify the current name of the remote.</p>

Expand Down Expand Up @@ -437,4 +437,4 @@ <h2>
</div>
</div>

<p><a class="page-button next-page" href="/inspect">On to Inspection and Comparison &#187;</a></p>
<p><a class="page-button next-page" href="{{ site.baseurl }}/inspect">On to Inspection and Comparison &#187;</a></p>
3 changes: 1 addition & 2 deletions zh/basic/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -641,5 +641,4 @@ <h4>
</div>
</div>

<p><a href="/zh/branching">到 分支与合并 &#187;</a></p>

<p><a href="{{ site.baseurl }}/zh/branching">到 分支与合并 &#187;</a></p>
3 changes: 1 addition & 2 deletions zh/branching/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -696,5 +696,4 @@ <h2>
</div>
</div>

<p><a href="/zh/remotes">到 分享与更新项目 &#187;</a></p>

<p><a href="{{ site.baseurl }}/zh/remotes">到 分享与更新项目 &#187;</a></p>
2 changes: 1 addition & 1 deletion zh/creating/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -120,4 +120,4 @@ <h2>
</div>
</div>

<p><a href="/zh/basic">接下来:基本快照 &#187;</a></p>
<p><a href="{{ site.baseurl }}/zh/basic">接下来:基本快照 &#187;</a></p>
2 changes: 1 addition & 1 deletion zh/remotes/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -318,4 +318,4 @@ <h2>
</div>
</div>

<p><a href="/zh/inspect">到 检查与比较&#187;</a></p>
<p><a href="{{ site.baseurl }}/zh/inspect">到 检查与比较&#187;</a></p>

0 comments on commit 5627497

Please sign in to comment.