53 lines
1.6 KiB
Plaintext
53 lines
1.6 KiB
Plaintext
<!doctype html>
|
|
<html lang="{{ currentLocale }}">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>{{ template "title" . }} — Numerus</title>
|
|
<link rel="stylesheet" type="text/css" media="screen" href="/static/numerus.css">
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<h1><img src="/static/numerus.svg" alt="Numerus" width="261" height="33"></h1>
|
|
<details id="profile-menu">
|
|
<summary>
|
|
<i class="ri-eye-close-line ri-3x"></i>
|
|
</summary>
|
|
<ul role="menu">
|
|
<li role="presentation">
|
|
<a role="menuitem" href="{{ companyURI "/profile" }}">
|
|
<i class="ri-account-circle-line"></i>
|
|
{{( pgettext "Account" "menu" )}}
|
|
</a>
|
|
</li>
|
|
<li role="presentation">
|
|
<a role="menuitem" href="{{ companyURI "/tax-details" }}">
|
|
<i class="ri-vip-diamond-line"></i>
|
|
{{( pgettext "Tax Details" "menu" )}}
|
|
</a>
|
|
</li>
|
|
<li role="presentation">
|
|
<form method="POST" action="/logout">
|
|
{{ csrfToken }}
|
|
<button type="submit" role="menuitem">
|
|
<i class="ri-logout-circle-line"></i>
|
|
{{( pgettext "Logout" "action" )}}
|
|
</button>
|
|
</form>
|
|
</li>
|
|
</ul>
|
|
</details>
|
|
</header>
|
|
<nav aria-label="{{( pgettext "Main" "title" )}}">
|
|
<ul>
|
|
<li><a href="{{ companyURI "/" }}">{{( pgettext "Dashboard" "nav" )}}</a></li>
|
|
<li><a href="{{ companyURI "/products" }}">{{( pgettext "Products" "nav" )}}</a></li>
|
|
<li><a href="{{ companyURI "/contacts" }}">{{( pgettext "Contacts" "nav" )}}</a></li>
|
|
</ul>
|
|
</nav>
|
|
<main>
|
|
{{- template "content" . }}
|
|
</main>
|
|
</body>
|
|
</html>
|