website/src/ui/layout.lisp

17 lines
360 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>
<script src="https://unpkg.com/htmx.org@1.3.1"></script>
</head>
<body>,@(progn children)</body>
</html>)