aboutsummaryrefslogtreecommitdiffstats
path: root/code/api/Pages/_Layout.cshtml
diff options
context:
space:
mode:
Diffstat (limited to 'code/api/Pages/_Layout.cshtml')
-rw-r--r--code/api/Pages/_Layout.cshtml16
1 files changed, 16 insertions, 0 deletions
diff --git a/code/api/Pages/_Layout.cshtml b/code/api/Pages/_Layout.cshtml
new file mode 100644
index 0000000..022e41e
--- /dev/null
+++ b/code/api/Pages/_Layout.cshtml
@@ -0,0 +1,16 @@
+<!doctype html>
+<html lang="en">
+<head>
+ <meta charset="UTF-8">
+ <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
+ <meta http-equiv="X-UA-Compatible" content="ie=edge">
+ <link rel="stylesheet" href="~/styles/base.css" asp-append-version="true">
+ @await RenderSectionAsync("Head", false)
+ <title>@ViewData["Title"] - Storage</title>
+</head>
+<body>
+@RenderBody()
+<script src="~/scripts/base.js" asp-append-version="true"></script>
+@await RenderSectionAsync("Scripts", false)
+</body>
+</html> \ No newline at end of file