Template
1
0
Fork 0
goth.stack/pages/templates/home.html

55 lines
1.2 KiB
HTML
Raw Normal View History

2023-05-18 20:04:55 -06:00
{{define "title"}}
2024-11-03 17:01:48 -06:00
GOTH Stack // Root
2023-05-18 20:04:55 -06:00
{{end}}
2025-01-12 14:51:43 -06:00
{{define "description"}}
HTMX + Golang + Go Template Starter
{{end}}
{{define "navcontent"}}
GOTH Stack // Root
2023-05-18 20:04:55 -06:00
{{end}}
{{define "head"}}
2024-05-07 18:03:54 -06:00
<link rel="stylesheet" href="/public/css/styles.css" />
2023-05-18 20:04:55 -06:00
{{end}}
{{define "main"}}
2024-08-06 14:37:44 -06:00
2024-03-27 14:52:28 -06:00
<h1 class="text-4xl font-extrabold text-white sm:text-8xl">
2024-08-06 14:37:44 -06:00
<span class="bg-gradient-to-r from-pink-500 to-blue-500 bg-clip-text text-transparent">{{.Title}}</span>
2024-03-27 14:52:28 -06:00
</h1>
2023-05-18 20:04:55 -06:00
2024-03-27 14:52:28 -06:00
<h2 class="text-2xl font-extrabold tracking-tight text-white sm:text-[2rem]">
2024-08-06 14:37:44 -06:00
{{.Subtitle}}
2024-03-27 14:52:28 -06:00
</h2>
2023-05-18 20:04:55 -06:00
2024-03-27 14:52:28 -06:00
<span>
2024-11-03 17:01:48 -06:00
<h2 class="mb-2 text-xl text-white sm:text-[1.5rem]">Links:</h2>
2024-03-27 14:52:28 -06:00
<div class="flex flex-row flex-wrap items-center justify-center gap-4 text-center">
{{range .Socials}}
2024-04-12 11:31:41 -06:00
{{template "iconlinks" .}}
2024-03-27 14:52:28 -06:00
{{end}}
</div>
</span>
2023-05-18 20:04:55 -06:00
2024-03-27 14:52:28 -06:00
<span>
2024-11-03 17:01:48 -06:00
<h2 class="mb-2 text-xl text-white sm:text-[1.5rem]">Tech Stack:</h2>
2024-04-12 11:31:41 -06:00
2024-03-27 14:52:28 -06:00
<div class="flex flex-row flex-wrap items-center justify-center gap-4 text-center">
{{range .Tech}}
2024-04-12 11:31:41 -06:00
{{template "iconlinks" .}}
2024-03-27 14:52:28 -06:00
{{end}}
2023-05-18 20:04:55 -06:00
</div>
2024-03-27 14:52:28 -06:00
</span>
2024-04-12 13:55:20 -06:00
<div class="flex flex-row flex-wrap gap-2 mx-auto justify-center">
2024-04-12 11:31:41 -06:00
{{range .ButtonsLinks}}
{{template "buttonlinks" .}}
{{end}}
2024-03-27 14:52:28 -06:00
</div>
2023-05-18 20:04:55 -06:00
{{end}}
{{define "foot"}}
2024-10-30 23:50:34 -06:00
{{end}}