have alpine going...

This commit is contained in:
Peter Harpending 2025-09-16 15:52:41 -07:00
parent c63436e380
commit eeb149e6e5

View File

@ -3,8 +3,10 @@
<head> <head>
<meta charset="utf-8"> <meta charset="utf-8">
<title>FEWD Hello!</title> <title>FEWD Hello!</title>
<script defer src="https://cdn.jsdelivr.net/npm/alpinejs@3.x.x/dist/cdn.min.js"></script>
</head> </head>
<body> <body>
<h1>Hello world!</h1> <h1 x-data = "{message: 'Hello, Alpine!'}"
x-text = "message"></h1>
</body> </body>
</html> </html>