-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.toml
68 lines (56 loc) · 2.9 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
baseurl = ""
disablePathToLower = true
title = "Master of Software Engineering"
languageCode = "en-us"
paginate = "10" # Number of posts per page
theme = "mainroad"
[Author] # Used in authorbox
name = "Gustav Sundin"
bio = "My name is Gustav Sundin and I work full time as a creative and free spirit. I also hold a Master’s degree in Software Engineering from Chalmers University. A cool thing with that is that I am allowed to titulate myself “Master of Software Engineering”!"
#avatar = "img/avatar.png"
[Params]
description = "Gustav Sundin's personal blog on software engineering" # Site description. Used in meta description
copyright = "Gustav Sundin" # Footer copyright holder, otherwise will use site title
readmore = true # Show "Read more" button in list if true
authorbox = true # Show authorbox at bottom of pages if true
pager = true # Show pager navigation (prev/next links) at the bottom of pages if true
post_meta = ["author", "date", "categories"] # Order of post meta information
mainSections = ["posts", "blog", "news"] # Specify section pages to show on home page and the "Recent articles" widget
dateformat = "2006-01-02" # Change the format of dates
[Params.style.vars]
highlightColor = "#e22d30" # Override highlight color
# Override font-family sets. Secondary font-family set responsible for pre, code, kbd, and samp tags font
# Take care of different quotes OR escaping symbols in these params if necessary
fontFamilyPrimary = "'Open Sans', Helvetica, Arial, sans-serif"
fontFamilySecondary = "SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New', monospace"
[Params.logo]
#image = "img/placeholder.png" # Logo image. Path relative to "static"
title = "Master of Software Engineering" # Logo title, otherwise will use site title
#subtitle = "Just another site" # Logo subtitle
[Params.sidebar]
home = "right" # Configure layout for home page
list = "right" # Configure layout for list pages
single = "right" # Configure layout for single pages
# Enable widgets in given order
widgets = ["featured", "recent", "categories", "taglist", "social"]
[Params.widgets]
featured_num = 5 # Set the number of articles in the "Featured posts" widget
recent_num = 5 # Set the number of articles in the "Recent posts" widget
categories_counter = true # Enable counter for each category in "Categories" widget
tags_counter = false # Enable counter for each tag in "Tags" widget
[outputFormats.RSS]
mediatype = "application/rss"
baseName = "feed"
[Params.widgets.social]
github = "Sundin"
email = "[email protected]"
[[Params.widgets.social.custom]]
title = "Stack Overflow"
url = "https://stackoverflow.com/users/948942/incinerator"
icon = "svg/category.svg" # Optional. Path relative to "layouts/partials"
[[Params.widgets.social.custom]]
title = "About Me"
url = "/welcome"
icon = "svg/author.svg"
[permalinks]
posts = "/:slug/"