init - PoC
This commit is contained in:
commit
3484b45045
146 changed files with 10657 additions and 0 deletions
22
config.py
Normal file
22
config.py
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
"""Configuration file for picopaper blog"""
|
||||
|
||||
BLOG_TITLE = "Ittavern.com"
|
||||
BLOG_DESCRIPTION = "Sysadmin doing syadmin stuff"
|
||||
THEME = "tavern"
|
||||
|
||||
# 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': 'Articles', 'url': '/'},
|
||||
{'text': 'Tools', 'url': '/tools/'},
|
||||
{'text': 'Feeds', 'url': '/feed/'},
|
||||
{'text': 'About', 'url': '/about/'}
|
||||
]
|
||||
|
||||
# Logo settings
|
||||
HIDE_LOGO = False
|
||||
HIDE_TITLE = True
|
||||
LOGO_PATH = "/images/logo.png"
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue