Fix button not allowed inside anchor in footer - HTML validator complaint (#551)

Move attributes to anchor and remove not required span (which was used
place of a button which was against HTML spec).
This commit is contained in:
Daniel F. Dickinson 2021-09-05 02:24:00 -04:00 committed by GitHub
parent d76bc91ed0
commit 8456ad83ae
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -14,12 +14,10 @@
{{- end }}
{{- if (not .Site.Params.disableScrollToTop) }}
<a href="#top" aria-label="go to top" title="Go to Top (Alt + G)">
<button class="top-link" id="top-link" type="button" accesskey="g">
<a href="#top" aria-label="go to top" title="Go to Top (Alt + G)" class="top-link" id="top-link" accesskey="g">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 6" fill="currentColor">
<path d="M12 6H0l6-6z" />
</svg>
</button>
</a>
{{- end }}