-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
theme(feat): social media follow links
documentation will follow at https://github.com/theNewDynamic/gohugo-theme-ananke/wiki/Social-media-network-setup Signed-off-by: Patrick Kollitsch <[email protected]>
- Loading branch information
1 parent
c672ad4
commit 4f3e709
Showing
10 changed files
with
113 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -38,3 +38,4 @@ resources/_gen/ | |
.wireit | ||
.favorites.json | ||
*.code-workspace | ||
config/gargulus |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
[ananke.social] | ||
icon_path = "ananke/socials/%s.svg" | ||
|
||
[ananke.social.follow] | ||
new_window_icon = false # show a little "opens in new window" icon next to the link | ||
networks = [ | ||
"facebook", | ||
"bluesky", | ||
"linkedin" | ||
] | ||
|
||
# social media network setups | ||
[[ananke.social.networks]] | ||
slug = "facebook" | ||
label = "Facebook" | ||
profile = "https://www.facebook.com/%s" | ||
icon = "facebook" # font awesome brand icon name | ||
|
||
[[ananke.social.networks]] | ||
slug = "bluesky" | ||
label = "Bluesky" | ||
profile = "https://bsky.app/profile/%s" | ||
icon = "bluesky" # font awesome brand icon name | ||
|
||
[[ananke.social.networks]] | ||
slug = "linkedin" | ||
label = "LinkedIn" | ||
profile = "http://linkedin.com/in/%s" | ||
icon = "linkedin" # font awesome brand icon name | ||
|
||
# optional config parameters | ||
# [[ananke.social.networks]] | ||
# rel = "noopener" # set to noopener by default, could contain `me` and other values |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
{{- $context := . -}} | ||
|
||
{{- $config := site.Params.ananke.social -}} | ||
{{- $networks := $config.follow.networks -}} | ||
{{- $setups := (collections.Where $config.networks "slug" "in" $networks) -}} | ||
{{/* This here is an ugly workaround for GoHugo's missing sortByArray feature. | ||
Let's cache it so it does not take away too much time. | ||
PS: It's also a couple of years old, so maybe there is a better solution by now. */}} | ||
{{- $setups = partials.IncludeCached "func/sortNetworks.html" (dict "networks" $networks "setups" $setups) "social-follow" -}} | ||
|
||
<div class="ananke-socials"> | ||
{{- range $setups -}} | ||
{{- $setup := . -}} | ||
{{- $network := $setup.slug -}} | ||
{{- $profile := index $config $network -}} | ||
{{- $rel := $setup.rel | default "noopener" -}} | ||
{{- $link := (printf $setup.profile $profile.username) -}} | ||
{{- $languageDirection := cond (eq $.Site.Language.LanguageDirection "rtl") "ml1" "mr1" -}} | ||
<a href="{{ $link }}" target="_blank" rel="{{ $rel }}" | ||
class="{{ .name }} ananke-social-link link-transition stackoverflow link dib z-999 pt3 pt0-l {{ $languageDirection }}" | ||
title="follow on {{ .label }} - Opens in a new window" | ||
aria-label="follow on {{ .label }} - Opens in a new window"> | ||
{{- with .icon -}} | ||
{{- $icon := resources.Get (printf "ananke/socials/%s.svg" .) -}} | ||
{{- with $icon -}} | ||
<span class="icon"> | ||
{{ .Content | safeHTML }} | ||
{{/* @todo indicator for missing or misconfigured icon */}} | ||
</span> | ||
{{- end -}} | ||
{{- else -}} | ||
{{- .label -}} | ||
{{- end -}} | ||
{{- with $config.follow.new_window_icon -}} | ||
{{- partial "new-window-icon.html" . -}} | ||
{{- end -}} | ||
</a> | ||
{{- end -}} | ||
</div> | ||
|
||
{{ define "partials/func/sortNetworks.html" }} | ||
{{- /* | ||
|
||
Sorting a list of social networks defined by the order in `networks`. | ||
Only networks present in both `networks` and `setups` will be included. Items missing from `networks` are ignored. | ||
Use `networks` to setup the order of the networks and which network to enable. | ||
|
||
Usage: {{ $setups = partials.IncludeCached "func/sortNetworks.html" (dict "networks" $networks "setups" $setups) }} | ||
|
||
See also `config/_default/params.toml` > `ananke.social` for details. | ||
|
||
*/ -}} | ||
{{- $networks := .networks -}} | ||
{{- $setups := .setups -}} | ||
{{- $output := collections.Slice -}} | ||
{{- range $networks -}} | ||
{{- $network := . -}} | ||
{{- range $setups -}} | ||
{{- if compare.Eq .slug $network -}} | ||
{{- $output = $output | collections.Append . -}} | ||
{{- end -}} | ||
{{- end -}} | ||
{{- end -}} | ||
{{- return $output -}} | ||
{{- end -}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters