archetypes, list.html layouts, google analyticsafter </head>

This commit is contained in:
Franz Klotsche
2025-11-15 22:06:43 +01:00
parent bf3126ea00
commit 610f30eadf
19 changed files with 183 additions and 20 deletions

View File

@@ -1,7 +1,18 @@
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<meta name="author" content="{{ .Site.Params.author }}">
<meta name="description" content="{{ .Site.Params.description }}">
<link rel="stylesheet" href="{{ "css/style.css"
| relURL }}">
<title>{{ .Site.Title }}</title>
</head>
</head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-TT2JW5ZYFZ"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-TT2JW5ZYFZ');
</script>

View File

@@ -1,6 +1,8 @@
<nav>
<a href="/">Home</a>
<a href="/about">About</a>
<a href="/projects">Projects</a>
<a href="/presentations">Presentations</a>
<a href="/resume">Résumé</a>
<a href="/contact"></a>
<a href="/contact">Contact</a>
</nav>