pcmt/templates/index.tmpl
leo ce70bbe196
All checks were successful
continuous-integration/drone/push Build is passing
index.tmpl: credit gopher design
2023-05-03 06:07:32 +02:00

21 lines
885 B
Go HTML Template

{{ template "head.tmpl" . }}
<body class="h-screen bg-white dark:bg-gray-900">
{{ template "navbar.tmpl" . }}
<main class="grow">
<div class="container mx-auto">
<!-- <div class="container w-full p-8 items-center"> -->
<figure align="mx-auto text-center">
<img src="/static/img/logo-pcmt.svg" alt="pcmt logo" class="mx-auto"/>
<figcaption class="mx-auto text-center text-xs italic text-purple-500 dark:text-purple-300">
pcmt gopher logo based on Egon Elbre's <a href="https://github.com/egonelbre/gophers" target="_blank" class="underline hover:text-purple-600 dark:text-purple-400">awesome Gopher designs</a>.
</figcaption>
</figure>
</div>
<div class="container mx-auto text-center">
<h1 class="p-2 mt-10 text-2xl font-bold text-purple-600 dark:text-purple-400">
Welcome to <code>pcmt</code>, friend!
</h1>
</div>
</main>
{{ template "footer.tmpl" . }}