32 lines
743 B
HTML
32 lines
743 B
HTML
---
|
|
navbar: topnav
|
|
---
|
|
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>{{ page.title }}</title>
|
|
<link rel="stylesheet" href="/assets/css/styles.css">
|
|
</head>
|
|
<body>
|
|
{% if page.neko == "true" %}
|
|
{% include neko.html %}
|
|
{% endif %}
|
|
<script data-goatcounter="https://slimepondcount.goatcounter.com/count" async src="//gc.zgo.at/count.js"></script>
|
|
|
|
<div class="columns">
|
|
<div class="left-sidebar">
|
|
{% if layout.navbar != "" %}
|
|
{% include {{layout.navbar}}.html %}
|
|
{% endif %}
|
|
</div>
|
|
<div class="main-content">{{ content }}</div>
|
|
<div class="right-sidebar">
|
|
<img src="https://slimepondcount.goatcounter.com/counter/{{ page.url }}.png" width: 100%>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
</body>
|
|
</html>
|