diff options
Diffstat (limited to 'siteconfig.py')
-rw-r--r-- | siteconfig.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/siteconfig.py b/siteconfig.py index 8717a82..aa03597 100644 --- a/siteconfig.py +++ b/siteconfig.py @@ -25,7 +25,7 @@ class siteconfig(config): MAIN_SITE_DIRS = sorted( config.DEFAULT_SITE_DIRS ) # ["dir1", "dir2", "dir3"] - + MAIN_SITE_DIRS.remove("files") # Set a custom secret key. If not set, it will be generated # Most of the time, you don't need to set this! SECRET_KEY = config.GENERATED_SECRET_KEY # replace with random number. @@ -66,7 +66,7 @@ class siteconfig(config): # RSS Settings rss_channel_config = { 'TITLE': "mjfer.net RSS Feed", - 'LINK': "https://mjfer.net/", + 'LINK': "https://mjfer.net/feed.xml", 'DESCRIPTION': "feed organized by the latest updated files", 'LANGUAGE': "en-us", 'PUBDATE': "", |