more tweaks

This commit is contained in:
Don Harper 2019-05-20 21:26:20 -05:00
parent f82f587e87
commit 726fcc851e
30 changed files with 15 additions and 2 deletions

17
conf.py
View file

@ -40,11 +40,12 @@ NAVIGATION_LINKS = {
}
GLOBAL_CONTEXT_FILLER = []
THEME = 'canterville'
LOGO_URL = 'https://getnikola.com/assets/img/logo.svg'
LOGO_URL = '/assets/img/favicon.ico'
GLOBAL_CONTEXT = {
'TWITTER_URL': 'https://twitter.com/duckunix',
'FLICKR_URL': 'https://www.flickr.com/photos/duckunix/',
'BANNER_URL': '/assets/img/beach.jpg'
'BANNER_URL': '/assets/img/beach.jpg',
'LOGO_URL': '/assets/img/favicon.ico'
}
TIMEZONE = "America/Chicago"
DATE_FORMAT = 'YYYY-MM-dd'
@ -137,3 +138,15 @@ LESS_COMPILER = 'lessc'
LESS_OPTIONS = []
SASS_COMPILER = 'sass'
SASS_OPTIONS = []
#-----------
# One or more folders containing galleries. The format is a dictionary of
# {"source": "relative_destination"}, where galleries are looked for in
# "source/" and the results will be located in
# "OUTPUT_PATH/relative_destination/gallery_name"
# Default is:
GALLERY_FOLDERS = {"galleries": "galleries"}
# More gallery options:
THUMBNAIL_SIZE = 180
MAX_IMAGE_SIZE = 1280
USE_FILENAME_AS_TITLE = True
EXTRA_IMAGE_EXTENSIONS = []