1
0
Fork 0
mirror of https://github.com/miawinter98/just-short-it.git synced 2024-09-20 09:48:59 +00:00
just-short-it/Pages/Shared/_Layout.cshtml

50 lines
1.9 KiB
Plaintext
Raw Normal View History

2023-04-15 13:40:46 +00:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>@ViewData["Title"] - JustShortIt</title>
2023-11-18 12:11:12 +00:00
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
2023-11-18 02:10:37 +00:00
<link rel="stylesheet" href="/css/main.min.css" asp-append-version="true" />
2023-04-15 13:40:46 +00:00
</head>
2023-11-18 02:10:37 +00:00
<body class="flex flex-col min-h-screen">
<nav class="navbar bg-primary text-primary-content p-0 min-h-0" aria-label="main navigation">
<div class="flex-1">
2023-11-18 12:11:12 +00:00
<a class="btn btn-ghost rounded-none px-6" href="https://github.com/miawinter98/just-short-it" target="_blank">
<figure>
<img class="w-8 h-8" src="/img/jsi-logo.png" width="400" alt="" />
</figure>
Just Short It!
</a>
2023-04-15 13:40:46 +00:00
</div>
2023-11-18 02:10:37 +00:00
<div class="flex-none mr-6">
<partial name="_LoginPartial"/>
2023-04-15 13:40:46 +00:00
</div>
</nav>
2023-11-18 02:10:37 +00:00
<main class="flex-1 container mx-auto px-8 py-8 grid">
2023-04-15 13:40:46 +00:00
@RenderBody()
</main>
2023-11-18 02:10:37 +00:00
<footer class="footer footer-center py-10 bg-primary text-secondary-content">
<aside class="">
2023-04-15 13:40:46 +00:00
<p>
2023-11-18 02:10:37 +00:00
<a class="hover:link" href="https://github.com/miawinter98/just-short-it" target="_blank">Just Short it!</a>
by <a class="hover:link" href="https://miawinter.de/" target="_blank">Mia Winter</a>.
2023-04-15 13:40:46 +00:00
</p>
2023-11-18 13:36:32 +00:00
<p>
<a class="hover:link" href="/about">About</a>
</p>
2023-11-18 02:10:37 +00:00
</aside>
2023-04-15 13:40:46 +00:00
</footer>
<script src="~/lib/jquery/dist/jquery.min.js"></script>
@await RenderSectionAsync("Scripts", required: false)
</body>
</html>