forked from rust-in-blockchain/rust-in-blockchain
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.toml
109 lines (97 loc) · 3.32 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
baseURL = "https://rustinblockchain.org/"
languageCode = "en-us"
title = "Rust in Blockchain ❤ rib.rs"
theme = "mainroad"
paginate = "6"
googleAnalytics = "UA-140591727-1"
publishDir = "../rust-in-blockchain.github.io"
relativeURLs = true
[Params]
subtitle = "Bringing engineering insight and experience to blockchain technology." # Subtitle of your site. Used in site header
description = "A monthly newsletter for Rust and blockchain developers." # Site description. Used in meta description
copyright = "Rust in Blockchain" # Footer copyright holder, otherwise will use site title
opengraph = true # Enable OpenGraph if true
twitter_cards = true # Enable Twitter Cards if true
readmore = false # Show "Read more" button in list if true
authorbox = false # Show authorbox at bottom of pages if true
pager = true # Show post navigation at bottom of pages if true
post_meta = ["date", "categories"] # Order of post meta information
mainSections = ["newsletters", "blogposts"] # Specify section pages to show on home page and the "Recent articles" widget
dateformat = "January 02, 2006"
mathjax = true # Enable MathJax
mathjaxPath = "https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.6/MathJax.js" # Specify MathJax path
mathjaxConfig = "TeX-AMS-MML_HTMLorMML" # Specify MathJax config
highlightColor = "#e22d30" # Override highlight color
customCSS = ["css/custom.css"] # Include custom CSS files
customJS = ["js/custom.js"] # Include custom JS files
enableEmoji = true
enableGitInfo = true
addThis = "ra-123456789ABCDEF"
[menu]
[[menu.main]]
identifier = "newsletters"
name = "Newsletters"
pre = "<i class='fa fa-road'></i>"
url = "/newsletters"
weight = -110
[[menu.main]]
identifier = "blogposts"
name = "Blog Posts"
pre = "<i class='fa fa-road'></i>"
url = "/blogposts"
weight = -100
[[menu.main]]
identifier = "awesome-rib"
name = "Awesome RiB"
pre = "<i class='fa fa-road'></i>"
url = "/awesome-blockchain-rust"
weight = -90
[[menu.main]]
identifier = "job-board"
name = "Job Board"
pre = "<i class='fa fa-road'></i>"
url = "/job-board"
weight = -80
[[menu.main]]
identifier = "learning"
name = "Learning"
pre = "<i class='fa fa-heart'></i>"
url = "/learning"
weight = -70
[[menu.main]]
identifier = "contributing"
name = "Contributing"
pre = "<i class='fa fa-heart'></i>"
url = "/contributing"
weight = -60
[[menu.main]]
identifier = "sponsoring"
name = "Sponsoring"
pre = "<i class='fa fa-heart'></i>"
url = "/sponsoring"
weight = -50
[[menu.main]]
identifier = "about"
name = "About Us"
pre = "<i class='fa fa-heart'></i>"
url = "/about"
weight = -40
[[menu.main]]
identifier = "RSS"
name = "RSS"
pre = "<i class='fa fa-heart'></i>"
url = "/index.xml"
weight = -30
[Params.sidebar]
home = "right" # Configure layout for home page
list = "right" # Configure layout for list pages
single = true # Configure layout for single pages
# Enable widgets in given order
widgets = [ "subscribe", "support", "social"] #"search"
[Params.widgets.social]
# Enable parts of social widget
twitter = "rust_blockchain"
telegram = "rustinblockchain"
reddit = "RustInBlockchain"
github = "rust-in-blockchain"
email = "[email protected]"