blob: be445cc34969232f10e169251d222805af4375f8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
@{
ViewBag.Title ??= "HyperBooru";
ViewBag.ContentScroll ??= true;
ViewBag.ContentMargin ??= "30px";
}
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width"/>
<link rel="stylesheet" type="text/css" href="/styles/global.css"/>
<link rel="stylesheet" type="text/css" href="@(nameof(HyperBooru)).styles.css"/>
<title>@ViewBag.Title</title>
</head>
<body>
<div id="navbar">
<a href="/">Home</a>
<a href="/tags">Tags</a>
</div>
<div id="content" style="overflow:@(ViewBag.ContentScroll ? "auto" : "hidden");margin:@(ViewBag.ContentMargin ?? "0");">
@RenderBody()
</div>
</body>
</html>
|