improve fediverse integration
All checks were successful
/ build (push) Successful in 25s
/ reuse-compliance (push) Successful in 10s
/ build (pull_request) Successful in 25s
/ reuse-compliance (pull_request) Successful in 9s

This commit is contained in:
Ncam Gnrvngu 2025-06-14 17:47:04 +02:00
parent e241637069
commit e1d046ad6d
Signed by: NcamGnrvngu
GPG key ID: BBF21CBE5628BA99
3 changed files with 10 additions and 1 deletions

View file

@ -26,5 +26,7 @@ highlight_theme = "Catpuccin Mocha"
[extra]
# Put all your custom variables here
mastodon_url = "https://mstdn.social/@Ncamgnrvngu"
mastodon_url = "https://nerdculture.de/@NcamGnrvngu"
mastodon_user = "@NcamGnrvngu@nerdculture.de"
matrix_user = "@ncamgnrvngu:matrix.org"
bookwyrm_url = "https://bookrastinating.com/user/NcamGnrvngu"

View file

@ -36,6 +36,9 @@
{% if config.extra.matrix_user %}
<a href="https://matrix.to/#/{{ config.extra.matrix_user }}">Matrix</a>
{% endif %}
{% if config.extra.bookwyrm_url %}
<a href="{{ config.extra.bookwyrm_url }}">Bookwyrm</a>
{% endif %}
<p id="license">
Except where otherwise noted, the content on this site is licensed under <a href="https://creativecommons.org/licenses/by-nc-sa/4.0/">CC BY-NC-SA 4.0</a>
</p>

View file

@ -13,4 +13,8 @@
<div id="page_content">
{{ page.content | safe }}
</div>
{% if config.extra.mastodon_user %}
<meta name="fediverse:creator" content="{{ config.extra.mastodon_user}}">
{% endif %}
{% endblock content %}