Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/leonardofaria/bento.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLeonardo Faria <leonardofaria@gmail.com>2020-11-12 10:24:14 +0300
committerLeonardo Faria <leonardofaria@gmail.com>2020-11-12 10:24:14 +0300
commit4e1ff4dffec8e895f562cd8c5c26cdfeefcd5939 (patch)
tree4a4cb96e273bb500c74bdcbbc7bd1be6c65bbe68
parentb6beecb76dec25c067632e21f9d918049a9086ba (diff)
Fix aria-hidden attr
-rw-r--r--layouts/_default/single.html2
-rw-r--r--layouts/partials/intro.html2
2 files changed, 2 insertions, 2 deletions
diff --git a/layouts/_default/single.html b/layouts/_default/single.html
index b68facf..6765bd5 100644
--- a/layouts/_default/single.html
+++ b/layouts/_default/single.html
@@ -18,7 +18,7 @@
<h1 class="leading-9 text-center">
<a href="{{.Permalink}}" class="no-underline inline-block text-black relative">
- <div class="dots"></div>
+ <div class="dots" aria-hidden="true"></div>
{{ .Title }}
</a>
</h1>
diff --git a/layouts/partials/intro.html b/layouts/partials/intro.html
index b024ba0..3795554 100644
--- a/layouts/partials/intro.html
+++ b/layouts/partials/intro.html
@@ -1,7 +1,7 @@
{{ if .Site.Params.intro }}
<div class="intro">
<h1 class="relative">
- <div class="dots" aria-hidden="aria-hidden"></div>
+ <div class="dots" aria-hidden="true"></div>
{{ .Site.Params.headline }}
</h1>
<p>{{ .Site.Params.description }}</p>