summaryrefslogtreecommitdiffstats
path: root/config.toml
blob: d2cc24f3525d76b676a8ee1309d498cebfb78530 (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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
baseURL = "https://blog.lambda.cx/"
title = "lambda.cx blog"

theme = "fuji"
enableEmoji = true
languageCode = "en"
enableRobotsTXT = true

[outputFormats]
   [outputFormats.SearchIndex]
       isPlainText = true
       notAlternative = true
       mediaType = "application/json"
       path = "/search/"

[outputs]
    home = ["HTML", "RSS", "SearchIndex"]

[params]
    author = "Dante Catalfamo"
    subTitle = "Sharing notes with the internet"
    showWordCounter = false
    showReadTime = false
    showToc = false

    copyrightStartYear = 2020

    # 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 = "Sharing notes with the internet"
    images = ["android-chrome-512x512.png"] # This will use the image called og.png in static/img folder

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

[social]
    twitter = "dantecatalfamo"
    github = "dantecatalfamo"

[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.nav]]
        name = "Search"
        url = "/search/"
        weight = 4
    [[menu.nav]]
        name = "RSS"
        url = "/index.xml"
        weight = 5

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