Files
Clivelancaster/Views/Shared/_Layout.cshtml
T
clive c72bd65bfa
Gitea CI/CD / build (push) Failing after 5m0s
Website Refresh
2026-08-11 21:27:27 +10:00

37 lines
1.7 KiB
Plaintext

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="description" content="Accomplished Digital Product Manager with 12+ years of experience in health-tech, prop-tech, HR, and e-commerce. Reducing risk and increasing efficiency.">
<meta name="keywords" content="product, manager, owner, health, strategy, customer, commercial, management, agile, digital, clive, lancaster">
<meta name="author" content="Clive Lancaster">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>@ViewData["Title"] - Clive Lancaster - Digital Product Manager</title>
<link rel="stylesheet" href="~/lib/tailwind/tailwindcss.css" />
<link rel="stylesheet" href="~/css/main.css" asp-append-version="true" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap">
<script defer src="https://analytics.rokoh.com/script.js" data-website-id="7c70ca5f-c4e8-46ef-9f49-8daae609f705"></script>
<link rel="icon" type="image/x-icon" href='@Url.Content("~/favicon.ico")'>
</head>
<body class="text-slate-700 bg-white flex flex-col min-h-screen">
@RenderBody()
<footer class="bg-slate-900 text-slate-400 py-16">
<div class="max-w-7xl mx-auto px-6 grid md:grid-cols-2 lg:grid-cols-4 gap-12">
<partial name="_PartialFooter" />
<div>
<partial name="_PartialFooterForm" />
</div>
</div>
<partial name="_PartialLegal" />
</footer>
<script src="~/js/site.js" asp-append-version="true"></script>
@await RenderSectionAsync("Scripts", required: false)
</body>
</html>