2023-05-18 20:04:55 -06:00
|
|
|
{{define "title"}}
|
|
|
|
Atridad Lahiji // Root
|
|
|
|
{{end}}
|
|
|
|
|
|
|
|
{{define "headercontent"}}
|
|
|
|
Atridad Lahiji // Root
|
|
|
|
{{end}}
|
|
|
|
|
|
|
|
{{define "head"}}
|
|
|
|
<link rel="stylesheet" href="/public/css/styles.home.css" />
|
|
|
|
{{end}}
|
|
|
|
|
|
|
|
{{define "main"}}
|
2024-03-27 14:52:28 -06:00
|
|
|
<h1 class="text-4xl font-extrabold text-white sm:text-8xl">
|
2024-03-27 15:01:02 -06:00
|
|
|
Hi, I'm <span
|
|
|
|
class="text-transparent bg-clip-text bg-gradient-to-r from-pink-500 via-purple-500 to-blue-500">Atridad</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]">
|
|
|
|
I'm a full stack developer who builds cool things for the web.
|
|
|
|
</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-02-19 01:53:57 -07:00
|
|
|
<script src="/public/js/htmx.base.js"></script>
|
2024-02-19 01:58:19 -07:00
|
|
|
<script src="/public/js/htmx.sse.js"></script>
|
2023-05-18 20:04:55 -06:00
|
|
|
<script src="/public/js/hyperscript.js"></script>
|
2024-03-27 14:52:28 -06:00
|
|
|
{{end}}
|