init
This commit is contained in:
commit
68b6a87b14
25 changed files with 871 additions and 0 deletions
15
config.py
Normal file
15
config.py
Normal 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/'}
|
||||
]
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue