website/src/ui/layout.lisp

23 lines
538 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-02-02 01:51:27 +09:00
<link href="/static/tailwind.css" rel="stylesheet">
<style>
@tailwind base;
@tailwind components;
@tailwind utilities;
</style>
2024-01-30 00:48:47 +09:00
</head>
2024-02-02 01:51:27 +09:00
<body class="h-[100svh]" >,@(progn children)</body>
2024-01-30 00:48:47 +09:00
</html>)