7 lines
164 B
Python
7 lines
164 B
Python
import os
|
|
|
|
class Config:
|
|
MAIN_PAGE_TITLE = "Selected poems"
|
|
CONTENT_DIR = os.environ.get('CONTENT_DIR') or 'content'
|
|
HEADER_IMAGE = 'static/header.jpg'
|