mirror of https://github.com/saimn/sigal.git
6 changed files with 48 additions and 69 deletions
@ -1,43 +1,41 @@
|
||||
[sigal] |
||||
|
||||
# All configuration values have a default; values that are commented out serve |
||||
# to show the default. Default values are specified when modified in this |
||||
# example config file |
||||
|
||||
# theme : |
||||
# - colorbox (default), galleria, or the path to a custom theme directory |
||||
# theme = colorbox |
||||
# theme = 'colorbox' |
||||
|
||||
# size of resized image |
||||
# img_size = 640x480 |
||||
# img_size = (640, 480) |
||||
|
||||
# generate thumbnails |
||||
# make_thumbs = 1 |
||||
# make_thumbs = True |
||||
|
||||
# subdirectory of the thumbnails |
||||
# thumb_dir = thumbnails |
||||
# thumb_dir = 'thumbnails' |
||||
|
||||
# prefix and/or suffix for thumbnail names (default: '') |
||||
# thumb_prefix = |
||||
thumb_suffix = .tn |
||||
thumb_suffix = '.tn' |
||||
|
||||
# thumbnail size (default: 150x112) |
||||
thumb_size = 200x150 |
||||
# thumbnail size (default: (150, 112)) |
||||
thumb_size = (200, 150) |
||||
|
||||
# crop the image to fill the box |
||||
# thumb_fit = 1 |
||||
# thumb_fit = True |
||||
|
||||
# keep original image (default: 0) |
||||
keep_orig = 1 |
||||
# keep original image (default: False) |
||||
keep_orig = True |
||||
|
||||
# subdirectory for original images |
||||
# orig_dir = original |
||||
# orig_dir = 'original' |
||||
|
||||
# jpeg quality |
||||
# jpg_quality = 90 |
||||
|
||||
# keep exif metadatas in output image (default: 0) |
||||
exif = 1 |
||||
# keep exif metadatas in output image (default: False) |
||||
exif = True |
||||
|
||||
# add a copyright text on the image (default: '') |
||||
copyright = An example copyright message |
||||
copyright = "An example copyright message" |
||||
Loading…
Reference in new issue