Skip to content
Snippets Groups Projects
Verified Commit 84b3e8f0 authored by Nik | Klampfradler's avatar Nik | Klampfradler
Browse files

Source news feeds of project websites

parent 92309a34
No related branches found
No related tags found
No related merge requests found
Pipeline #27661 failed
...@@ -2,6 +2,8 @@ ...@@ -2,6 +2,8 @@
# -*- coding: utf-8 -*- # # -*- coding: utf-8 -*- #
from __future__ import unicode_literals from __future__ import unicode_literals
import sys
from pelican_theme_teckids.pelicanconf import * from pelican_theme_teckids.pelicanconf import *
AUTHOR = "Teckids e.V." AUTHOR = "Teckids e.V."
...@@ -30,7 +32,7 @@ AUTHOR_FEED_ATOM = None ...@@ -30,7 +32,7 @@ AUTHOR_FEED_ATOM = None
AUTHOR_FEED_RSS = None AUTHOR_FEED_RSS = None
PLUGIN_PATHS = ["plugins"] PLUGIN_PATHS = ["plugins"]
PLUGINS = ["i18n_subsites", "sitemap", "summary", "jinja2content"] PLUGINS = ["i18n_subsites", "sitemap", "summary", "jinja2content", "webring"]
MARKDOWN = { MARKDOWN = {
"extension_configs": { "extension_configs": {
"markdown.extensions.attr_list": {}, "markdown.extensions.attr_list": {},
...@@ -38,6 +40,15 @@ MARKDOWN = { ...@@ -38,6 +40,15 @@ MARKDOWN = {
} }
} }
WEBRING_FEED_URLS = [
"https://hacknfun.camp/feeds/de.atom.xml",
"https://schul-frei.dev/feeds/de.atom.xml",
"https://leopard.institute/feeds/de.atom.xml",
]
WEBRING_MAX_ARTICLES = sys.maxsize
WEBRING_ARTICLES_PER_FEED = sys.maxsize
WEBRING_SUMMARY_WORDS = 0
# Navbar # Navbar
MENUITEMS = [ MENUITEMS = [
("Startseite", "index.html"), ("Startseite", "index.html"),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment