_Layout.cshtml
1.5 KB
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
42
43
44
45
46
47
48
<!DOCTYPE html>
<html lang="ru">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<meta charset="utf-8" />
<title>Панель управления </title>
<link href="~/favicon.ico" rel="shortcut icon" type="image/x-icon" />
<meta name="viewport" content="width=device-width" />
@Scripts.Render("~/bundles/modernizr")
<link rel="stylesheet" type="text/css" href="extjs-4.2/resources/ext-theme-gray/ext-theme-gray-all.css" />
<script src="extjs-4.2/ext-all.js" type="text/javascript"></script>
</head>
<body>
<header>
<div class="content-wrapper"
<div class="float-left">
<img src="/Content/emercit.png" />
</div>
<div class="float-right">
<section id="login">
@Html.Partial("_LoginPartial")
</section>
</div>
</div>
</header>
<div id="body">
@RenderSection("featured", required: false)
@RenderBody()
</div>
<footer>
<div class="content-wrapper">
<div class="float-left">
<p>© @DateTime.Now.Year — Компания «Emercit»</p>
</div>
</div>
</footer>
@Scripts.Render("~/bundles/jquery")
@RenderSection("scripts", required: false)
</body>
</html>