-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.toml
144 lines (115 loc) · 4.41 KB
/
config.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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
# ------------------------------------- #
# ---- General Settings --------------- #
# ------------------------------------- #
baseURL = "http://meetmeinthemountains.com"
title = "Meet Me in the Mountains"
theme = "den"
#enableRobotsTXT = true # generate robots.txt
enableEmoji = true # use emoji support
hasCJKLanguage = true # detect CJK languages for word count etc.
preserveTaxonomyNames = true # do not make tag names lowercase
# uglyURLs = true # more info: https://gohugo.io/content-management/urls/#ugly-urls
rssLimit = 20 # limit number of entries in RSS feeds
# Copyright, appears in the footer
# copyright = "" # default: author.name
# Pagination
# number of entries per page for archives, tags and categories
# since we don't have list view, recommend a large value
paginate = 20
paginatePath = "page"
# Syntax Hightlight
PygmentsCodeFences = true
PygmentsUseClasses = true # required for shhighlight shortcode
# service plugins
disqusShortname = "meetmeinthemountains-com" # disqus_shortname
googleAnalytics = "" # UA-XXXXXXXX-X
# language support # en / zh-tw / other... translations present in i18n/
defaultContentLanguage = "en" # Default language to use
defaultContentLanguageInSubdir = true
# Links format
[permalinks]
posts = "/:slug/"
categories = "/category/:slug/" # required
tags = "/tag/:slug/" # required
pages = "/:slug/"
[author] # required
name = "Sean Janssen"
[sitemap] # required
changefreq = "weekly"
priority = 0.5
filename = "sitemap.xml"
# ------------------------------------- #
# ---- Other Params ------------------- #
# ------------------------------------- #
[params]
since = "2018" # Site creation time
rssFullContent = true # set true to use full content instead of summary
# site info (optional)
keywords = ["lost ski hills","mountains"]
description = "The spot to discuss lost resorts and backcountry"
logoTitle = "Meet Me in the Mountains" # shown on top-left, default: title
siteLogoImage = "images/globe.svg" # shown besides logoTitle
# headerTitle = "Meet me in the Mountains" # default: title
headerImage = "images/background.jpg"
showAuthorCard = true # Whether to show author information below the article
showMenuLanguages = false
autoLoadComments = false # auto load comment when scrolling down
# paginate style, default use numbered pagination links
# if true, use original "Previous" and "Next" links.
# paginateOriginalStyle = true
# The date format to use; for a list of valid formats, see https://gohugo.io/functions/format/
dateFormatToUse = "2006-01-02"
google_verification = "" # Google_Verification
# Link custom CSS and JS assets
# (relative to /static/css and /static/js respectively)
customCSS = ['custom.css'] # if ['custom.css'], load '/static/css/custom.css' file
customJS = [] # if ['custom.js'], load '/static/js/custom.js' file
# ------------------------------------- #
# ---- Related Articles --------------- #
# ------------------------------------- #
[related]
# Only include matches with rank >= threshold. This is a normalized rank between 0 and 100.
threshold = 50
# To get stable "See also" sections we, by default, exclude newer related pages.
includeNewer = true
# Will lower case keywords in both queries and in the indexes.
toLower = false
[[related.indices]]
name = "categories"
weight = 200
[[related.indices]]
name = "keywords"
weight = 150
[[related.indices]]
name = "tags"
weight = 100
[languages.en]
languageCode = "en"
languageName = "English"
contentDir = "content/"
weight = 1
[[languages.en.menu.main]]
name = "Lost Ski Areas"
weight = 10
identifier = "lost-ski-area"
url = "category/lost-ski-area/"
[[languages.en.menu.main]]
name = "Resorts"
weight = 20
identifier = "resort"
url = "category/resort/"
[[languages.en.menu.main]]
name = "Backcountry"
weight = 30
identifier = "backcountry"
url = "category/backcountry/"
[[languages.en.menu.social]]
name = "GitHub"
weight = 10
identifier = "github"
url = "https://github.com/eanderson4/mmitm"
[[languages.en.menu.links]]
name = "Colorado Ski History"
weight = 10
identifier = "colorado-ski-history"
url = "http://www.coloradoskihistory.com/"