Skip to content

Commit 6565bd1

Browse files
Correct configuration
1 parent 43a4a9b commit 6565bd1

File tree

4 files changed

+51
-26
lines changed

4 files changed

+51
-26
lines changed

_config.yml

Lines changed: 26 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -76,62 +76,62 @@ nav:
7676
- title: "Compatibility Matrix"
7777
url: "/en/docs/reference/compatibility/"
7878
- title: "WASM Backend"
79-
url: "/wasm/"
79+
url: "/en/docs/wasm/"
8080
children:
8181
- title: "Overview"
82-
url: "/wasm/"
82+
url: "/en/docs/wasm/"
8383
- title: "Installation"
84-
url: "/wasm/installation/"
84+
url: "/en/docs/wasm/installation/"
8585
- title: "Architecture"
86-
url: "/wasm/architecture/"
86+
url: "/en/docs/wasm/architecture/"
8787
- title: "Performance"
88-
url: "/wasm/performance/"
88+
url: "/en/docs/wasm/performance/"
8989
- title: "Development"
90-
url: "/wasm/development/"
90+
url: "/en/docs/wasm/development/"
9191
- title: "Troubleshooting"
92-
url: "/wasm/troubleshooting/"
92+
url: "/en/docs/wasm/troubleshooting/"
9393
- title: "FAQ"
94-
url: "/wasm/faq/"
94+
url: "/en/docs/wasm/faq/"
9595
- title: "Upgrade to v0.4"
96-
url: "/wasm/upgrade/"
96+
url: "/en/docs/wasm/upgrade/"
9797
- title: "Python Codegen"
98-
url: "/codegen/"
98+
url: "/en/docs/codegen/"
9999
children:
100100
- title: "Overview"
101-
url: "/codegen/"
101+
url: "/en/docs/codegen/"
102102
- title: "API Reference"
103-
url: "/codegen/api/"
103+
url: "/en/docs/codegen/api/"
104104
- title: "Design"
105-
url: "/design/"
105+
url: "/en/docs/design/"
106106
children:
107107
- title: "Architecture"
108-
url: "/design/"
108+
url: "/en/docs/design/"
109109
- title: "Core Specification"
110-
url: "/design/core-spec/"
110+
url: "/en/docs/design/core-spec/"
111111
- title: "Frontend Contracts"
112-
url: "/design/frontend-contracts/"
112+
url: "/en/docs/design/frontend-contracts/"
113113
- title: "Surface Normalization"
114-
url: "/design/surface-normalization/"
114+
url: "/en/docs/design/surface-normalization/"
115115
- title: "Stdlib Localization"
116-
url: "/design/stdlib-localization/"
116+
url: "/en/docs/design/stdlib-localization/"
117117
- title: "Related Work"
118-
url: "/design/related-work/"
118+
url: "/en/docs/design/related-work/"
119119
- title: "Extending"
120-
url: "/extending/"
120+
url: "/en/docs/extending/"
121121
children:
122122
- title: "Add a Language"
123-
url: "/extending/"
123+
url: "/en/docs/extending/"
124124
- title: "Translation Guidelines"
125-
url: "/extending/translation/"
125+
url: "/en/docs/extending/translation/"
126126
- title: "CNL Scope"
127-
url: "/extending/cnl-scope/"
127+
url: "/en/docs/extending/cnl-scope/"
128128
- title: "Contributing"
129-
url: "/contributing/"
129+
url: "/en/docs/contributing/"
130130
children:
131131
- title: "Development Guide"
132-
url: "/contributing/"
132+
url: "/en/docs/contributing/"
133133
- title: "Multilingual Docs Ops"
134-
url: "/contributing/multilingual-docs/"
134+
url: "/en/docs/contributing/multilingual-docs/"
135135

136136
# Collections
137137
collections:

_layouts/redirect.html

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<meta http-equiv="refresh" content="0; url={{ page.redirect_to | relative_url }}" />
6+
<link rel="canonical" href="{{ page.redirect_to | relative_url }}" />
7+
<title>Redirecting...</title>
8+
<script>
9+
window.location.replace("{{ page.redirect_to | relative_url }}");
10+
</script>
11+
</head>
12+
<body>
13+
<p>Redirecting to <a href="{{ page.redirect_to | relative_url }}">{{ page.redirect_to | relative_url }}</a>.</p>
14+
</body>
15+
</html>

design/related-work.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
layout: redirect
3+
permalink: /design/related-work/
4+
redirect_to: /en/docs/design/related-work/
5+
---

getting-started/index.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
layout: redirect
3+
permalink: /getting-started/
4+
redirect_to: /en/docs/getting-started/
5+
---

0 commit comments

Comments
 (0)