Skip to content

Commit d0c8004

Browse files
🐛 Fix oude pad-verwijzingen
1 parent 9b78da3 commit d0c8004

File tree

29 files changed

+311
-219
lines changed

29 files changed

+311
-219
lines changed

.eleventy.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ module.exports = function (eleventyConfig) {
1414
eleventyConfig.addPassthroughCopy("assets");
1515
eleventyConfig.addPassthroughCopy("style");
1616
eleventyConfig.addPassthroughCopy("tokens");
17-
eleventyConfig.addPassthroughCopy("_gebruikersonderzoek");
17+
eleventyConfig.addPassthroughCopy("gebruikersonderzoek");
1818

1919
return {
20-
pathPrefix: "/MOx/",
20+
pathPrefix: "/poc-moza/",
2121
dir: {
2222
input: ".",
2323
includes: "_includes",

_site/componenten/index.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@
44
<meta charset="utf-8">
55
<meta name="viewport" content="width=device-width, initial-scale=1.0">
66
<title>MOx design systeem: Componenten</title>
7-
<link rel="stylesheet" href="/MOx/style/style.css">
7+
<link rel="stylesheet" href="/poc-moza/style/style.css">
88
<meta name="description" content="MijnOverheid Zakelijk">
9-
<link rel="shortcut icon" href="/MOx/assets/favicon/favicon.ico" type="image/x-icon">
10-
<link rel="icon" sizes="192x192" href="/MOx/assets/favicon/touch-icon.png">
11-
<link rel="apple-touch-icon" href="/MOx/assets/favicon/apple-touch-icon.png">
9+
<link rel="shortcut icon" href="/poc-moza/assets/favicon/favicon.ico" type="image/x-icon">
10+
<link rel="icon" sizes="192x192" href="/poc-moza/assets/favicon/touch-icon.png">
11+
<link rel="apple-touch-icon" href="/poc-moza/assets/favicon/apple-touch-icon.png">
1212

1313
</head>
1414
<body>
@@ -17,7 +17,7 @@
1717
<header>
1818
<figure class="logo">
1919
<a href="/">
20-
<img src="/MOx/assets/images/beeldmerk-rijksoverheid.svg" alt="Naar de homepage van MijnOverheid Zakelijk">
20+
<img src="/poc-moza/assets/images/beeldmerk-rijksoverheid.svg" alt="Naar de homepage van MijnOverheid Zakelijk">
2121
</a>
2222
</figure>
2323

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,6 @@
2828
U wordt doorgestuurd naar
2929
<a href="{{ '/moza/' | url }}">MijnOverheid Zakelijk</a>.
3030
</p> -->
31-
<a class="mozres-link-1" href="/MOx/moza/"></a>
31+
<a class="mozres-link-1" href="/poc-moza/moza/" aria-label="Inloggen met DigiD"></a>
3232
</body>
3333
</html>
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
<!doctype html>
2+
<html lang="nl">
3+
<head>
4+
<meta charset="utf-8" />
5+
<!-- <meta http-equiv="refresh" content="0; url=/poc-moza/moza/" /> -->
6+
<title>DigiD: Inloggen | Keuze</title>
7+
<style>
8+
body {
9+
align-items: end;
10+
background: url(digid.nl.png);
11+
background-position: 50% 0;
12+
display: flex;
13+
flex-direction: column;
14+
height: 100vh;
15+
margin: 0 auto;
16+
max-width: 1180px;
17+
}
18+
.mozres-link-1 {
19+
height: 92px;
20+
width: 352px;
21+
margin-block-start: 220px;
22+
margin-inline: auto;
23+
}
24+
</style>
25+
</head>
26+
<body>
27+
<!-- <p>
28+
U wordt doorgestuurd naar
29+
<a href="/poc-moza/moza/">MijnOverheid Zakelijk</a>.
30+
</p> -->
31+
<a class="mozres-link-1" href="/poc-moza/moza/" aria-label="Inloggen met DigiD"></a>
32+
</body>
33+
</html>

_gebruikersonderzoek/_gebruikersonderzoek.html renamed to _site/gebruikersonderzoek/gebruikersonderzoek.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
</head>
88
<style>
99
body {
10-
background: url(_gebruikersonderzoek/ondernemersplein.png);
10+
background: url(ondernemersplein.png);
1111
}
1212
</style>
1313
</html>
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<!doctype html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
6+
<title>Ondernemersplein | Alles van de overheid op één plek</title>
7+
</head>
8+
<style>
9+
body {
10+
background: url(ondernemersplein.png);
11+
}
12+
</style>
13+
</html>
File renamed without changes.
File renamed without changes.

_site/index.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
33
<html lang="nl">
44
<head>
55
<meta charset="utf-8" />
6-
<!-- <meta http-equiv="refresh" content="0; url=/MOx/moza/" /> -->
6+
<!-- <meta http-equiv="refresh" content="0; url=/poc-moza/moza/" /> -->
77
<title>Ondernemersplein | Alles van de overheid op één plek</title>
88
<style>
99
body {
1010
align-items: end;
11-
background: url(_gebruikersonderzoek/ondernemersplein.png);
11+
background: url(gebruikersonderzoek/ondernemersplein.png);
1212
background-position: 50% 0;
1313
display: flex;
1414
flex-direction: column;
@@ -43,9 +43,9 @@
4343
<body>
4444
<!-- <p>
4545
U wordt doorgestuurd naar
46-
<a href="/MOx/moza/">MijnOverheid Zakelijk</a>.
46+
<a href="/poc-moza/moza/">MijnOverheid Zakelijk</a>.
4747
</p> -->
48-
<a class="mozres-link-1" href="/MOx/_gebruikersonderzoek/digid.html" aria-label="Inloggen bij MijnOverheid Zakelijk"></a>
49-
<a class="mozres-link-2" href="/MOx/_gebruikersonderzoek/digid.html" aria-label="Inloggen"></a>
48+
<a class="mozres-link-1" href="/poc-moza/gebruikersonderzoek/digid.html" aria-label="Inloggen bij MijnOverheid Zakelijk"></a>
49+
<a class="mozres-link-2" href="/poc-moza/gebruikersonderzoek/digid.html" aria-label="Inloggen"></a>
5050
</body>
5151
</html>

0 commit comments

Comments
 (0)