pcmt/templates/index.tmpl
leo f129606b8f
All checks were successful
continuous-integration/drone/push Build is passing
add bulk changes
* add handlers for signin,singup,logout...
* introduce ent ORM and add user schema
* add live mode, devel mode to selectively turn on features via
  config/flags
* add templates, handle embedding moar smarter:
  * live mode uses live folder structure, else embedded templates are
    used
* start using tailwindcss to style stuff
* add development goodies for hot-reloading (browser-sync - bs.js)
* pimp-up config.dhall with actual custom config Type (enables remote
  schema and local values only as needed)
* add justfile (alternative to makefile for process automation)
2023-04-13 00:07:08 +02:00

16 lines
524 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"> -->
<img src="/static/img/logo-pcmt.svg" alt="pcmt logo" class="mx-auto"/>
</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" . }}