keks.cloud/layouts/_default/baseof.html

46 lines
1.5 KiB
HTML

<!DOCTYPE html>
<html lang="{{ .Site.LanguageCode }}" data-theme="lofi">
<head>
<title itemprop="name">{{ .Title }} | {{ .Site.Title }}</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/css/style.css?v={{ .GitInfo.Hash }}">
<link href="/fonts/remixicon.css" rel="stylesheet">
</head>
<body>
<div class="container mx-auto font-roboto max-w-4xl">
<div class="flex flex-row justify-between mt-4">
<div>
<a href="/" class="no-underline"><h1 class="mt-0 mb-0">Keks.Cloud</h1></a>
</div>
<ul class="space-x-4 font-light text-xl hidden md:flex items-center ">
<li class="inline-block text-gray-700 hover:text-sky-800"><a class="no-underline" href="/software/">Software</a></li>
<li class="inline-block text-gray-700 hover:text-sky-800"><a class="no-underline" href="/services/">Services</a></li>
</ul>
<div class="dropdown dropdown-end md:hidden">
<label tabindex="0" class="btn m-1">Menu</label>
<ul tabindex="0" class="dropdown-content z-[1] menu p-2 shadow bg-base-100 rounded-box w-52">
<li><a href="/software">Software</a></li>
<li><a href="/services">Services</a></li>
</ul>
</div>
<div class="hidden">
<a href="#" class="btn btn-primary bg-sky-800">Account</a>
</div>
</div>
<hr class="mt-3">
{{- block "main" . }}{{- end }}
<p class="text-xs pt-5">
{{ if .GitInfo.AuthorDate }}
Last update: {{ .GitInfo.AuthorDate }}
{{ end }}
</p>
</div>
</body>
</html>