mirror of
https://github.com/foo-dogsquared/website.git
synced 2025-01-31 01:57:54 +00:00
Update Hugo dependencies
This commit is contained in:
parent
ba04bea818
commit
7bca7d9c53
2
go.mod
2
go.mod
@ -4,5 +4,5 @@ go 1.15
|
||||
|
||||
require (
|
||||
github.com/foo-dogsquared/hugo-mod-web-feeds v0.0.3-0.20220613123653-e0bc8e58159d // indirect
|
||||
github.com/foo-dogsquared/hugo-theme-more-contentful v0.6.0 // indirect
|
||||
github.com/foo-dogsquared/hugo-theme-more-contentful v0.6.1-0.20230403050112-c27aab376601 // indirect
|
||||
)
|
||||
|
4
go.sum
4
go.sum
@ -2,7 +2,7 @@ github.com/foo-dogsquared/hugo-mod-simple-icons v0.0.0-20230315231533-b5bff1dac7
|
||||
github.com/foo-dogsquared/hugo-mod-web-feeds v0.0.3-0.20220613123653-e0bc8e58159d h1:IvFDTSoQiK3BsbdJxvXEqjuRxwcYo2dMHgUxGmhdYes=
|
||||
github.com/foo-dogsquared/hugo-mod-web-feeds v0.0.3-0.20220613123653-e0bc8e58159d/go.mod h1:V7UXom6wuFrWj1lBUCXQA3HguwfDhQA+tQNxyRxdClk=
|
||||
github.com/foo-dogsquared/hugo-theme-contentful v1.2.1-0.20220513103455-d83c3f8c6954/go.mod h1:BL7L5CENEhUx+miRRaOZ9SVC92j9MAMztirBWtTpiPc=
|
||||
github.com/foo-dogsquared/hugo-theme-more-contentful v0.6.0 h1:tE3ij5PZjPNhBLaN0vRIxx9R/Lkz+lWetArzQG75HpQ=
|
||||
github.com/foo-dogsquared/hugo-theme-more-contentful v0.6.0/go.mod h1:kmYc1iLbgWYBcVWYPDmAfhwFWaUOXquhOBricKJMUI8=
|
||||
github.com/foo-dogsquared/hugo-theme-more-contentful v0.6.1-0.20230403050112-c27aab376601 h1:n6DOm6q78cMS3VgnIo24g2xkKpGITeLrBOhXJTUtimI=
|
||||
github.com/foo-dogsquared/hugo-theme-more-contentful v0.6.1-0.20230403050112-c27aab376601/go.mod h1:kmYc1iLbgWYBcVWYPDmAfhwFWaUOXquhOBricKJMUI8=
|
||||
github.com/refactoringui/heroicons v2.0.12+incompatible/go.mod h1:82HsLWQga7MkEl5aK8TctxPPIBlXrsyWcVTB57uipuk=
|
||||
github.com/simple-icons/simple-icons v0.0.0-20230315131209-aa70b1e830e9/go.mod h1:oOgUUt8yVYOso/wEBi2ojfZP2MU/xxiNccIpaE+jCvE=
|
||||
|
@ -25,7 +25,7 @@
|
||||
<li>
|
||||
<a {{ if $useImage }}class="site__social-icon"{{ end }} rel="me" href="{{ .url | absLangURL }}" aria-label="{{ with .name }}{{ . }}{{ else }}{{ .id }}{{ end }}">
|
||||
{{- if $useImage }}
|
||||
{{- partial "components/icon.html" (dict "id" .id "output" "icons/brand/%s.svg" "template" "templates/simple-icon.svg") }}
|
||||
{{- partial "components/simple-icon.html" (dict "id" .id) }}
|
||||
{{- else }}
|
||||
{{- .name }}
|
||||
{{- end }}
|
||||
@ -91,7 +91,7 @@
|
||||
fullscreenButton.ariaLabel = "{{ T "fullscreenButtonAriaLabel" }}";
|
||||
fullscreenButton.title = "{{ T "fullscreenButtonLabel" }}";
|
||||
fullscreenButton.ariaDescription = "{{ T "fullscreenButtonDescription" }}";
|
||||
fullscreenButton.innerHTML = "{{ partial "components/heroicon.html" "arrows-pointing-out" }}";
|
||||
fullscreenButton.innerHTML = "{{ partial "components/heroicon.html" (dict "id" "arrows-pointing-out") }}";
|
||||
|
||||
fullscreenButton.addEventListener("click", (event) => {
|
||||
const { target } = event;
|
||||
@ -108,7 +108,7 @@
|
||||
copyButton.ariaLabel = "{{ T "copyButtonAriaLabel" }}";
|
||||
copyButton.title = "{{ T "copyButtonLabel" }}";
|
||||
copyButton.ariaDescription = "{{ T "copyButtonDescription" }}";
|
||||
copyButton.innerHTML = "{{ partial "components/heroicon.html" "clipboard" }}";
|
||||
copyButton.innerHTML = "{{ partial "components/heroicon.html" (dict "id" "clipboard") }}";
|
||||
|
||||
copyButton.addEventListener("click", (event) => {
|
||||
const { target } = event;
|
||||
|
Loading…
Reference in New Issue
Block a user