aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/index.html
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2022-03-22 12:54:58 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2022-03-22 12:54:58 +0300
commitf7fcdbff0ccb493edead75bfb6242e9ec87b213c (patch)
treeceafe9377c960345c36973550220e3c97f55ef1e /index.html
parentcss: misc.css -> index.css (diff)
downloadegor-tensin.github.io-f7fcdbff0ccb493edead75bfb6242e9ec87b213c.tar.gz
egor-tensin.github.io-f7fcdbff0ccb493edead75bfb6242e9ec87b213c.zip
bump jekyll-themeold_design
Diffstat (limited to '')
-rw-r--r--index.html10
1 files changed, 5 insertions, 5 deletions
diff --git a/index.html b/index.html
index 99d6fe5..3d48b58 100644
--- a/index.html
+++ b/index.html
@@ -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>&nbsp;{{ link.text }}</a>
{% endfor %}
{% endif %}