Skip to content

Commit

Permalink
Merge pull request #4 from imlayered/main
Browse files Browse the repository at this point in the history
Add Mastodon to connections
  • Loading branch information
prplwtf authored Oct 15, 2024
2 parents ef58313 + 5eaffbd commit 3337446
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
3 changes: 2 additions & 1 deletion configuration/Configuration.example.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,5 @@ Information:
Connections:
GitHub: prplwtf
YouTube:
Twitter: prplwtf
Twitter: prplwtf
Mastodon: [email protected]
6 changes: 6 additions & 0 deletions src/components/sections/RootSection.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,12 @@ function RootSection() {
window.Configuration.Connections.Twitter,
Boolean(window.Configuration.Connections.Twitter || false)
)}
${ConnectionElement(
"mastodon",
`mastodon.social/@${window.Configuration.Connections.Mastodon}`,
window.Configuration.Connections.Mastodon,
Boolean(window.Configuration.Connections.Mastodon || false)
)}
</div>
${FooterElement()}
`
Expand Down

0 comments on commit 3337446

Please sign in to comment.