You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: config.toml
+5-3Lines changed: 5 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -33,12 +33,14 @@ minify_html = true
33
33
ignored_content = []
34
34
35
35
# When set to "true", a feed is automatically generated.
36
-
generate_feed = false
36
+
generate_feeds = true
37
37
38
38
# The filename to use for the feed. Used as the template filename, too.
39
39
# Defaults to "atom.xml", which has a built-in template that renders an Atom 1.0 feed.
40
40
# There is also a built-in template "rss.xml" that renders an RSS 2.0 feed.
41
-
feed_filename = "atom.xml"
41
+
feed_filenames = ["atom.xml"]
42
+
43
+
author = "TeaDrinkingProgrammer"
42
44
43
45
# The number of articles to include in the feed. All items are included if
44
46
# this limit is not set (the default).
@@ -212,7 +214,7 @@ outdate_alert_days = 183 # How many days will a post be outdated by
212
214
outdate_alert_text_before = "This article was last updated "
213
215
outdate_alert_text_after = " days ago and may be out of date."
214
216
215
-
call_to_action_footer_text = "Did you like this blogpost? Then consider subscribing via email or RSS. The email newsletter uses <a href=\"https://buttondown.email/refer/TDP\" target=\"_blank\"> Buttondown</a>, which does not track you."
217
+
call_to_action_footer_text = "Did you like this blogpost? Then consider subscribing via email or Atom feed. The email newsletter uses <a href=\"https://buttondown.email/refer/TDP\" target=\"_blank\"> Buttondown</a>, which does not track you."
Copy file name to clipboardExpand all lines: content/_index.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -16,4 +16,4 @@ On the projects page, you can see some of the projects I have made!
16
16
17
17
This website is made with Zola, Rust and the Selene theme. You can read more about how I made this website on the [blog-post](@/blog/how-to-make-your-blog-blazingly-fast.md).
18
18
19
-
If you want, you can subscribe using [RSS](/blog/atom.xml) or [email](https://buttondown.email/TDP).
19
+
If you want, you can subscribe using [Atom feed](atom.xml) or [email](https://buttondown.email/TDP).
{% if page.extra.call_to_action_footer_text is defined %}{% set call_to_action_footer_text = page.extra.call_to_action_footer_text %}{% else %}{% set call_to_action_footer_text = config.extra.call_to_action_footer_text %}{% endif %}
0 commit comments