keks.cloud/layouts/_default/baseof.html

32 lines
1.4 KiB
HTML
Raw Normal View History

2023-08-02 14:15:21 +00:00
<!DOCTYPE html>
2023-08-14 10:12:02 +00:00
<html lang="{{ .Site.LanguageCode }}" data-theme="lofi">
2023-08-02 14:15:21 +00:00
<head>
<title itemprop="name">{{ .Title }} | {{ .Site.Title }}</title>
2023-08-02 19:33:57 +00:00
<meta charset="utf-8">
2023-08-14 10:12:02 +00:00
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/css/style.css">
2023-08-14 10:20:52 +00:00
<link href="/fonts/remixicon.css" rel="stylesheet">
2023-08-14 10:12:02 +00:00
2023-08-02 14:15:21 +00:00
</head>
<body>
2023-08-14 10:12:02 +00:00
<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="hidden space-x-4 font-light text-xl flex items-center ">
<li class="inline-block text-gray-700 hover:text-sky-800"><a href="#">Home</a></li>
<li class="inline-block text-gray-700 hover:text-sky-800"><a href="#">Services</a></li>
<li class="inline-block text-gray-700 hover:text-sky-800"><a href="#">Price</a></li>
</ul>
<div class="hidden">
<a href="#" class="btn btn-primary bg-sky-800">Account</a>
</div>
</div>
<hr class="mt-3">
2023-08-02 14:15:21 +00:00
{{- block "main" . }}{{- end }}
</div>
2023-08-14 10:12:02 +00:00
2023-08-02 14:15:21 +00:00
</body>
</html>