chore: Setup tailwindcss using Standalone CLI
This commit is contained in:
3
templates/assets/css/input.css
Normal file
3
templates/assets/css/input.css
Normal file
@ -0,0 +1,3 @@
|
||||
@tailwind base;
|
||||
@tailwind components;
|
||||
@tailwind utilities;
|
1
templates/hello.html
Normal file
1
templates/hello.html
Normal file
@ -0,0 +1 @@
|
||||
Hello, {{ name }}!
|
13
templates/index.html
Normal file
13
templates/index.html
Normal file
@ -0,0 +1,13 @@
|
||||
<html>
|
||||
<head>
|
||||
<title>Krys4lide</title>
|
||||
<script src="https://unpkg.com/htmx.org@2.0.0/dist/htmx.js" integrity="sha384-Xh+GLLi0SMFPwtHQjT72aPG19QvKB8grnyRbYBNIdHWc2NkCrz65jlU7YrzO6qRp" crossorigin="anonymous"></script>
|
||||
<link href="/assets/css/style.css" rel="stylesheet">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<h1 class="test text-3xl font-bold underline">Krys4lide</h1>
|
||||
<button hx-get="/hello" hx-target="#hello">Hello!</button>
|
||||
<div id="hello"></div>
|
||||
</body>
|
||||
</html>
|
Reference in New Issue
Block a user