diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2016-06-24 23:02:39 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2016-06-24 23:02:39 +0300 |
commit | f3d0006aee9916eb588008d38b06a0f30c4701ce (patch) | |
tree | 6f1117c28e95c798ef991af9b040a3668b52544c | |
parent | add most of my personal info to _config.yml (diff) | |
download | sorting-algorithms-f3d0006aee9916eb588008d38b06a0f30c4701ce.tar.gz sorting-algorithms-f3d0006aee9916eb588008d38b06a0f30c4701ce.zip |
add `site.github` info to pages
-rw-r--r-- | _includes/footer.html | 2 | ||||
-rw-r--r-- | _includes/header.html | 2 | ||||
-rw-r--r-- | _includes/navbar.html | 2 | ||||
-rw-r--r-- | _includes/sidebar.html | 4 | ||||
-rw-r--r-- | plots.html | 2 |
5 files changed, 6 insertions, 6 deletions
diff --git a/_includes/footer.html b/_includes/footer.html index 5c77915..f3cbb38 100644 --- a/_includes/footer.html +++ b/_includes/footer.html @@ -6,7 +6,7 @@ <div style="display: table; width: 100%;"> <div style="display: table-row;"> <div style="display: table-cell;"> - <div class="text-center text-muted"><small>This project is licensed under the terms of the MIT License. See <a href="https://github.com/egor-tensin/sorting-algorithms/tree/gh-pages#licensing">Licensing</a> for details.</small></div> + <div class="text-center text-muted"><small>This project is licensed under the terms of the MIT License. See <a href="{{ site.github.repository_url }}#license">License</a> for details.</small></div> </div> </div> <div style="display: table-row;"> diff --git a/_includes/header.html b/_includes/header.html index 5759849..29a2729 100644 --- a/_includes/header.html +++ b/_includes/header.html @@ -5,7 +5,7 @@ <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> - <title>{{ page.title }} - Sorting algorithms - Egor Tensin</title> + <title>{{ page.title }} - Sorting algorithms - {{ site.personal_info.name }}</title> {% include bootstrap_css.html %} diff --git a/_includes/navbar.html b/_includes/navbar.html index d763c3e..af4a1c5 100644 --- a/_includes/navbar.html +++ b/_includes/navbar.html @@ -7,7 +7,7 @@ <span class="icon-bar"></span> <span class="icon-bar"></span> </button> - <a class="navbar-brand" href="/">Egor Tensin</a> + <a class="navbar-brand" href="/">{{ site.personal_info.name }}</a> </div> <div class="navbar-collapse collapse"> <ul class="nav navbar-nav"> diff --git a/_includes/sidebar.html b/_includes/sidebar.html index 22321f2..b318997 100644 --- a/_includes/sidebar.html +++ b/_includes/sidebar.html @@ -1,8 +1,8 @@ <h4>About the project</h4> <p>Getting the hang out of the sorting algorithms. Feel free to contribute or contact me.</p> <div class="list-group reasonable-width"> - <a class="list-group-item" href="https://github.com/egor-tensin/sorting-algorithms"><span class="glyphicon glyphicon-home"></span> GitHub repository</a> - <a class="list-group-item" href="mailto:Egor.Tensin@gmail.com"><span class="glyphicon glyphicon-envelope"></span> Egor.Tensin@gmail.com</a> + <a class="list-group-item" href="{{ site.github.repository_url }}"><span class="glyphicon glyphicon-home"></span> GitHub repository</a> + <a class="list-group-item" href="mailto:{{ site.personal_info.email }}"><span class="glyphicon glyphicon-envelope"></span> {{ site.personal_info.email }}</a> </div> <p>The implemented algorithms have been plotted to study their performance. You can examine the plots <a href="{{ site.baseurl }}/plots.html">here</a>.</p> @@ -151,7 +151,7 @@ to produce the plots are listed below.</p> <p>The table & plots below are just an attempt to nicely lay out the data generated using the code from the project repository's <code>master</code> branch. -Visit <a href="https://github.com/egor-tensin/sorting-algorithms/">https://github.com/egor-tensin/sorting-algorithms/</a> for more details.</p> +Visit <a href="{{ site.github.repository_url }}">{{ site.github.repository_url }}</a> for more details.</p> <p>Each of the implemented algorithms was provided with three input sequences:</p> |