aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2022-03-23 15:38:55 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2022-03-23 15:39:10 +0300
commite6e8dca92523fe4d318a250dd2de9d5854885aed (patch)
treef9a72673027ac878293427b7a9e78d1e1cda8797
parentbump jekyll-theme (diff)
downloadegor-tensin.github.io-e6e8dca92523fe4d318a250dd2de9d5854885aed.tar.gz
egor-tensin.github.io-e6e8dca92523fe4d318a250dd2de9d5854885aed.zip
index.html: from <a> to <div> for disabled items
-rw-r--r--index.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/index.html b/index.html
index 8029f17..abc2062 100644
--- a/index.html
+++ b/index.html
@@ -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>