picopaper/config.py
2025-10-09 15:59:47 +02:00

15 lines
463 B
Python

"""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/'}
]