forked from nhibernate/nhibernate-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_Layout.cshtml
41 lines (39 loc) · 1.03 KB
/
_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
31
32
33
34
35
36
37
38
39
40
41
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>@ViewData["Title"]</title>
<style>
button.link {
background: none !important;
color: rgb(0, 0, 238);
border: none;
padding: 0 !important;
font: inherit;
text-decoration-color: rgb(0, 0, 238);
text-decoration-line: underline;
text-decoration-style: solid;
cursor: pointer;
}
table.itemlist {
border-spacing: 0;
border-collapse: collapse;
border: 1px solid black;
}
.itemlist td{
border: 1px solid black;
}
.itemlist th {
border: 1px solid black;
}
</style>
</head>
<body>
@RenderBody()
<p>
@Microsoft.Extensions.PlatformAbstractions.PlatformServices.Default.Application.RuntimeFramework
</p>
@RenderSection("Scripts", required: false)
</body>
</html>