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

github.com/hossainemruz/toha.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakub Cabak <jakubcabak@gmail.com>2021-04-25 14:15:22 +0300
committerGitHub <noreply@github.com>2021-04-25 14:15:22 +0300
commit19c2edb08d2c5e86b07d2d9bf5b4713735f85528 (patch)
treeba6e243cf8a297bc765121373710b6b612186c92 /layouts/partials/sections/about.html
parent6996894ec1025f8c23c67340fef73a4b1e906cd6 (diff)
Accessibility and SEO improvements (#296)
Co-authored-by: JCabak <kubaczento@gmail.com>
Diffstat (limited to 'layouts/partials/sections/about.html')
-rw-r--r--layouts/partials/sections/about.html10
1 files changed, 5 insertions, 5 deletions
diff --git a/layouts/partials/sections/about.html b/layouts/partials/sections/about.html
index 07ebda3..2999b99 100644
--- a/layouts/partials/sections/about.html
+++ b/layouts/partials/sections/about.html
@@ -17,7 +17,7 @@
<h5 class="p-1">
{{ .designation }}
{{ if .company }}
- {{ i18n "at"}} <a href="{{ .company.url }}" target="_blank">{{ .company.name }}</a>
+ {{ i18n "at"}} <a href="{{ .company.url }}" title="{{ .company.name }}" target="_blank" rel="noopener">{{ .company.name }}</a>
{{ end }}
</h5>
{{ end }}
@@ -29,18 +29,18 @@
{{ range .socialLinks }}
<li>
{{ if eq .name "Email" }}
- <a href="mailto:{{ .url }}" target="_blank"><i class="{{ .icon }}"></i></a>
+ <a href="mailto:{{ .url }}" title="{{ .name }}" target="_blank" rel="noopener"><i class="{{ .icon }}"></i></a>
{{ else if eq .name "Phone" }}
- <a href="tel:{{ .url }}" target="_blank"><i class="{{ .icon }}"></i></a>
+ <a href="tel:{{ .url }}" title="{{ .name }}" target="_blank" rel="noopener"><i class="{{ .icon }}"></i></a>
{{ else }}
- <a href="{{ .url }}" target="_blank"><i class="{{ .icon }}"></i></a>
+ <a href="{{ .url }}" title="{{ .name }}" target="_blank" rel="noopener"><i class="{{ .icon }}"></i></a>
{{ end }}
</li>
{{ end }}
</ul>
</div>
{{ if .resume }}
- <a href="{{ .resume | relURL }}" target="#"
+ <a href="{{ .resume | relURL }}" title="{{ i18n "resume"}}" target="#"
><button class="btn btn-dark">{{ i18n "resume"}}</button></a
>
{{ end }}