diff options
Diffstat (limited to 'zola')
| -rw-r--r-- | zola/config.toml | 6 | ||||
| -rw-r--r-- | zola/templates/base.html | 1 |
2 files changed, 5 insertions, 2 deletions
diff --git a/zola/config.toml b/zola/config.toml index 27d9191..fc5554a 100644 --- a/zola/config.toml +++ b/zola/config.toml @@ -1,5 +1,8 @@ # The URL the site will be built for base_url = "https://ndato.com" +title = "ndato.com" +description = "Nicolás Dato's personal website" +author = "Nicolás Dato" output_dir = "ndato.com" @@ -13,9 +16,8 @@ default_language = "en" minify_html = true -author = "Nicolás Dato" - generate_feeds = true +feed_filenames = ["rss.xml", "atom.xml"] taxonomies = [ { name = "Tags", feed = true}, diff --git a/zola/templates/base.html b/zola/templates/base.html index 085a1fc..c186395 100644 --- a/zola/templates/base.html +++ b/zola/templates/base.html @@ -5,6 +5,7 @@ <meta charset="utf-8" /> <link rel="icon" type="image/x-icon" sizes="256x256" href="/favicon.svg"> <link rel="stylesheet" href="/style.css" type="text/css"> + <link rel="alternate" type="application/rss+xml" href="/rss.xml" title="RSS Feed"> <title>ndato - {% block title %}{% endblock %}</title> </head> <body> |