summaryrefslogtreecommitdiff
path: root/config/config.example.toml
diff options
context:
space:
mode:
authorRaphael Kabo <raphaelkabo@hey.com>2023-10-09 10:48:10 +0100
committerRaphael Kabo <raphaelkabo@hey.com>2023-10-09 10:48:10 +0100
commit8b33335584afbac74388c4ed16ff1ff7a04e3588 (patch)
treebc35e2e96695a56780139856dfd1f5267546193f /config/config.example.toml
parent8a1f07b11e8e18243c058149ac58ece7766b7ef3 (diff)
Add static page config and handler
Diffstat (limited to 'config/config.example.toml')
-rw-r--r--config/config.example.toml15
1 files changed, 15 insertions, 0 deletions
diff --git a/config/config.example.toml b/config/config.example.toml
index 1ffbeb7..8f5a09d 100644
--- a/config/config.example.toml
+++ b/config/config.example.toml
@@ -31,3 +31,18 @@ smtp_password = ""
[sendgrid]
api_key = ""
+
+# Links to static pages (for example a privacy policy) or an external community page,
+# which will be displayed in the footer.
+# If paths begin with a slash, they are treated as internal and will open the specified
+# Markdown or text file. If they are absolute (begin with https://), they will simply
+# link to the specified URL.
+
+# [[static_pages]]
+# title = "Privacy Policy"
+# path = "/privacy"
+# filename = "privacy-policy.md"
+
+# [[static_pages]]
+# title = "External Link"
+# path = "https://example.com"