This commit is contained in:
Caffeine Fueled 2025-10-09 15:59:47 +02:00
commit 68b6a87b14
Signed by: cf7
GPG key ID: CA295D643074C68C
25 changed files with 871 additions and 0 deletions

15
config.py Normal file
View file

@ -0,0 +1,15 @@
"""Configuration file for picopaper blog"""
BLOG_TITLE = "picopaper"
BLOG_DESCRIPTION = "we like simple."
THEME = "default"
# Exclude specific feeds from the main page (they'll still have their own /feed/name/ pages)
EXCLUDE_FEEDS_FROM_MAIN = ['draft','private'] # e.g., ['python', 'drafts']
# Navigation bar items - list of dictionaries with 'text' and 'url' keys
NAVBAR_ITEMS = [
{'text': 'Home', 'url': '/'},
{'text': 'About', 'url': '/about/'}
]