Came up with the pages/ directory that's templates which are rendered into public for the static pages.

This commit is contained in:
Zed A. Shaw 2025-07-04 11:31:15 -04:00
parent facc691343
commit f476605ecf
19 changed files with 795 additions and 61 deletions

9
pages/alpine_test.html Normal file
View file

@ -0,0 +1,9 @@
<html>
<head>
<script defer src="https://cdn.jsdelivr.net/npm/alpinejs@3.x.x/dist/cdn.min.js"></script>
</head>
<body>
<h1 x-data="{ message: 'I ❤️ Alpine' }" x-text="message"></h1>
</body>
</html>