-
Notifications
You must be signed in to change notification settings - Fork 328
/
config.toml
159 lines (127 loc) · 3.74 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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
title = "ZeroMQ"
baseURL = "https://zeromq.org"
disableKinds = ["sitemap", "taxonomy", "taxonomyTerm", "section"]
languageCode = "en-us"
pygmentsCodefences = true
pygmentsStyle = "dracula"
googleAnalytics = "UA-139969899-1"
[markup.goldmark.renderer]
# this setting is required to allow hugo and its Markdown renderer to process
# embedded HTML tags:
unsafe = true
[permalinks]
docs = "/:title"
[params]
description = "An open-source universal messaging library"
sansseriffont = "Open Sans"
monospacefont = "Fira Mono"
fontawesomeversion = "5.6.3"
js = ["jquery-3.3.1", "app"]
logo = "/images/logo.gif"
[params.logos]
navbar = "/images/logo.gif"
footer = "/images/logo.gif"
panel = "/images/logo.gif"
[params.social.github]
name = "GitHub"
url = "https://github.com/zeromq"
icon = "github"
color = "black"
[params.social.twitter]
name = "Twitter"
url = "https://twitter.com/libzmq"
icon = "twitter"
color = "twitter-blue"
handle = "libzmq"
# NOT sure if I should simply remove params.fonts
[[params.fonts]]
name = "Open Sans"
sizes = [300, 400, 600, 700]
# NOT sure if I should simply remove params.fonts
[[params.fonts]]
name = "Fira Mono"
sizes = [400]
[params.navbar]
fixed = true
shadow = true
[[params.features]]
title = "Universal"
description = "Connect your code in any language, on any platform."
icon = "fas fa-3x fa-globe"
[[params.features]]
title = "Smart"
description = "Smart patterns like pub-sub, push-pull, and client-server."
icon = "fas fa-3x fa-brain"
[[params.features]]
title = "High-speed"
description = "Asynchronous I/O engines, in a tiny library."
icon = "fas fa-3x fa-tachometer-alt"
[[params.features]]
title = "Multi-Transport"
description = "Carries messages across inproc, IPC, TCP, UDP, TIPC, multicast and WebSocket"
icon = "fas fa-3x fa-road"
[[params.features]]
title = "Community"
description = "Backed by a large and active open source community."
icon = "fas fa-3x fa-people-carry"
url = "/community"
[[params.features]]
title = "The Guide"
description = "Explains how to use ØMQ with 60+ diagrams and 750 examples in 28 languages"
icon = "fas fa-3x fa-book"
url = "http://zguide.zeromq.org/"
[[menu.navbar]]
name = "Documentation"
url = "/get-started"
weight = 1
[[menu.navbar]]
name = "Community"
url = "/our-community"
weight = 2
[[menu.navbar]]
name = "The Guide"
url = "http://zguide.zeromq.org/"
weight = 3
[[menu.navbar]]
name = "Wiki"
url = "http://wiki.zeromq.org"
weight = 4
[[params.usedby]]
name = "Microsoft"
image = "https://cdn.jsdelivr.net/npm/simple-icons@latest/icons/microsoft.svg"
[[params.usedby]]
name = "Samsung"
image = "https://cdn.jsdelivr.net/npm/simple-icons@latest/icons/samsung.svg"
[[params.usedby]]
name = "AT&T"
image = "https://cdn.jsdelivr.net/npm/simple-icons@latest/icons/at-and-t.svg"
[[params.usedby]]
name = "Spotify"
image = "https://cdn.jsdelivr.net/npm/simple-icons@latest/icons/spotify.svg"
[[params.usedby]]
name = "Facebook"
image = "https://cdn.jsdelivr.net/npm/simple-icons@latest/icons/facebook.svg"
[[params.usedby]]
name = "Digital Ocean"
image = "https://cdn.jsdelivr.net/npm/simple-icons@latest/icons/digitalocean.svg"
[[params.usedby]]
name = "Auth0"
image = "https://cdn.jsdelivr.net/npm/simple-icons@latest/icons/auth0.svg"
[[params.usedby]]
name = "Bitcoin"
image = "https://cdn.jsdelivr.net/npm/simple-icons@latest/icons/bitcoin.svg"
[[params.usedby]]
name = "Jupyter"
image = "https://cdn.jsdelivr.net/npm/simple-icons@latest/icons/jupyter.svg"
[[params.usedby]]
name = "Mongrel2"
image = "https://upload.wikimedia.org/wikipedia/en/0/0b/Mongrel_2_logo.png"
[[params.usedby]]
name = "Jina"
image = "https://docs.jina.ai/_static/logo-black.svg"
[[params.links]]
title = "The Guide"
url = "http://zguide.zeromq.org"
[[params.links]]
title = "Low-level API"
url = "https://libzmq.readthedocs.io/"