ethandl.dev

The source for my website
git clone git://git.ethandl.dev/ethandl.dev
Log | Files | Refs | Submodules

hugo.toml (1341B)


      1 # -- Site Configuration --
      2 # Refer to the theme docs for more details about each of these parameters.
      3 # https://blowfish.page/docs/getting-started/
      4 
      5 theme = "blowfish" # UNCOMMENT THIS LINE
      6 # baseURL = "https://ethandl.dev/"
      7 defaultContentLanguage = "en"
      8 
      9 # pluralizeListTitles = "true" # hugo function useful for non-english languages, find out more in  https://gohugo.io/getting-started/configuration/#pluralizelisttitles
     10 
     11 enableRobotsTXT = true
     12 paginate = 10
     13 summaryLength = 0
     14 
     15 buildDrafts = false
     16 buildFuture = false
     17 
     18 enableEmoji = true
     19 
     20 # googleAnalytics = "G-XXXXXXXXX"
     21 
     22 [imaging]
     23   anchor = 'Center'
     24 
     25 [taxonomies]
     26   tag = "tags"
     27   category = "categories"
     28   author = "authors"
     29   series = "series"
     30 
     31 [sitemap]
     32   changefreq = 'daily'
     33   filename = 'sitemap.xml'
     34   priority = 0.5
     35 
     36 [outputs]
     37   home = ["HTML", "RSS", "JSON"]
     38 
     39 [related]
     40   threshold = 0
     41   toLower = false
     42 
     43     [[related.indices]]
     44         name = "tags"
     45         weight = 100
     46 
     47     [[related.indices]]
     48         name = "categories"
     49         weight = 100
     50 
     51     [[related.indices]]
     52         name = "series"
     53         weight = 50
     54 
     55     [[related.indices]]
     56         name = "authors"
     57         weight = 20
     58 
     59     [[related.indices]]
     60         name = "date"
     61         weight = 10
     62 
     63     [[related.indices]]
     64       applyFilter = false
     65       name = 'fragmentrefs'
     66       type = 'fragments'
     67       weight = 10