diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2021-04-09 14:13:39 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2021-04-09 14:43:22 +0300 |
commit | 072200d740c6c711d6042af0fdff04bbd7fe6646 (patch) | |
tree | 19e450d4433e386a5b114c1cb92f1d8875568ae0 /_includes/common/sidebar.html | |
parent | _layouts: add page.html (diff) | |
download | jekyll-theme-072200d740c6c711d6042af0fdff04bbd7fe6646.tar.gz jekyll-theme-072200d740c6c711d6042af0fdff04bbd7fe6646.zip |
put theme settings under site.settings
Diffstat (limited to '_includes/common/sidebar.html')
-rw-r--r-- | _includes/common/sidebar.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/_includes/common/sidebar.html b/_includes/common/sidebar.html index 923eb04..1a161ba 100644 --- a/_includes/common/sidebar.html +++ b/_includes/common/sidebar.html @@ -1,10 +1,10 @@ <div class="row"> <div class="col-xs-12 col-sm-6 col-md-12"> <h2 class="h4">About</h2> - <p>{{ site.project.description }}. Feel free to contribute or contact me.</p> + <p>{{ site.settings.project.description }}. Feel free to contribute or contact me.</p> <div class="list-group wide-enough"> <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> + <a class="list-group-item" href="mailto:{{ site.settings.author.email }}"><span class="glyphicon glyphicon-envelope"></span> {{ site.settings.author.email }}</a> </div> </div> <div class="col-xs-12 col-sm-6 col-md-12"> |