mirror of
https://github.com/osmarks/mycorrhiza.git
synced 2024-10-30 19:56:16 +00:00
26 lines
877 B
HTML
26 lines
877 B
HTML
<html>
|
|
<head>
|
|
<title>{{ .Title }}</title>
|
|
{{ .Head }}
|
|
</head>
|
|
<body>
|
|
<div class="shroom">
|
|
<button class="shroom__button" id="shroomBtn"><span>🍄</span> Open mycelium</button>
|
|
</div>
|
|
<main class="main">{{ .Main }}</main>
|
|
<div class="left-panel" id="shroomburgerMenu">
|
|
<div class="left-panel__in">
|
|
<div class="shroom mushroom">
|
|
<button class="shroom__button" id="mushroomBtn"><span>🍄</span> Close mycelium</button>
|
|
</div>
|
|
<div class="left-panel__contents">
|
|
<header class="header">{{ .Header }}</header>
|
|
<aside class="sidebar">{{ .Sidebar }}</aside>
|
|
<footer class="footer">{{ .Footer }}</footer>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{{ .BodyBottom }}
|
|
</body>
|
|
</html>
|