25 lines
769 B
HTML
25 lines
769 B
HTML
<html>
|
|
<head>
|
|
<title>{{ .Title }}</title>
|
|
<link rel="stylesheet" href="/:sys/theme/default-light/main.css?action=raw">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
</head>
|
|
<body>
|
|
<header class="header">
|
|
<!-- Site title is fetched from your config.json. Set your title in "site-title" field. You can add more things to the header here. -->
|
|
<h1 class="header__site-title">
|
|
<a href="/">{{ .SiteTitle }}</a>
|
|
</h1>
|
|
<button class="sidebar-controller" id="shroomburger">
|
|
≡
|
|
</button>
|
|
</header>
|
|
<!-- <main> and <aside> are in .Content -->
|
|
{{ .Content }}
|
|
<footer>
|
|
{{index .Locale "this site runs mycowiki"}}
|
|
</footer>
|
|
<script src="/:sys/theme/default-light/main.js?action=raw"></script>
|
|
</body>
|
|
</html>
|