diff --git a/README.md b/README.md
index 1c9c295..63199d1 100644
--- a/README.md
+++ b/README.md
@@ -34,6 +34,7 @@ For more information about this fork and the differences to the original theme,
- [Features](#features)
- [OpenGraph](#opengraph)
- [Comments](#comments)
+ - [Mastodon](#mastodon)
- [Configuration](#configuration)
- [Only show the post's description](#only-show-the-posts-description)
- [Colors](#colors)
@@ -173,6 +174,17 @@ See the [utterances] documentation regarding these options:
- [`label`](https://utteranc.es/#heading-mapping)
- [`theme`](https://utteranc.es/#heading-theme)
+### Mastodon
+
+To add Mastodon support, add the following to your `config.toml`:
+
+```toml
+[extra]
+mastodon_url = "https://hachyderm.io/@opeik"
+```
+
+This will add headers required for [verification](https://docs.joinmastodon.org/user/profile/#verification).
+
## Configuration
### Only show the post's description
diff --git a/templates/index.html b/templates/index.html
index 8b67c98..22f7c4c 100644
--- a/templates/index.html
+++ b/templates/index.html
@@ -26,6 +26,10 @@
{% endif -%}
+ {%- if config.extra.mastodon_url %}
+ {%- block mastodon %}{{ head_macros::mastodon(config=config) }}{% endblock mastodon -%}
+ {% endif -%}
+
{%- block extra_head %}
{% endblock extra_head -%}
diff --git a/templates/macros/head.html b/templates/macros/head.html
index d882e0c..5451756 100644
--- a/templates/macros/head.html
+++ b/templates/macros/head.html
@@ -92,3 +92,7 @@
{% endmacro open_graph %}
+
+{% macro mastodon(config) %}
+
+{% endmacro mastodon %}