-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathhugo.toml
43 lines (35 loc) · 1.64 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
baseURL = 'https://www.madrhacks.org/'
languageCode = 'en-gb'
title = 'MadrHacks'
theme = 'poison'
paginate = 10
pluralizelisttitles = false # removes the automatically appended "s" on sidebar entries
[params]
brand = "MadrHacks" # name of your site - appears in the sidebar
brand_image = "/images/svg/logo-m-green.svg" # path to the image shown in the sidebar
description = "Ethical hacking team of the University of Udine" # Used as default meta description if not specified in front matter
dark_mode = true # optional - defaults to false
favicon = "/images/favicon.ico" # path to favicon (defaults to favicon.png)
# Landing page
front_page_content = ["about"]
# MENU PLACEHOLDER
# Menu dict keys:
# Name: The name to display on the menu.
# URL: The directory relative to the content directory.
# HasChildren: If the directory's files should be listed. Default is true.
# Limit: If the files should be listed, how many should be shown.
menu = [
{Name = "Writeups", URL = "/writeups/", Pre = "Recent", HasChildren = true, Limit = 5},
]
# Links to socials
github_url = "https://github.com/MadrHacks"
instagram_url = "https://instagram.com/MadrHacks"
email_url = "mailto://[email protected]"
linkedin_url = "https://www.linkedin.com/company/madrhacks"
# Uncomment and populate the following to use Umami for analytics
# umami = true
# umami_script = "http://127.0.0.1"
# umami_website_id = "123123123"
[taxonomies]
series = 'series'
tags = 'tags'