-
Notifications
You must be signed in to change notification settings - Fork 191
/
Copy pathzine.ziggy
90 lines (90 loc) · 2.8 KB
/
zine.ziggy
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
Multilingual {
.host_url = "https://ziglang.org",
.i18n_dir_path = "i18n",
.layouts_dir_path = "layouts",
.assets_dir_path = "assets",
.static_assets = [
".well-known/funding-manifest-urls",
"funding.json",
"external-link-dark.svg",
"external-link-light.svg",
"heart.svg",
"zig-logo-dark.svg",
"zig-logo-light.svg",
"zig-performance-logo-dark.svg",
"zig-performance-logo-light.svg",
"sponsors/Blacksmith_Logo-Black.svg",
"sponsors/Blacksmith_Logo-White.svg",
"sponsors/coil-logo-black.svg",
"sponsors/coil-logo-white.svg",
"sponsors/dropbox.png",
"sponsors/lavatech.png",
"sponsors/pex-dark.svg",
"sponsors/pex-white.svg",
"sponsors/scaleway.png",
"sponsors/shiguredo-logo-dark.svg",
"sponsors/shiguredo-logo-light.svg",
"sponsors/tb-logo-black.png",
"sponsors/tb-logo-white.png",
"sponsors/zml.svg",
"chart/chartist-1.3.0.css",
"chart/chartist-1.3.0.umd.js",
],
.locales = [
{
.code = "en-US",
.name = "English (original)",
.site_title = "Zig Programming Language",
.content_dir_path = "content/en-US",
.output_prefix_override = "",
},
{
.code = "es-AR",
.name = "Español",
.site_title = "El Lenguaje de Programación Zig",
.content_dir_path = "content/es-AR",
},
{
.code = "ru-RU",
.name = "Русский",
.site_title = "Язык программирования Zig",
.content_dir_path = "content/ru-RU",
},
{
.code = "it-IT",
.name = "Italiano",
.site_title = "Zig Programming Language",
.content_dir_path = "content/it-IT",
},
{
.code = "de-DE",
.name = "Deutsch",
.site_title = "Zig Programmiersprache",
.content_dir_path = "content/de-DE",
},
{
.code = "uk-UA",
.name = "Українська",
.site_title = "Zig Programming Language",
.content_dir_path = "content/uk-UA",
},
{
.code = "ja-JP",
.name = "日本語",
.site_title = "Zig Programming Language",
.content_dir_path = "content/ja-JP",
},
{
.code = "zh-CN",
.name = "中文",
.site_title = "Zig 编程语言",
.content_dir_path = "content/zh-CN",
},
{
.code = "ko-KR",
.name = "한국어",
.site_title = "Zig 프로그래밍 언어",
.content_dir_path = "content/ko-KR",
},
],
}