diff options
author | Ekaitz Zarraga <ekaitz@elenq.tech> | 2024-11-10 20:28:41 +0100 |
---|---|---|
committer | Ekaitz Zarraga <ekaitz@elenq.tech> | 2024-11-10 22:14:58 +0100 |
commit | 09a36278fc6a187a996fbd05899d23f282dc1c90 (patch) | |
tree | 2f71ae8572f14fa786b1cd0092ae870fedb129ae /themes/elenq | |
parent | 3354bbd585306d5d6b268f7e805bc600b71c526e (diff) |
theme: elenq: add support for fediverse credit
Diffstat (limited to 'themes/elenq')
-rw-r--r-- | themes/elenq/templates/base.html | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/themes/elenq/templates/base.html b/themes/elenq/templates/base.html index e5bba51..a319067 100644 --- a/themes/elenq/templates/base.html +++ b/themes/elenq/templates/base.html @@ -5,6 +5,10 @@ <title>{% block title %}{{ SITENAME }}{% endblock title %}</title> <meta name="viewport" content="width=device-width, initial-scale=1"> <meta charset="utf-8" /> + {% if MASTODON_HANDLE %} + <meta name="fediverse:creator" content="{{ MASTODON_HANDLE }}" /> + {% endif %} + {% if FEED_ALL_ATOM %} <link href="{{ FEED_DOMAIN }}/{% if FEED_ALL_ATOM_URL %}{{ FEED_ALL_ATOM_URL }}{% else %}{{ FEED_ALL_ATOM }}{% endif %}" type="application/atom+xml" rel="alternate" title="{{ SITENAME }} Full Atom Feed" /> {% endif %} |