andersdamsgaard.com

my photography webpage
git clone git://src.adamsgaard.dk/andersdamsgaard.com # fast
git clone https://src.adamsgaard.dk/andersdamsgaard.com.git # slow
Log | Files | Refs | Submodules | README | LICENSE Back to index

config.toml (1787B)


      1 theme = "tale-mod"
      2 defaultContentLanguage = "en"
      3 baseURL = "https://andersdamsgaard.com/"
      4 timeout=30000
      5 
      6 [params]
      7   author = "Anders Damsgaard"
      8 
      9 [languages]
     10   [languages.en]
     11     #baseURL = "https://andersdamsgaard.com/"
     12     title = "Anders Damsgaard"
     13     languageName = "English"
     14     languageCode = "en"
     15   [languages.da]
     16     #baseURL = "https://andersdamsgaard.dk/"
     17     title = "Anders Damsgaard"
     18     languageCode = "da"
     19     languageName = "Dansk"
     20     weight = 2
     21     [languages.da.params.navigation]
     22       home = "Hjem"
     23       portfolio = "Portefølje"
     24       prints = "Trykte billeder"
     25       about = "Om mig"
     26     [[languages.da.menu.main]]
     27 
     28 
     29 [imaging]
     30 # Default resample filter used for resizing. Default is Box,
     31 # a simple and fast averaging filter appropriate for downscaling.
     32 # See https://github.com/disintegration/imaging
     33 # NearestNeighbor: Fastest resampling filter, no antialiasing.
     34 # Box: Simple and fast averaging filter appropriate for downscaling.
     35 #      When upscaling it's similar to NearestNeighbor.
     36 # Linear: Bilinear filter, smooth and reasonably fast.
     37 # MitchellNetravali: А smooth bicubic filter.
     38 # CatmullRom: A sharp bicubic filter.
     39 # Gaussian: uses gaussian function, useful for noise removal.
     40 # Lanczos: High-quality resampling filter for photographic images yielding
     41 #          sharp results, slower than cubic filters.
     42 #resampleFilter = "box"
     43 resampleFilter = "Lanczos"
     44 
     45 # Defatult JPEG quality setting. Default is 75.
     46 quality = 75
     47 
     48 # Anchor used when cropping pictures.
     49 # Default is "smart" which does Smart Cropping, using https://github.com/muesli/smartcrop
     50 # Smart Cropping is content aware and tries to find the best crop for each image.
     51 # Valid values are Smart, Center, TopLeft, Top, TopRight, Left, Right, BottomLeft, Bottom, BottomRight
     52 anchor = "smart"