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

github.com/EmielH/hallo-hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLouise de Beaufort <github@ltch.fr>2019-04-11 21:22:14 +0300
committerEmiel Hollander <EmielH@users.noreply.github.com>2019-04-11 21:22:14 +0300
commitf94296cbce8626fc781e1a13e795f5458ce61189 (patch)
tree64bebcb4eda0991f5fdb0f62bc3685c260a2945e /layouts
parentccb8ded755eb67fa2eab5f249f3e12ccf9b92a1b (diff)
Add rel="me" attribute to links (#11)
Based on this article [The Real Deal About rel="me"][1] [1]: https://wiki.zegnat.net/media/the-real-deal-about-rel-me.html
Diffstat (limited to 'layouts')
-rw-r--r--layouts/index.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/layouts/index.html b/layouts/index.html
index d14a097..45bae03 100644
--- a/layouts/index.html
+++ b/layouts/index.html
@@ -15,7 +15,7 @@
<div class="links">
{{- range .Site.Params.links -}}
- <a href="{{ .url }}" title="{{ .title }}">
+ <a rel="me" href="{{ .url }}" title="{{ .title }}">
<span class="{{ .iconset | default "fab" }} fa-{{ .icon }}"></span>
</a>
{{- end -}}
@@ -23,4 +23,4 @@
</div>
</main>
-{{ end }} \ No newline at end of file
+{{ end }}