diff options
-rw-r--r-- | _config.yml | 2 | ||||
-rw-r--r-- | index.html | 10 |
2 files changed, 6 insertions, 6 deletions
diff --git a/_config.yml b/_config.yml index da83f33..82a14e0 100644 --- a/_config.yml +++ b/_config.yml @@ -14,7 +14,7 @@ plugins: # jekyll-github-metadata repository: egor-tensin/egor-tensin.github.io # jekyll-remote-theme -remote_theme: egor-tensin/jekyll-theme@f72fe1f68a8a471c93b5d96ca02515d00a2ec111 +remote_theme: egor-tensin/jekyll-theme@494279e2336fda646656d2ca9c0585197e77c4f1 # Theme settings settings: @@ -1,9 +1,7 @@ --- title: Main page layout: plain -custom_css: - - index.css -links: +main: - url: /blog/ text: Blog glyph: folder-open @@ -20,6 +18,8 @@ projects: name: Sorting algorithms - url: /wireguard-config/ name: WireGuard configuration +links: + - {rel: stylesheet, href: assets/css/index.css} --- <h1>{{ site.settings.author.name }}</h1> <hr/> @@ -27,8 +27,8 @@ projects: <p>Hello! I'm a software engineer, and here's some of my stuff.</p> <div class="list-group wide-enough"> - {% if page.links %} - {% for link in page.links %} + {% if page.main %} + {% for link in page.main %} <a class="list-group-item" href="{{ link.url }}"><span class="glyphicon glyphicon-{{ link.glyph }}"></span> {{ link.text }}</a> {% endfor %} {% endif %} |