taxonomy.html 533 B

1234567891011121314
  1. {{ define "main" }}
  2. <h1 class="text-2xl font-bold">Topic: {{ .Title }}</h1>
  3. <ul class="mt-4 space-y-4">
  4. {{ range .Data.Pages }}
  5. <li class="border-l border-gray-300 pl-4">
  6. <p class="text-xs text-gray-800"><time datetime="{{ .Date.Format " 2006-01-02" }}">{{ .Date.Format "January 2, 2006"
  7. }}</time></p>
  8. <a class="font-bold hover:text-green-900 underline" href="{{ .RelPermalink }}">{{ .Title }}</a>
  9. <p class="text-sm">{{ .Params.summary }}</p>
  10. {{ partial "tags.html" .}}
  11. </li>
  12. {{ end }}
  13. </ul>
  14. {{ end }}