This repository has been archived on 2025-08-09. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
web-app-template/templates/header.templ
Tim 9c7d7e2cb3
All checks were successful
Build Docker Image / Explore-Gitea-Actions (push) Successful in 46s
#109 switch svelte to SSR with go
2024-08-24 22:08:58 +02:00

13 lines
368 B
Plaintext

package templates
templ header() {
<div class="flex justify-end items-center gap-2 py-1 px-2 md:gap-10 md:px-10 md:py-2 shadow">
<a href="/" class="flex-1 flex gap-2">
<img src="/static/favicon.svg" alt="ME-FIT logo"/>
<span>ME-FIT</span>
</a>
<a href="/signup" class="btn btn-sm">Sign Up</a>
<a href="/signin" class="btn btn-sm">Sign In</a>
</div>
}