21 lines
628 B
Python
21 lines
628 B
Python
#!/usr/bin/env python
|
|
# -*- coding: utf-8 -*- #
|
|
|
|
AUTHOR = 'Andrew Ridgway'
|
|
SITENAME = "Andrew Ridgway's Blog"
|
|
SITEURL = "http://localhost:8000" #'https://blog.aridgwayweb.com'
|
|
THEME = 'themes/cleanblog'
|
|
PATH = 'content'
|
|
HEADER_COVER = 'https://wallpaperaccess.com/full/3239444.jpg'
|
|
TIMEZONE = 'Australia/Brisbane'
|
|
COLOR_SCHEME_CSS = 'tomorrow.css'
|
|
DEFAULT_LANG = 'en'
|
|
|
|
GITHUB_URL = 'https://github.com/armistace'
|
|
TWITTER_URL = 'https://twitter.com/ar17787'
|
|
FACEBOOK_URL = 'https://facebook.com/ar17787'
|
|
|
|
DEFAULT_PAGINATION = 10
|
|
# Uncomment following line if you want document-relative URLs when developing
|
|
#RELATIVE_URLS = True
|