diff options
| author | Nicolas Dato <nicolas.dato@gmail.com> | 2025-12-05 07:57:05 -0300 |
|---|---|---|
| committer | Nicolas Dato <nicolas.dato@gmail.com> | 2025-12-05 07:57:05 -0300 |
| commit | 76910c48beb862e3628a6bf8780dbab3a1420dbf (patch) | |
| tree | bbb7fd7fff5c8c02078e41c566b948355f554857 | |
| parent | a2b6126a8c1278bd69ac27955242d3f449a2b469 (diff) | |
| download | ndato.com-76910c48beb862e3628a6bf8780dbab3a1420dbf.tar.gz | |
improving rss feed
| -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> |