-
Notifications
You must be signed in to change notification settings - Fork 1
/
hugo.toml
69 lines (64 loc) · 2.2 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
57
58
59
60
61
62
63
64
65
66
67
68
69
baseURL = 'https://sqlfluff.com/'
languageCode = 'en-us'
title = 'SQLFluff'
theme = 'gokarna'
# Automatically generate robots.txt
enableRobotsTXT = true
# Icons in the menu use feather-icons: https://feathericons.com/
# Weights are used to determine the ordering
# pre & post define things before and after the name (HTML supported)
# name is the display name
[menu]
[[menu.main]]
# Unique identifier for a menu item
identifier = "home"
url = "/"
name = "SQLFluff"
weight = 1
[[menu.main]]
identifier = "source"
name = "Source"
url = "https://github.com/sqlfluff/sqlfluff"
weight = 2
pre = "<span data-feather='github'></span>"
[[menu.main]]
identifier = "docs"
name = "Docs"
url = "https://docs.sqlfluff.com"
weight = 3
pre = "<span data-feather='book'></span>"
# For more config options:
# https://gokarna-hugo.netlify.app/posts/theme-documentation-basics/#configuration
[params]
# URL for the avatar on homepage
avatarURL = "/img/sqlfluff-avatar.png"
# Choose one of size-xs, size-s, size-m, size-l & size-xl. (Default: size-m)
avatarSize = "size-l"
# Description to display on homepage
description = "📜 The SQL Linter for humans"
# Keywords relevant for SEO
metaKeywords = ["sqlfluff", "sql", "linter"]
# Footer text
footer = """SQLFluff Ltd."""
# Social Icons
socialIcons = [
{name = "twitter", url = "https://twitter.com/SQLFluff"},
{name = "linkedin", url = "https://linkedin.com/company/sqlfluff"},
{name = "slack", url = "https://join.slack.com/t/sqlfluff/shared_invite/zt-2qtu36kdt-OS4iONPbQ3aCz2DIbYJdWg"},
{name = "stackoverflow", url = "https://stackoverflow.com/questions/tagged/sqlfluff"},
]
CustomFooterHTML = """
<span>
SQLFluff Ltd. Incorporated in England. Company Number 14948332.
<br>Unit 82a James Carter Road, Mildenhall,<br>Bury St. Edmunds, England, IP28 7DE
</span>
<span>
Site built and managed by <a href="https://www.a14k.co.uk/">A14K Ltd.</a>
</span>
<span>
<a href="https://www.netlify.com/">This site is powered by Netlify</a>
</span>
"""
CustomHeadHTML = """
<link rel="stylesheet" type="text/css" href="/css/sqlfluff.css" />
"""