Update dependencies, use local fonts

This commit is contained in:
Florine W. Dekker 2021-03-26 04:01:20 +01:00
parent 5a7ff2aadf
commit 91698717d9
Signed by: FWDekker
GPG Key ID: B1B567AF58D6EE0F
4 changed files with 8 additions and 8 deletions

BIN
package-lock.json generated

Binary file not shown.

View File

@ -16,18 +16,18 @@
"deploy": "grunt deploy" "deploy": "grunt deploy"
}, },
"dependencies": { "dependencies": {
"@fwdekker/template": "^0.0.21" "@fwdekker/template": "^0.0.24"
}, },
"devDependencies": { "devDependencies": {
"grunt": "^1.3.0", "grunt": "^1.3.0",
"grunt-cli": "^1.3.2", "grunt-cli": "^1.4.1",
"grunt-contrib-clean": "^2.0.0", "grunt-contrib-clean": "^2.0.0",
"grunt-contrib-copy": "^1.0.0", "grunt-contrib-copy": "^1.0.0",
"grunt-contrib-watch": "^1.1.0", "grunt-contrib-watch": "^1.1.0",
"grunt-focus": "^1.0.0", "grunt-focus": "^1.0.0",
"grunt-text-replace": "^0.4.0", "grunt-text-replace": "^0.4.0",
"grunt-webpack": "^4.0.2", "grunt-webpack": "^4.0.2",
"webpack": "^4.44.1", "webpack": "^5.28.0",
"webpack-cli": "^3.3.12" "webpack-cli": "^4.5.0"
} }
} }

View File

@ -9,8 +9,7 @@
<meta name="theme-color" content="#0033cc" /> <meta name="theme-color" content="#0033cc" />
<title>Privacy policy</title> <title>Privacy policy</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,300italic,700,700italic" <link rel="stylesheet" href="https://static.fwdekker.com/fonts/roboto.css" crossorigin="anonymous" />
crossorigin="anonymous" />
</head> </head>
<body> <body>
<noscript> <noscript>
@ -20,7 +19,7 @@
instructions on how to enable JavaScript in your web browser</a>. instructions on how to enable JavaScript in your web browser</a>.
</span> </span>
</noscript> </noscript>
<main> <main> <!-- Do not hide without JavaScript -->
<div id="nav"></div> <div id="nav"></div>
<div id="contents"> <div id="contents">
<div id="header"></div> <div id="header"></div>

View File

@ -1,4 +1,4 @@
import {$, doAfterLoad, footer, header, nav} from "@fwdekker/template"; import {$, doAfterLoad, footer, header, nav, showPage} from "@fwdekker/template";
doAfterLoad(() => { doAfterLoad(() => {
@ -14,4 +14,5 @@ doAfterLoad(() => {
version: "v%%VERSION_NUMBER%%", version: "v%%VERSION_NUMBER%%",
privacyPolicyURL: null privacyPolicyURL: null
})); }));
showPage();
}); });