index.html 337 B

12345678910111213
  1. {{ define "main" }}
  2. <article class="prose lg:prose-xl">
  3. <h1>Tailwind 3 Hugo Starter</h1>
  4. <h2 class="text-4xl">Testing Tailwind 3 Features</h2>
  5. <div>
  6. <button class="bg-[green] p-4">Share on Twitter</button>
  7. </div>
  8. <h2 class="text-4xl">Markdowns: {{ .Title }}</h2>
  9. {{ .Content }}..
  10. </article>
  11. {{ end }}