mirror of https://github.com/saimn/sigal.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
488 B
18 lines
488 B
# -*- coding: utf-8 -*- |
|
|
|
source = 'pictures' |
|
thumb_suffix = '.tn' |
|
thumb_size = (200, 150) |
|
keep_orig = True |
|
|
|
links = [('Example link', 'http://example.org'), |
|
('Another link', 'http://example.org')] |
|
|
|
from sigal.plugins import copyright |
|
plugins = ['sigal.plugins.adjust', copyright] |
|
copyright = u"© An example copyright message" |
|
adjust_options = {'color': 0.0, 'brightness': 1.0, |
|
'contrast': 1.0, 'sharpness': 0.0} |
|
|
|
# theme = 'galleria' |
|
# thumb_size = (280, 210)
|
|
|