Fixes rel attribute
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
This commit is contained in:
@@ -14,9 +14,9 @@ highlight_theme = "ayu-dark"
|
||||
[extra]
|
||||
theme = "dark"
|
||||
socials = [
|
||||
{ name = "mastodon", rel = "me", url = "https://hachyderm.io/web/@eightball", icon = "mastodon" },
|
||||
{ name = "github", rel = {}, url = "https://github.com/jbrechtel/", icon = "github" },
|
||||
{ name = "twitter", rel = {}, url = "https://twitter.com/8brechtel", icon = "twitter" },
|
||||
{ name = "mastodon", url = "https://hachyderm.io/web/@eightball", icon = "mastodon" },
|
||||
{ name = "github", url = "https://github.com/jbrechtel/", icon = "github" },
|
||||
{ name = "twitter", url = "https://twitter.com/8brechtel", icon = "twitter" },
|
||||
]
|
||||
|
||||
menu = [
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
<div class="main">
|
||||
<div class="socials">
|
||||
{% for social in config.extra.socials %}
|
||||
<a href="{{ social.url }}" class="social">
|
||||
<img rel={{ social.rel }} alt={{ social.name }} src="/social_icons/{{ social.icon }}.svg">
|
||||
<a href="{{ social.url }}" class="social" rel="me">
|
||||
<img alt={{ social.name }} src="/social_icons/{{ social.icon }}.svg">
|
||||
</a>
|
||||
{% endfor %}
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user