Robin Weichselbraun c1ae22cfee Added Big logo
Added Meta info
2024-10-21 13:15:41 +02:00

52 lines
2.1 KiB
Plaintext

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Primary Meta Tags -->
<title>Vorlesungsplan - UniForAll</title>
<meta name="title" content="UniForAll" />
<meta name="description" content="Stundenplan für Gasthörer und Studierende" />
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://uniforall.nihil.foo/" />
<meta property="og:title" content="UniForAll" />
<meta property="og:description" content="" />
<meta property="og:image" content="https://uniforall.nihil.foo/images/ufalogobig.png" />
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:url" content="https://uniforall.nihil.foo/" />
<meta property="twitter:title" content="UniForAll" />
<meta property="twitter:description" content="Stundenplan für Gasthörer und Studierende" />
<meta property="twitter:image" content="https://uniforall.nihil.foo/images/ufalogobig.png" />
<title>UniForAll</title>
<link rel="stylesheet" href="~/lib/bootstrap/dist/css/bootstrap.min.css" />
<link rel="stylesheet" href="~/css/site.css" asp-append-version="true" />
<link rel="stylesheet" href="~/UWLecturePlan.styles.css" asp-append-version="true" />
</head>
<body>
<header class="p-3 pb-0">
@await RenderSectionAsync("Header", required: false)
</header>
<main role="main" class="p-3 pt-0 pb-0">
@RenderBody()
</main>
@await RenderSectionAsync("Scripts", required: false)
<footer class="p-3 text-center">
<p class="container-fluid">
&copy; 2024 UniForAll
</p>
<address class="d-inline">
<a href="mailto:uniforall@nihil.foo">uniforall@nihil.foo</a>
</address>
</footer>
<script src="~/lib/jquery/dist/jquery.min.js"></script>
<script src="~/lib/bootstrap/dist/js/bootstrap.bundle.min.js"></script>
<script src="~/js/site.js" asp-append-version="true"></script>
</body>
</html>