lxndrblz/anatole

In v1.11.0 social profile links are missing the "rel=me" attribute

Closed this issue · 2 comments

Describe the bug
Until v1.10.0 social profile links had the "rel=me" attribute:
image

In v1.11.0 this attribute is missing:
image

This attribute is important for verification, e.g. Mastodon.

To Reproduce
Steps to reproduce the behavior:

  1. Render the website using v1.10.0: attribute is there
  2. Render the same website using v1.11.0: attribute is missing

Expected behavior
I would expect the attribute "rel=me" to be there.

Screenshots
See description.

Desktop

  • OS: all
  • Browser: all
  • Version of the Theme: v1.11.0
  • Version of Hugo: hugo v0.106.0-e08ce30fe4779e7d8a8395d7021314b915648cb4 windows/amd64 BuildDate=2022-11-17T18:33:40Z VendorInfo=gohugoio

Smartphone

  • Device: all
  • OS: all
  • Browser: all
  • Version of the Theme: v1.11.0
  • Version of Hugo: hugo v0.106.0-e08ce30fe4779e7d8a8395d7021314b915648cb4 windows/amd64 BuildDate=2022-11-17T18:33:40Z VendorInfo=gohugoio

Additional context

img.sidebar__introduction-profileimage {
    filter: grayscale(100%);
}

img.sidebar__introduction-profileimage:hover {
    filter: grayscale(0);
}
  • This is the only custom CSS on keep-on-rolling.ch:
img.sidebar__introduction-profileimage {
    border-radius: 0;
}

body.theme--light img.sidebar__introduction-profileimage {
    background: url(/images/logo-black.png) no-repeat;
}

body.theme--dark img.sidebar__introduction-profileimage {
    background: url(/images/logo-white.png) no-repeat;
}

@McPringle I have taken care of this bug yesterday in PR #394. I will soon be creating a new release.