webdog/site/templates/base.hbs
2024-10-23 20:28:01 -07:00

48 lines
1.2 KiB
Handlebars

<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="referrer" content="no-referrer">
<link rel="stylesheet" href="/styles/index.css">
<title>{{title}}</title>
<script type="text/javascript" src="/js/pet-me.js" defer></script>
{{{head}}}
{{#each scripts}}
<script type="text/javascript" src="{{this}}" defer></script>
{{/each}}
{{#each styles}}
<link rel="stylesheet" href="/styles/{{this}}">
{{/each}}
</head>
<body>
<header class="main-header">
<span>
<a class="name" href="/">zyl's website</a> |
<span class="pronouns">it/puppy(/she)</span>
</span>
<span class="spacer"></span>
<a href="/pet">creature</a> |
<a href="/projects">my projects</a> |
<a href="/blog/">blog</a> |
<a href="/images/">images</a> |
<a href="/pay-me">pay me!</a> |
<a href="https://github.com/zyllian/zyllian.github.io" rel="noopener noreferrer">source</a>
</header>
<div id="content">
<main class="page">
{{{page}}}
</main>
</div>
<div id="pet-counter">
<noscript>enable js to pet me :3</noscript>
<div class="internal">
<span class="count">???</span> pets
<button>pet me :3</button>
</div>
</div>
</body>
</html>