create new html views

This commit is contained in:
2025-11-11 20:55:18 +07:00
parent a9da83e6ab
commit 697c5bc428
9 changed files with 195 additions and 162 deletions

View File

@@ -0,0 +1,9 @@
{{ block "projects-partial" . }}
<h2 class="text-3xl font-bold mb-6">Projects</h2>
{{ range . }} {{ template "project-partial-range" . }} {{ end}} {{ end }} {{
block "project-partial-range" . }}
<div class="mb-4">
<a href="{{ .Link }}" class="text-blue-600 hover:underline">{{ .Title }}</a> -
{{ .Description }}
</div>
{{ end }}