summaryrefslogtreecommitdiffstats
path: root/hugo.toml
blob: e5fdd9581f76f23418d84f7f189618e3167bb8e6 (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
baseURL = 'https://danix.xyz/'
title = 'danilo m.'
locale = 'en-US'

# Sections
[outputs]
  home = ['HTML', 'RSS']
  section = ['HTML']
  page = ['HTML']

[markup]
  [markup.highlight]
    codeFences = true
    lineNos = false
    tabWidth = 2
    # Style: monokai - customize colors in layout files and CSS
    style = 'monokai'
    noClasses = false
  [markup.tableOfContents]
    endLevel = 3
    ordered = false
    startLevel = 2

# Navigation Menu
# Add menu items below. Items are displayed left-to-right in order of weight.
# Parameters:
#   name    = Text displayed in menu (visible to users)
#   pageRef = Path to your page (e.g., /articles, /is/about)
#   weight  = Order (lower numbers = leftmost, higher = rightmost)
#
# For external links, use 'url' instead of 'pageRef':
#   url = 'https://example.com'

[[menu.main]]
  name = 'articles'
  pageRef = '/articles'
  weight = 10

[[menu.main]]
  name = 'about'
  pageRef = '/is'
  weight = 20

[[menu.main]]
  name = 'contact'
  pageRef = '/is/here'
  weight = 30

# Example: Add a new page to the menu
# [[menu.main]]
#   name = 'uses'
#   pageRef = '/is/uses'
#   weight = 40

# Content sections
[params]
  description = 'Writing about IT, life, and the things that matter.'
  author = 'Danilo M.'
  avatar = 'DM'  # Can be image path or initials
  typingPhrases = ['Security & Web Dev', 'WordPress Developer', 'Bash Enthusiast', 'Slackware Admin']