aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/templates
diff options
context:
space:
mode:
authorKevin Hoerr <kjhoerr@protonmail.com>2023-12-23 23:59:02 -0500
committerGitHub <noreply@github.com>2023-12-23 23:59:02 -0500
commit3140267ea0a3b37032003992695afd7dc1f4f46c (patch)
tree8fa8dc00f62bcaaa0c5cfac3cec199c45dd5f29c /src/templates
parent23cc0d2f06958720b694660cd8c7e4125d09b231 (diff)
downloadsubmelon.dev-3140267ea0a3b37032003992695afd7dc1f4f46c.tar.gz
submelon.dev-3140267ea0a3b37032003992695afd7dc1f4f46c.tar.bz2
submelon.dev-3140267ea0a3b37032003992695afd7dc1f4f46c.zip
De gatsby (#326)
* de-gatsby * Add inversed image for dark background * eleventy * Reinstate workflows to prior state * Strip inline styling for index image * Passthrough src/public/ files * Use global data to encode build date encoded string * Clean public directory before build * Reinstall eslint, prettier * Reinstate .gitattributes for public dir * build.yml: escape config file for version numbering * Revert public changes for PR validation * Rename src/public/ to src/static/ * Include github-actions in dependabot updates * re-establish typescript * Update prevent-file-change-action to v1.5.1 * Re-add typescript to linting * Re-add typescript for eslint * Fix whitespace diff for tsconfig.json * Fix whitespace in .eslintrc.json
Diffstat (limited to 'src/templates')
-rw-r--r--src/templates/layouts/page.njk37
1 files changed, 37 insertions, 0 deletions
diff --git a/src/templates/layouts/page.njk b/src/templates/layouts/page.njk
new file mode 100644
index 0000000..adf9e7f
--- /dev/null
+++ b/src/templates/layouts/page.njk
@@ -0,0 +1,37 @@
+<!DOCTYPE html>
+<html lang="en">
+ <head>
+ <meta charSet="utf-8"/>
+ <meta http-equiv="x-ua-compatible" content="ie=edge"/>
+ <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"/>
+ <meta name="theme-color" content="#e1e1e1"/>
+ <meta name="description" content="The official website of Kevin Hoerr, developer of websites."/>
+ <meta name="twitter:description" content="The official website of Kevin Hoerr, developer of websites."/>
+ <meta name="twitter:title" content="Kevin J Hoerr &lt;kjhoerr&#64;submelon.tech&gt;"/>
+ <meta name="twitter:creator" content="Kevin J Hoerr"/>
+ <meta name="twitter:card" content="summary"/>
+ <meta name="generator" content="{{ eleventy.generator }}">
+ <link rel="stylesheet" href="/styles.css"/>
+ <link rel="icon" href="/favicon-32x32.png" type="image/png"/>
+ <link rel="manifest" href="/manifest.webmanifest"/>
+ <link rel="apple-touch-icon" sizes="48x48" href="/icons/icon-48x48.png"/>
+ <link rel="apple-touch-icon" sizes="72x72" href="/icons/icon-72x72.png"/>
+ <link rel="apple-touch-icon" sizes="96x96" href="/icons/icon-96x96.png"/>
+ <link rel="apple-touch-icon" sizes="144x144" href="/icons/icon-144x144.png"/>
+ <link rel="apple-touch-icon" sizes="192x192" href="/icons/icon-192x192.png"/>
+ <link rel="apple-touch-icon" sizes="256x256" href="/icons/icon-256x256.png"/>
+ <link rel="apple-touch-icon" sizes="384x384" href="/icons/icon-384x384.png"/>
+ <link rel="apple-touch-icon" sizes="512x512" href="/icons/icon-512x512.png"/>
+ <title>Kevin J Hoerr &lt;kjhoerr&#64;submelon.tech&gt;</title>
+ </head>
+ <body>
+ <main>
+ <article>
+ {{ content | safe }}
+ </article>
+ <footer>
+ <span>&copy;2023 kjhoerr@https://submelon.dev/:{{ buildTimeEncoded }}</span>
+ </footer>
+ </main>
+ </body>
+</html> \ No newline at end of file