forked from jwaliszko/ExpressiveAnnotations
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy path_Layout.cshtml
30 lines (26 loc) · 927 Bytes
/
_Layout.cshtml
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
26
27
28
29
30
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>@ViewData["Title"] - ExpressiveAnnotations.NetCoreSample</title>
<environment include="Development">
<link rel="stylesheet" href="~/css/site.css" />
</environment>
<environment exclude="Development">
<link rel="stylesheet" href="~/css/site.min.css" asp-append-version="true" />
</environment>
</head>
<body>
<div class="container body-content">
@RenderBody()
</div>
<environment include="Development">
<script src="~/js/jquery.js" app-append-version="true"></script>
</environment>
<environment exclude="Development">
<script src="~/js/site.min.js" app-append-version="true"></script>
</environment>
@RenderSection("Scripts", required: false)
</body>
</html>