Use new template system

This commit is contained in:
Florine W. Dekker 2021-04-16 01:00:36 +02:00
parent 95c07d3db6
commit 0bacdf1c7c
Signed by: FWDekker
GPG Key ID: B1B567AF58D6EE0F
5 changed files with 10 additions and 15 deletions

View File

@ -50,7 +50,7 @@ module.exports = grunt => {
},
webpack: {
options: {
entry: "./src/main/js/Main.js",
entry: "./src/main/js/main.js",
module: {
rules: [
{

BIN
package-lock.json generated

Binary file not shown.

View File

@ -1,6 +1,6 @@
{
"name": "privacy-policy",
"version": "1.1.1",
"version": "1.1.2",
"description": "The privacy policy of my website",
"author": "Felix W. Dekker",
"browser": "dist/bundle.js",
@ -15,9 +15,6 @@
"dev:server": "grunt dev:server",
"deploy": "grunt deploy"
},
"dependencies": {
"@fwdekker/template": "^0.0.25"
},
"devDependencies": {
"grunt": "^1.3.0",
"grunt-cli": "^1.4.2",
@ -27,7 +24,7 @@
"grunt-focus": "^1.0.0",
"grunt-text-replace": "^0.4.0",
"grunt-webpack": "^4.0.2",
"webpack": "^5.32.0",
"webpack": "^5.33.2",
"webpack-cli": "^4.6.0"
}
}

View File

@ -10,14 +10,15 @@
<title>Privacy policy</title>
<link rel="stylesheet" href="https://static.fwdekker.com/fonts/roboto.css" crossorigin="anonymous" />
<link rel="stylesheet" href="https://static.fwdekker.com/lib/template/1.x.x/bundle.css" crossorigin="anonymous" />
</head>
<body>
<noscript>
<span style="color: red; font-weight: bold;">
This website does not function fully if JavaScript is disabled.
<p style="color: red; font-weight: bold;">
This website does not function if JavaScript is disabled.
Please check the <a href="https://www.enable-javascript.com/">
instructions on how to enable JavaScript in your web browser</a>.
</span>
</p>
</noscript>
<main> <!-- Do not hide without JavaScript -->
<div id="nav"></div>
@ -66,6 +67,7 @@
<!-- Scripts -->
<script src="https://static.fwdekker.com/lib/template/1.x.x/bundle.js" crossorigin="anonymous"></script>
<!--suppress HtmlUnknownTarget -->
<script src="bundle.js?v=%%VERSION_NUMBER%%"></script>
</body>

View File

@ -1,15 +1,11 @@
import {$, doAfterLoad, footer, header, nav, showPage} from "@fwdekker/template";
// noinspection JSUnresolvedVariable
const {$, doAfterLoad, footer, header, nav, showPage} = window.fwdekker;
doAfterLoad(() => {
$("#nav").appendChild(nav("/Privacy/"));
$("#header").appendChild(header({title: "Privacy policy"}));
$("#footer").appendChild(footer({
author: "Felix W. Dekker",
authorURL: "https://fwdekker.com/",
license: "MIT License",
licenseURL: "https://git.fwdekker.com/FWDekker/privacy-policy/src/branch/master/LICENSE",
vcs: "git",
vcsURL: "https://git.fwdekker.com/FWDekker/privacy-policy/",
version: "v%%VERSION_NUMBER%%",
privacyPolicyURL: null