32 lines
519 B
Python
32 lines
519 B
Python
source = '/home/hannaeko/images/photo gallery'
|
|
destination = 'build/photos'
|
|
|
|
theme = 'theme'
|
|
|
|
author = 'Hannaeko'
|
|
|
|
img_size = (1500, 1500)
|
|
|
|
jpg_options = {'quality': 85,
|
|
'optimize': True,
|
|
'progressive': True}
|
|
|
|
thumb_size = (500, 500)
|
|
|
|
thumb_fit = False
|
|
keep_orig = True
|
|
|
|
orig_dir = 'original'
|
|
|
|
#albums_sort_attr = 'date'
|
|
|
|
medias_sort_attr = 'date'
|
|
|
|
ignore_directories = []
|
|
ignore_files = []
|
|
|
|
index_in_url = False
|
|
|
|
plugins = ['plugins.media_page']
|
|
|
|
base_url = 'https://hannaeko.eu/photos/'
|