2024-07-10 22:36:24 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
2024-07-29 20:44:06 +00:00
|
|
|
<script src="/static/js/htmx.min.js"></script>
|
|
|
|
<script src="/static/js/_hyperscript.min.js"></script>
|
2024-07-10 22:36:24 +00:00
|
|
|
<title>Everything is Peachy</title>
|
2024-08-02 18:44:17 +00:00
|
|
|
<link rel="stylesheet" href="/static/css/picnic.css">
|
2024-07-29 20:44:06 +00:00
|
|
|
<link rel="stylesheet" href="/static/css/site.css">
|
|
|
|
{% if block.styles then for _, style in ipairs(block.styles) do %}
|
|
|
|
<link rel="stylesheet" href="{%& style %}">
|
|
|
|
{% end end %}
|
2024-07-10 22:36:24 +00:00
|
|
|
</head>
|
|
|
|
<body>
|
2024-07-29 20:44:06 +00:00
|
|
|
<h1>Peachy</h1>
|
2024-07-10 22:36:24 +00:00
|
|
|
{% function block.pagebody() %}
|
|
|
|
<h1>It works!</h1>
|
|
|
|
<p>But something seems to be missing…</p>
|
|
|
|
{% end %}
|
|
|
|
{% block.pagebody() %}
|
|
|
|
</body>
|
|
|
|
</html>
|