36 lines
1.1 KiB
Plaintext
36 lines
1.1 KiB
Plaintext
<!--
|
|
SPDX-FileCopyrightText: 2023 jordi fita mas <jordi@tandem.blog>
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
-->
|
|
<!doctype html>
|
|
<html lang="{{ currentLocale }}">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>{{ template "title" . }} — Camper</title>
|
|
<link rel="stylesheet" media="screen" href="/static/camper.css">
|
|
<script type="module" src="/static/camper.js"></script>
|
|
<script src="/static/htmx@1.9.3.min.js"></script>
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<a href="#main">{{( gettext "Skip to main content" )}}</a>
|
|
<h1>camper _ws</h1>
|
|
{{ if isLoggedIn -}}
|
|
<button data-hx-delete="/me/session" data-hx-headers='{ {{ CSRFHeader }} }'
|
|
>{{( pgettext "Logout" "action" )}}</button>
|
|
{{- end }}
|
|
</header>
|
|
<main id="main">
|
|
{{- template "content" . }}
|
|
</main>
|
|
</body>
|
|
</html>
|
|
|
|
{{ define "error-attrs" }}{{ if .Error }}aria-invalid="true" aria-errormessage="{{ .Name }}-error"{{ end }}{{ end }}
|
|
{{ define "error-message" -}}
|
|
{{ if .Error -}}
|
|
<span id="{{ .Name }}-error" class="error">{{ .Error }}</span><br>
|
|
{{- end }}
|
|
{{- end }}
|