aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/_includes
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2016-06-21 05:04:45 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2016-06-21 05:04:45 +0300
commit37d6dc2cc28a26306651ba1a9251fa1a8161633e (patch)
tree3c1a07191c742d813df46596da79681d732efc34 /_includes
parentfix links & code style (diff)
downloadjekyll-theme-37d6dc2cc28a26306651ba1a9251fa1a8161633e.tar.gz
jekyll-theme-37d6dc2cc28a26306651ba1a9251fa1a8161633e.zip
put most of my personal info to _config.yml
Diffstat (limited to '_includes')
-rw-r--r--_includes/footer.html2
-rw-r--r--_includes/header.html2
-rw-r--r--_includes/navbar.html2
-rw-r--r--_includes/sidebar.html4
4 files changed, 5 insertions, 5 deletions
diff --git a/_includes/footer.html b/_includes/footer.html
index 27ff07a..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/cpp-notes/tree/gh-pages#license">License</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 75b2b97..3794583 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 }} - C++ notes - Egor Tensin</title>
+ <title>{{ page.title }} - C++ notes - {{ 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 cc4e87a..d00fc7a 100644
--- a/_includes/sidebar.html
+++ b/_includes/sidebar.html
@@ -1,8 +1,8 @@
<h4>About the project</h4>
<p>Personal C++ notes. Feel free to contribute or contact me.</p>
<div class="list-group reasonable-width">
- <a class="list-group-item" href="//github.com/egor-tensin/cpp-notes"><span class="glyphicon glyphicon-home"></span>&nbsp;GitHub repository</a>
- <a class="list-group-item" href="mailto:Egor.Tensin@gmail.com"><span class="glyphicon glyphicon-envelope"></span>&nbsp;Egor.Tensin@gmail.com</a>
+ <a class="list-group-item" href="{{ site.github.repository_url }}"><span class="glyphicon glyphicon-home"></span>&nbsp;GitHub repository</a>
+ <a class="list-group-item" href="mailto:{{ site.personal_info.email }}"><span class="glyphicon glyphicon-envelope"></span>&nbsp;{{ site.personal_info.email }}</a>
</div>
<h4>Latest posts</h4>
{% if site.posts.size == 0 %}