23 lines
381 B
Python
23 lines
381 B
Python
#!/usr/bin/env python
|
|
# -*- coding: utf-8 -*- #
|
|
|
|
AUTHOR = 'Tyler Carr'
|
|
SITENAME = 'Blue Penguin Dark'
|
|
SITEURL = 'http://localhost:8000'
|
|
SITELOGO = 'https://www.gravatar.com/avatar/de3ba847c89c8cab9dd7080abebf9df1'
|
|
DEFAULT_METADATE = {
|
|
'status': 'draft',
|
|
}
|
|
|
|
|
|
PATH = 'content'
|
|
|
|
TIMEZONE = 'America/Los_Angeles'
|
|
|
|
DEFAULT_LANG = 'en'
|
|
|
|
|
|
MENUITEMS = (
|
|
('About', '/'),
|
|
)
|