summaryrefslogtreecommitdiff
path: root/hugo.toml
blob: 9938d9fa4ce4b5840dcdfbc1bdaed72ad334a589 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
title = 'tdback.net'
baseURL = 'https://tdback.net'
theme = 'hugo-blog-awesome'
languageCode = 'en-us'
defaultContentLanguage = 'en-us'

[params]
  sitename = 'tdbacks blog'
  defaultColor = 'auto'
  toc = false
  tocOpen = false
  goToTop = true
  dateFormat = '2006-01-02'
  mainSections = ['posts']
  rssFeedDescription = 'full'
  [params.author]
    avatar = 'images/calvin_and_hobbes.jpg'
    intro = 'Tyler Dunneback'
    description = 'Sharing technical notes and other thoughts'
    name = 'Tyler Dunneback'
  [params.webmanifest]
    name = 'tdback.net'
    display = 'standalone'
  [[params.socialIcons]]
    name = 'gitea'
    url = 'https://codeberg.org/tdback'
  [[params.socialIcons]]
    name = 'mastodon'
    url = 'https://social.tdback.net/@tdback'
  [[params.socialIcons]]
    name = 'rss'
    url = '/index.xml'

[menus]
  [[menus.main]]
    pageRef = '/'
    name = 'Home'
    url = '/'
    weight = 10
  [[menus.main]]
    pageRef = 'posts'
    name = 'Posts'
    url = '/posts/'
    weight = 20
  [[menus.main]]
    pageRef = 'about'
    name = 'About'
    url = '/about/'
    weight = 30
  [[menus.main]]
    pageRef = 'rss'
    name = 'RSS'
    url = '/index.xml'
    weight = 40

[markup]
  [markup.highlight]
    noClasses = false
    codeFences = true
    guessSyntax = true
  [markup.goldmark.renderer]
    unsafe = true