init
This commit is contained in:
commit
72ef5ae639
12 changed files with 174 additions and 0 deletions
src/components
16
src/components/layout.lisp
Normal file
16
src/components/layout.lisp
Normal file
|
@ -0,0 +1,16 @@
|
|||
(defpackage #:hp/components/layout
|
||||
(:use #:cl)
|
||||
(:import-from #:markup)
|
||||
(:export #:layout))
|
||||
(in-package #:hp/components/layout)
|
||||
|
||||
(markup:enable-reader)
|
||||
|
||||
(markup:deftag layout (children)
|
||||
<html>
|
||||
<head>
|
||||
<title>skyizwhite.dev</title>
|
||||
<script src="https://unpkg.com/htmx.org@1.3.1"></script>
|
||||
</head>
|
||||
<body>,@(progn children)</body>
|
||||
</html>)
|
Loading…
Add table
Add a link
Reference in a new issue