This commit is contained in:
samaradel
2024-03-04 17:16:31 +02:00
parent dd79bac277
commit 2867c4f10d
2 changed files with 13 additions and 8 deletions

View File

@@ -3,15 +3,15 @@ base_url = "https://www3.threefold.io"
# Change this to your own URL! Please note this variable **must** be uncommented . # Change this to your own URL! Please note this variable **must** be uncommented .
title = "ThreeFold" title = "ThreeFold"
description="Our global digital backbone" description = "Our global digital backbone"
# When set to "true", a feed is automatically generated. # When set to "true", a feed is automatically generated.
# generate_feed = true generate_feed = true
# The filename to use for the feed. Used as the template filename, too. # The filename to use for the feed. Used as the template filename, too.
# Defaults to "atom.xml", which has a built-in template that renders an Atom 1.0 feed. # Defaults to "atom.xml", which has a built-in template that renders an Atom 1.0 feed.
# There is also a built-in template "rss.xml" that renders an RSS 2.0 feed. # There is also a built-in template "rss.xml" that renders an RSS 2.0 feed.
# feed_filename = "index.xml" feed_filename = "atom.xml"
# The number of articles to include in the feed. All items are included if # The number of articles to include in the feed. All items are included if
# this limit is not set (the default). # this limit is not set (the default).
@@ -39,7 +39,7 @@ render_emoji = false
# Whether external links are to be opened in a new tab # Whether external links are to be opened in a new tab
# If this is true, a `rel="noopener"` will always automatically be added for security reasons # If this is true, a `rel="noopener"` will always automatically be added for security reasons
external_links_target_blank = false # external_links_target_blank = false
# Whether to set rel="nofollow" for all external links # Whether to set rel="nofollow" for all external links
external_links_no_follow = true external_links_no_follow = true
@@ -95,7 +95,3 @@ paginate_path = "people/memberships"
[extra] [extra]
# Put all your custom variables here # Put all your custom variables here

View File

@@ -173,4 +173,13 @@
var ml_account = ml('accounts', '1778010', 'x2d3d9f8n1', 'load'); var ml_account = ml('accounts', '1778010', 'x2d3d9f8n1', 'load');
</script> </script>
<!-- End MailerLite Universal --> <!-- End MailerLite Universal -->
<!-- RSS feed -->
{% block rss %}
<link
rel="alternate"
type="application/rss+xml"
title="RSS"
href="{{ get_url(path='atom.xml', trailing_slash=false) }}"
>
{% endblock %}
</head> </head>