diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2022-03-23 15:38:55 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2022-03-23 15:39:10 +0300 |
commit | e6e8dca92523fe4d318a250dd2de9d5854885aed (patch) | |
tree | f9a72673027ac878293427b7a9e78d1e1cda8797 /index.html | |
parent | bump jekyll-theme (diff) | |
download | egor-tensin.github.io-e6e8dca92523fe4d318a250dd2de9d5854885aed.tar.gz egor-tensin.github.io-e6e8dca92523fe4d318a250dd2de9d5854885aed.zip |
index.html: from <a> to <div> for disabled items
Diffstat (limited to 'index.html')
-rw-r--r-- | index.html | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -27,9 +27,9 @@ projects: {% if page.projects %} <div class="list-group wide-enough"> - <a class="list-group-item disabled" href="#"> + <div class="list-group-item disabled"> <h4 class="list-group-item-heading">projects</h4> - </a> + </div> {% for project in page.projects %} <a class="list-group-item" href="{{ project.url }}"> <h4 class="list-group-item-heading">{{ project.name }}</h4> @@ -42,9 +42,9 @@ projects: {% endif %} <div class="list-group wide-enough"> - <a class="list-group-item disabled" href="#"> + <div class="list-group-item disabled"> <h4 class="list-group-item-heading">links</h4> - </a> + </div> <a class="list-group-item" href="mailto:{{ site.settings.author.email }}"> <h4 class="list-group-item-heading">{{ site.settings.author.email | downcase }}</h4> </a> |