2023-05-18 20:04:55 -06:00
|
|
|
{{define "title"}}
|
|
|
|
Atridad Lahiji // Root
|
|
|
|
{{end}}
|
|
|
|
|
|
|
|
{{define "headercontent"}}
|
|
|
|
Atridad Lahiji // Root
|
|
|
|
{{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>
|
|
|
|
<h2 class="mb-2 text-xl text-white sm:text-[1.5rem]">Places I exist:</h2>
|
|
|
|
<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>
|
|
|
|
<h2 class="mb-2 text-xl text-white sm:text-[1.5rem]">Stuff I Use:</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}}
|