diff --git a/package-lock.json b/package-lock.json index bdf7e8a..f9bb4fc 100644 Binary files a/package-lock.json and b/package-lock.json differ diff --git a/package.json b/package.json index 0d187f6..b66c2db 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@fwdekker/template", - "version": "3.6.4", + "version": "3.6.5", "description": "The base template for pages on fwdekker.com.", "author": "Florine W. Dekker", "license": "MIT", diff --git a/src/main/js/Template.ts b/src/main/js/Template.ts index c7b8926..7994071 100644 --- a/src/main/js/Template.ts +++ b/src/main/js/Template.ts @@ -199,7 +199,7 @@ function footer( if (author === undefined) author = "Florine W. Dekker"; if (authorURL === undefined) authorURL = "https://fwdekker.com/"; if (license === undefined) license = "MIT"; - if (licenseURL === undefined && vcsURL !== undefined) licenseURL = `${vcsURL}src/branch/master/LICENSE`; + if (licenseURL === undefined && vcsURL !== undefined) licenseURL = `${vcsURL}src/branch/main/LICENSE`; if (vcs === undefined && vcsURL !== undefined) vcs = "git"; if (privacyPolicyURL === undefined) privacyPolicyURL = "https://fwdekker.com/privacy/";