hugo-theme-tui

TUI
Log | Files | Refs | README | LICENSE

hugo.toml (1528B)


      1 baseURL = "https://example.com/"
      2 languageCode = "en-us"
      3 title = "hugo-theme-tui demo"
      4 theme = "hugo-theme-tui"
      5 
      6 defaultContentLanguage = "en"
      7 
      8 [params]
      9 # Brand string rendered in the header: <user>@<host> ~/path
     10 brandUser = "user"
     11 brandHost = "example.com"
     12 
     13 [params.about]
     14 title = "hugo-theme-tui"
     15 description = "A terminal-UI Hugo theme. Edit `content/_index.md` to make this your own."
     16 
     17 # Dot-matrix marker words per page kind. Each is a list of single characters.
     18 # Only characters present in the bitmap font (see partials/cyrillic-svg.html)
     19 # will render — by default that's the Cyrillic set: А Д К М О П С Т.
     20 # Override any of these to use your own word.
     21 [params.marker]
     22 home         = ["Д", "О", "М"]
     23 projects     = ["К", "О", "Д"]
     24 posts_list   = ["П", "О", "С", "Т"]
     25 posts_single = ["С", "Т", "А", "Т"]
     26 fallback     = ["С", "Т", "А", "Т"]
     27 
     28 # Socials grid (home page). icon must be one of:
     29 #   email | linkedin | github | git | rss | pgp | coffee
     30 [[params.socialLinks]]
     31 key   = "email"
     32 value = "hello@example.com"
     33 url   = "mailto:hello@example.com"
     34 icon  = "email"
     35 
     36 [[params.socialLinks]]
     37 key   = "github"
     38 value = "github.com/example"
     39 url   = "https://github.com/example"
     40 icon  = "github"
     41 
     42 [[params.socialLinks]]
     43 key   = "rss"
     44 value = "/index.xml"
     45 url   = "/index.xml"
     46 icon  = "rss"
     47 
     48 [menu]
     49 
     50   [[menu.main]]
     51     identifier = "projects"
     52     name = "projects"
     53     url = "/projects/"
     54     weight = 10
     55 
     56   [[menu.main]]
     57     identifier = "posts"
     58     name = "posts"
     59     url = "/posts/"
     60     weight = 20