feat: enable tailwind, committing out.css for now

This commit is contained in:
efim
2023-10-06 14:15:41 +00:00
parent ffd74c4222
commit f69cb661dc
7 changed files with 647 additions and 9 deletions

View File

@@ -2,8 +2,9 @@
Some page with content
{{ end }}
{{ define "content" }}
<h1>This is another page</h1>
{{ define "main" }}
<main class="flex flex-col gap-y-4 p-10 ">
<h1 class="text-2xl">This is another page</h1>
<p>Will be rendered on server</p>
<p>and locked under apis.RequireAdminOrRecordAuth default middleware</p>
<p>here are some random numbers</p>
@@ -11,4 +12,5 @@
<li>{{ .RandomNumber }}</li>
<li>{{ .RandomString }}</li>
</ul>
</main>
{{ end }}