christianermann.dev-hugo

The Hugo source for my website
git clone git://git.christianermann.dev/christianermann.dev-hugo
Log | Files | Refs | Submodules | README

config.toml (1462B)


      1 baseURL = "https://www.christianermann.dev"
      2 theme = "hugo-bearcub"
      3 defaultContentLanguage = "en"
      4 
      5 summaryLength = 25
      6 enableRobotsTXT = true
      7 
      8 [markup]
      9     [markup.highlight]
     10         lineNos = true
     11         lineNumbersInTable = false
     12         noClasses = false
     13 
     14 [languages]
     15   [languages.en]
     16     title = "Christian Ermann"
     17     languageName = "en-US"
     18     LanguageCode = "en-US"
     19     contentDir = "content"
     20 
     21 [params]
     22     title = "Christian Ermann"
     23     description = "Stuff I'm working on."
     24     dateFormat = "2006-01-02"
     25     themeStyle = "herman"
     26     hideUntranslated = false
     27     madeWith = "Made with [Bear Cub](https://github.com/clente/hugo-bearcub)"
     28 
     29     [params.author]
     30         name = "Christian Ermann"
     31         email = "christianermann@gmail.com"
     32 
     33 [menu]
     34     [[menu.main]]
     35         identifier = "main"
     36         name = "Main"
     37         url = "/"
     38         weight = 1
     39 
     40     [[menu.main]]
     41         identifier = "posts"
     42         name = "Posts"
     43         url = "/posts/"
     44         weight = 2
     45 
     46     [[menu.main]]
     47         identifier = "code"
     48         name = "Code"
     49         url = "https://git.christianermann.dev"
     50         weight = 3
     51 
     52     [[menu.main]]
     53         identifier = "resume"
     54         name = "Resume"
     55         url = "/resume.pdf"
     56         weight = 4
     57 
     58     [[menu.footer]]
     59         name = "Github"
     60         url = "https://github.com/c2000e"
     61         weight = 1
     62 
     63     [[menu.footer]]
     64         name = "LinkedIn"
     65         url = "https://www.linkedin.com/in/christian-ermann/"
     66         weight = 2
     67