diff options
author | xAlpharax <42233094+xAlpharax@users.noreply.github.com> | 2023-11-12 23:46:10 +0200 |
---|---|---|
committer | xAlpharax <42233094+xAlpharax@users.noreply.github.com> | 2023-11-12 23:47:29 +0200 |
commit | bf0404ca8f76c0009891c1816b49f9ce8374b416 (patch) | |
tree | 8738187df2b68b9c9661f678328c2986ef5e34df /templates/base.html | |
parent | f9b510161cf06962b16a051edc567ae6f33e52e2 (diff) |
RSS implemented + autodiscovery and sitemaps
Changes to be committed:
modified: config.toml
modified: templates/base.html
Diffstat (limited to 'templates/base.html')
-rw-r--r-- | templates/base.html | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/templates/base.html b/templates/base.html index 59eaaae..a85bca1 100644 --- a/templates/base.html +++ b/templates/base.html @@ -4,6 +4,9 @@ <head> <meta charset="utf-8"> <title>MyBlog</title> + {% block rss %} + <link rel="alternate" type="application/atom+xml" title="RSS" href="{{ get_url(path="atom.xml", trailing_slash=false) }}"> + {% endblock %} </head> <body> |