-
-
Notifications
You must be signed in to change notification settings - Fork 47
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
✨ feat: add fediverse creator metadata support (#409)
Add `fediverse_creator` variable to highlight author's fediverse profile in Mastodon link previews. Co-authored-by: Ariel Richtman <[email protected]> Co-authored-by: welpo <[email protected]>
- Loading branch information
1 parent
3fddb1f
commit 886aa59
Showing
6 changed files
with
53 additions
and
0 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 |
---|---|---|
|
@@ -267,6 +267,11 @@ socials = [ | |
{ name = "spotify", url = "https://open.spotify.com/artist/5Hv2bYBhMp1lUHFri06xkE", icon = "spotify" }, | ||
] | ||
|
||
# Fediverse profile. | ||
# Adds metadata to feature the author's profile in Mastodon link previews. | ||
# Example: for @[email protected], use: | ||
# fediverse_creator = { handle = "username", domain = "example.com" } | ||
|
||
# Extra menu to show on the footer, below socials section. | ||
footer_menu = [ | ||
{url = "about", name = "about", trailing_slash = true}, | ||
|
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 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 |
---|---|---|
|
@@ -224,6 +224,11 @@ encode_plaintext_email = true # Setting is ignored if email is already encoded. | |
# { name = "spotify", url = "https://open.spotify.com/artist/5Hv2bYBhMp1lUHFri06xkE", icon = "spotify" }, | ||
# ] | ||
|
||
# Fediverse profile. | ||
# Adds metadata to feature the author's profile in Mastodon link previews. | ||
# Example: for @[email protected], use: | ||
# fediverse_creator = { handle = "username", domain = "example.com" } | ||
|
||
# Extra menu to show on the footer, below socials section. | ||
# footer_menu = [ | ||
# {url = "about", name = "about", trailing_slash = true}, | ||
|