website/src/ui/layout.lisp

17 lines
348 B
Common Lisp
Raw Normal View History

2024-01-30 10:16:17 +09:00
(defpackage #:hp/ui/layout
2024-01-30 00:48:47 +09:00
(:use #:cl)
(:local-nicknames (#:mk #:markup))
2024-01-30 00:48:47 +09:00
(:export #:layout))
2024-01-30 10:16:17 +09:00
(in-package #:hp/ui/layout)
2024-01-30 00:48:47 +09:00
(markup:enable-reader)
(mk:deftag layout (children)
2024-01-30 00:48:47 +09:00
<html>
<head>
<title>skyizwhite.dev</title>
2024-02-01 21:30:28 +09:00
<script src="/static/htmx.min.js" ></script>
2024-01-30 00:48:47 +09:00
</head>
<body>,@(progn children)</body>
</html>)