diff --git a/config.py b/config.py index fb4f71f..333e1e0 100644 --- a/config.py +++ b/config.py @@ -2,6 +2,9 @@ BLOG_TITLE = "Ittavern.com" BLOG_DESCRIPTION = "Sysadmin doing syadmin stuff" +BASE_URL = "https://ittavern.com" # Your site's base URL (no trailing slash) +AUTHOR_NAME = "cf7" +AUTHOR_EMAIL = "hello@ittavern.com" # Optional THEME = "tavern" # Exclude specific feeds from the main page (they'll still have their own /feed/name/ pages) @@ -12,7 +15,8 @@ NAVBAR_ITEMS = [ {'text': 'Articles', 'url': '/'}, {'text': 'Tools', 'url': '/tools/'}, {'text': 'Feeds', 'url': '/feed/'}, - {'text': 'About', 'url': '/about/'} + {'text': 'About', 'url': '/about/'}, + {'text': 'RSS', 'url': '/rss.xml'} ] # Logo settings @@ -20,3 +24,8 @@ HIDE_LOGO = False HIDE_TITLE = True LOGO_PATH = "/images/logo.png" +# Feed settings +ENABLE_RSS_FEED = True +RSS_FEED_PATH = "rss.xml" # Path relative to site root (e.g., "rss.xml" or "feed/rss.xml") +FEED_MAX_ITEMS = 200 # Maximum number of items to include in feeds +