initial commit
This commit is contained in:
commit
2d966b8198
28 changed files with 2901 additions and 0 deletions
36
Pages/Shared/_Layout.cshtml
Normal file
36
Pages/Shared/_Layout.cshtml
Normal file
|
|
@ -0,0 +1,36 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<meta name="color-scheme" content="dark" />
|
||||
<title>@(ViewData["Title"] is string t && t.Length > 0 ? $"{t} — cs2-on.eu" : "cs2-on.eu — Outnumbered CS2 PvE RPG")</title>
|
||||
@RenderSection("Meta", required: false)
|
||||
<link rel="stylesheet" href="/css/site.css" />
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<nav class="wrap">
|
||||
<a class="brand" href="/">cs2-on<span>.eu</span></a>
|
||||
<a href="/">Servers</a>
|
||||
<a href="/leaderboard">Leaderboard</a>
|
||||
<a href="/guides">Guides</a>
|
||||
<a href="/theory">Theorycrafting</a>
|
||||
<a href="/faq">FAQ</a>
|
||||
<a href="/rules">Rules</a>
|
||||
</nav>
|
||||
</header>
|
||||
<main class="wrap">
|
||||
@RenderBody()
|
||||
</main>
|
||||
<footer class="wrap">
|
||||
<span>Outnumbered — a players-vs-bots RPG mod for CS2.</span>
|
||||
<span>
|
||||
<a href="/changelog">Changelog</a> ·
|
||||
<a href="https://git.lo.sh/kamal/cs2-outnumbered">Source</a> ·
|
||||
<a href="/privacy">Privacy</a>
|
||||
</span>
|
||||
</footer>
|
||||
@RenderSection("Scripts", required: false)
|
||||
</body>
|
||||
</html>
|
||||
Loading…
Add table
Add a link
Reference in a new issue