summaryrefslogtreecommitdiffstats
path: root/config.toml
blob: a7fc63d471a83c2cae92c74b13301065223c4eba (plain) (blame)
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
baseURL = "https://blog.lambda.cx/"
title = "Dante's Blog"

theme = "fuji"

languageCode = "en-us"
enableRobotsTXT = true

[params]
    author = "Dante Catalfamo"
    subTitle = "Putting my notes online"
    showWordCounter = false
    showReadTime = false
    showToc = true

    # License at the end of each post
    showLicense = false
    license = "CC BY-NC-SA 4.0"
    licenseLink = "https://creativecommons.org/licenses/by-nc-sa/4.0/"

    # Open Graph & Twitter Card variables
    # You can also set description and images in post front matter individually
    # description = "Dante Catalfamo's personal tech blog."
    # images = ["img/og.png"] # This will use the image called og.png in static/img folder

    # Posts shown in homepage
    mainSections = ["posts"]

[menu]
    [[menu.nav]]
        name = "Home"
        url = "/"
        weight = 1
    [[menu.nav]]
        name = "Archives"
        url = "/archives/"
        weight = 2
    [[menu.nav]]
        name = "About"
        url = "/about/"
        weight = 3

    [[menu.link]]
        name = "GitHub"
        url = "https://github.com/dantecatalfamo"
        weight = 1