diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2022-03-23 16:39:52 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2022-03-23 16:39:52 +0300 |
commit | fed624f29af452e1969a04fa6db268bb0e93ff01 (patch) | |
tree | e27e715d608b53ccf99c675b0cd702e04ae8b31d /index.html | |
parent | switch from flexbox to Bootstrap grid (diff) | |
download | egor-tensin.github.io-fed624f29af452e1969a04fa6db268bb0e93ff01.tar.gz egor-tensin.github.io-fed624f29af452e1969a04fa6db268bb0e93ff01.zip |
tweak link descriptions
Diffstat (limited to 'index.html')
-rw-r--r-- | index.html | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -6,13 +6,14 @@ main: text: cv - url: https://egort.name/ text: egort.name + description: My other place on the web projects: - url: /blog/ name: blog - description: Random posts and notes + description: Random notes - url: /jekyll-theme/ name: jekyll-theme - description: My Jekyll theme + description: This Jekyll theme - url: /sorting-algorithms/ name: sorting-algorithms description: Getting the hang out of (sorting) algorithms @@ -61,6 +62,9 @@ projects: {% for link in page.main %} <a class="list-group-item" href="{{ link.url }}"> <h4 class="list-group-item-heading">{{ link.text }}</h4> + {% if link.description %} + <p class="list-group-item-text">{{ link.description }}</p> + {% endif %} </a> {% endfor %} {% endif %} |