Welcome to mirror list, hosted at ThFree Co, Russian Federation.

sample-config.toml - github.com/parsiya/Hugo-Octopress.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4448fbdbbafe426a8e37c66c455e656df4904c32 (plain)
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
baseurl = "http://example.com"
disablePathToLower = false
languageCode = "en-us"
title = "Parsia's Den"
theme = "hugo-octopress"

# number of blog posts displayed in each page
paginate = 6

pygmentsuseclasses = false
pygmentsstyle = "solarized_dark"

# you need to install Solarized from https://github.com/john2x/solarized-pygment.git
# Octopress blog used Solarized_dark
# options are solarized_dark (octopress), solarized_dark256 and default (solarized light)

# will make the highlight shortcode and ``` do the same thing - otherwise they are treated differently and we do not want that
pygmentscodefences = true

# can pass in pygments options here, it can also be added in the highlight shortcode
# pygmentsoptions = "linenos=true"

[permalinks]
post = "/blog/:year-:month-:day-:title/" # change the post URL to look like the old ones

# make tags and categories work
[indexes]
	tag = "tags"
	category = "categories"

# menu
# links will open in a new window except links to "/" - links are added to navigation in hugo-octopress/layouts/partials/navigation.html
[[menu.main]]
	Name = "Blog"
	URL = "/"
	weight = -5

[[menu.main]]
	Name = "Google"
	URL = "https://www.google.com/"
	weight = -5

[[menu.main]]
	Name = "This theme on Github"
	URL = "https://www.github.com/parsiya/hugo-octopress"

[params]

	# number of recent posts that will be shown in the sidebar - default is 5
	SidebarRecentLimit = 5

	# sidebar customization - passed to markdownify
	sidebar_header = "Sidebar Header"

	# sidebar text supports markdown
	# new lines can be added with </br> or normal markdown (two spaces at the end of line or two new lines).
	# when adding two new lines, remember to remove the indentation otherwise the new line will be treated as a codeblock
	sidebar_text = """Sidebar text is passed to *markdownify* so it supports markdown. Here's a [link to google](https://www.google.com)
	</br>
	Second line
	</br>
	Third line
	"""

	# if false, all of the post will appear on front page (and in pagination)
	truncate = true

	# author's name (this will appear in metadata and under posts)
	author = "Author's name"

	# appears in the site header under website title
	subtitle = "Subtitle appears under website title"

	# used in the search engine
	search_engine_url = "https://www.google.com/search"

	# Text of the Continue Reading label. &rarr; == right arrow, but it gets messed up in the string so we will add it to index.html manually
	continue_reading = "Would you like to know more?"

	# Google analytics code
	googleAnalytics = "google analytics"

	# disqus shortcode
	disqusShortname = "Your Google Analytics tracking code"

	# sidebar links
	github = "https://github.com/parsiya/"
	bitbucket = "https://bitbucket.org/parsiya/"
	twitter = "https://twitter.com/cryptogangsta/"
	keybase = "https://keybase.io/parsiya/"
	stackoverflow = ""
	linkedin = ""
	googleplus = ""
	youtube = ""
	facebook = ""

	rss = true  # switch to true to enable RSS icon link

	defaultDescription = ""

	# populate this with your own keywords
	# defaultKeywords = ["keyword1" , "keyword2" , "keyword3" , "keyword4"]

	# css override files
	# paths should be relative to the `static` directory (either the website static directory or the theme one)
	# custom_css = ["css/custom.css","css/custom2.css"]

	# 404.html header and text -both support markdown
	notfound_header = "There's nothing here"

	notfound_text = """Please either go back or use the navigation/sidebar menus.
	"""
	
# blackfriday is Hugo's markdown engine. Options are at: https://gohugo.io/overview/configuration/ (scroll down to "Configure Blackfriday rendering")
[blackfriday]
	hrefTargetBlank = true # open the external links in a new window
	fractions = false