hugo

Fork of github.com/gohugoio/hugo with reverse pagination support

git clone git://git.shimmy1996.com/hugo.git

config.toml (1679B)

    1 baseURL = "https://gohugo.io/"
    2 paginate =  100
    3 defaultContentLanguage = "en"
    4 enableEmoji = true
    5 timeZone = "Europe/Oslo"
    6 # Set the unicode character used for the "return" link in page footnotes.
    7 footnotereturnlinkcontents = "↩"
    8 languageCode = "en-us"
    9 title = "Hugo"
   10 
   11  ignoreErrors = ["error-remote-getjson", "error-missing-instagram-accesstoken"]
   12 
   13 
   14 googleAnalytics = "UA-7131036-4"
   15 
   16 pluralizeListTitles = false
   17 
   18 # We do redirects via Netlify's _redirects file, generated by Hugo (see "outputs" below).
   19 disableAliases = true
   20 
   21 [minify]
   22   [minify.tdewolff]
   23     [minify.tdewolff.css]
   24     [minify.tdewolff.html]
   25       keepWhitespace = true
   26 
   27 [module]
   28   [module.hugoVersion]
   29     min = "0.56.0"
   30   [[module.imports]]
   31     path = "github.com/gohugoio/gohugoioTheme"
   32 
   33 [outputs]
   34 home = [ "HTML", "RSS", "REDIR", "HEADERS" ]
   35 section = [ "HTML", "RSS"]
   36 
   37 [mediaTypes]
   38 [mediaTypes."text/netlify"]
   39 delimiter = ""
   40 
   41 [outputFormats]
   42 [outputFormats.REDIR]
   43 mediatype = "text/netlify"
   44 baseName = "_redirects"
   45 isPlainText = true
   46 notAlternative = true
   47 [outputFormats.HEADERS]
   48 mediatype = "text/netlify"
   49 baseName = "_headers"
   50 isPlainText = true
   51 notAlternative = true
   52 
   53 [related]
   54 
   55 threshold = 80
   56 includeNewer = true
   57 toLower = false
   58 
   59 [[related.indices]]
   60 name = "keywords"
   61 weight = 100
   62 [[related.indices]]
   63 name  = "date"
   64 weight = 10
   65 pattern = "2006"
   66 
   67 [social]
   68 twitter = "GoHugoIO"
   69 
   70 
   71 [imaging]
   72 # See https://github.com/disintegration/imaging
   73 # CatmullRom is a sharp bicubic filter which should fit the docs site well with its many screenshots.
   74 # Note that you can also set this per image processing.
   75 resampleFilter = "CatmullRom"
   76 
   77 # Default JPEG quality setting. Default is 75.
   78 quality = 75
   79 
   80 anchor = "smart"