-
Notifications
You must be signed in to change notification settings - Fork 111
/
hugo.toml
56 lines (43 loc) · 1.49 KB
/
hugo.toml
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
baseURL = "https://community.apache.org"
title = "ASF Community Development"
languageCode = "en"
contentDir = "source"
publishDir = "target/content"
disablePathToLower = true
uglyURLs = true
enableRobotsTXT = true
disableBrowserError = true
timeout = "30s"
ignoreFiles = [ ] # No files to ignore
# Enable tags but not categories
[taxonomies]
tag = "tags"
# Highlighting config. See https://help.farbox.com/pygments.html
pygmentsCodeFences = true
pygmentsUseClasses = false
pygmentsStyle = "emacs"
# Enable Git variables like commit, lastmod
enableGitInfo = true
[markup.goldmark.renderer]
unsafe = true
[blackfriday]
# hrefTargetBlank = true # We don't want everything opened in a new window
fractions = false
[frontmatter]
date = ["date", ":filename", "publishDate", "lastmod"]
[params]
# Source Code repository section
repositoryUrl = "https://github.com/apache/comdev-site"
repositorySourceBranch = "main"
repositoryContentBaseUrl = "https://github.com/apache/comdev-site/blob/main/source"
# Open Graph section
title = "Apache Community Development"
description = "The Community Development project creates and provides tools, processes, and advice to help open-source software projects improve their own community health."
images = ["images/aceu19_1.jpg", "images/aceu19_2.jpg"] # Open graph images are placed in `static/images`
tags = ["OpenSource", "Community", "Apache Software Foundation"]
[social]
twitter = "ApacheCommunity"
[outputs]
home = ["html","rss"]
term = ["html"]
section = ["html","rss"]