7c13e1dfa2
deploy / deploy (push) Successful in 7s
Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01LH4fKwxX8hjAwXubP9N2tq
34 lines
1.1 KiB
HTML
34 lines
1.1 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>{{ if .IsHome }}{{ .Site.Title }} — {{ .Site.Params.tagline }}{{ else }}{{ .Title }} — {{ .Site.Title }}{{ end }}</title>
|
|
<link rel="icon" type="image/x-icon" href="{{ "favicon.ico" | relURL }}">
|
|
<link rel="icon" type="image/png" sizes="32x32" href="{{ "favicon.png" | relURL }}">
|
|
<link rel="apple-touch-icon" sizes="180x180" href="{{ "apple-touch-icon.png" | relURL }}">
|
|
<style>{{ (resources.Get "css/style.css").Content | safeCSS }}</style>
|
|
</head>
|
|
<body>
|
|
<header class="site-header">
|
|
<a class="brand" href="{{ "/" | relURL }}">
|
|
<img src="{{ "images/logo.png" | relURL }}" alt="{{ .Site.Title }}">
|
|
{{ .Site.Title }}
|
|
</a>
|
|
<nav>
|
|
<a href="{{ "/" | relURL }}">Home</a>
|
|
<a href="{{ "/shop/" | relURL }}">Shop</a>
|
|
<a href="{{ "/about/" | relURL }}">About</a>
|
|
</nav>
|
|
</header>
|
|
|
|
<main>
|
|
{{ block "main" . }}{{ end }}
|
|
</main>
|
|
|
|
<footer class="site-footer">
|
|
<p>© {{ now.Year }} {{ .Site.Title }}</p>
|
|
</footer>
|
|
</body>
|
|
</html>
|