forked from Taritsyn/JavaScriptEngineSwitcher
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_Layout.cshtml
More file actions
107 lines (98 loc) · 4.3 KB
/
_Layout.cshtml
File metadata and controls
107 lines (98 loc) · 4.3 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
@using JavaScriptEngineSwitcher.Sample.AspNetCore2.Mvc2.Infrastructure.TagHelpers
<!DOCTYPE html>
<!--[if lt IE 7 ]> <html class="no-js ie6 ielt8"> <![endif]-->
<!--[if IE 7 ]> <html class="no-js ie7 ielt8"> <![endif]-->
<!--[if IE 8 ]> <html class="no-js ie8"> <![endif]-->
<!--[if IE 9 ]> <html class="no-js ie9"> <![endif]-->
<!--[if (gt IE 9)|!(IE)]><!--> <html class="no-js"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<title>@if (!string.IsNullOrEmpty(ViewBag.Title)) {<text>@ViewBag.Title | </text>}JavaScriptEngineSwitcher Sample ASP.NET Core 2.0 MVC 2 Site</title>
<link href="//fonts.googleapis.com/css?family=Open+Sans:700,600,400,300&subset=latin,cyrillic" rel="stylesheet">
<link href="//fonts.googleapis.com/css?family=Open+Sans+Condensed:700,300&subset=latin,cyrillic" rel="stylesheet">
<environment names="Development">
<link rel="stylesheet" href="~/styles/build/app.css" asp-append-version="true" />
<script src="~/lib/modernizr/modernizr.js" asp-append-version="true"></script>
</environment>
<environment names="Staging,Production">
<link rel="stylesheet" href="~/styles/build/common-styles.min.css" asp-append-version="true" />
<script src="~/scripts/build/modernizr.min.js" asp-append-version="true"></script>
</environment>
</head>
<body>
<div class="l-wrapper">
<!-- Header -->
<header class="l-header">
<div class="l-constrained">
<h1 class="logo">
<a asp-controller="Home" asp-action="Index">JavaScript Engine Switcher</a>
</h1>
<!-- Navigation -->
<nav class="primary-nav navbar navbar-default" role="navigation">
<!-- Menu -->
<ul class="nav navbar-nav" role="menu">
<li role="menuitem"><a asp-controller="Home" asp-action="Index">Home</a></li>
<li role="menuitem"><a asp-controller="Home" asp-action="Demo">Demo</a></li>
<li role="menuitem"><a asp-controller="Home" asp-action="Contact">Contact</a></li>
</ul>
<!-- /Menu -->
</nav>
<!-- /Navigation -->
</div>
</header>
<!-- /Header -->
<!-- Content -->
<div class="l-content">
<div class="l-constrained">
@RenderBody()
</div>
</div>
<!-- /Content -->
<div class="l-push"></div>
</div>
<!-- Footer -->
<footer class="l-footer" role="contentinfo">
<div class="l-constrained">
<div class="l-copyright">
<p>© @DateTime.Now.Year <a href="http://www.taritsyn.ru" target="_blank">Andrey Taritsyn</a></p>
</div>
<div class="l-social">
<ul>
<li><a href="http://www.facebook.com/taritsyn" target="_blank" class="icon icon-32 icon-facebook">Facebook</a></li>
<li><a href="http://twitter.com/andrey_taritsyn" target="_blank" class="icon icon-32 icon-twitter">Twitter</a></li>
<li><a href="http://www.linkedin.com/in/taritsyn" target="_blank" class="icon icon-32 icon-linkedin">LinkedIn</a></li>
<li><a href="http://plus.google.com/104102250252560157369" target="_blank" class="icon icon-32 icon-google-plus">Google plus</a></li>
</ul>
</div>
</div>
</footer>
<!-- /Footer -->
<environment names="Development">
<conditional-comment type="Hidden" expression="lt IE 9">
<script src="~/lib/jquery-compat/jquery.js" asp-append-version="true"></script>
</conditional-comment>
<conditional-comment type="RevealedValidating" expression="gte IE 9">
<script src="~/lib/jquery/jquery.js" asp-append-version="true"></script>
</conditional-comment>
<script src="~/scripts/common.js" asp-append-version="true"></script>
</environment>
<environment names="Staging,Production">
<conditional-comment type="Hidden" expression="lt IE 9">
<script src="//ajax.aspnetcdn.com/ajax/jQuery/jquery-1.10.2.min.js"
asp-fallback-src-include="~/lib/jquery-compat/jquery.min.js"
asp-fallback-test="window.jquery"
asp-append-version="true">
</script>
</conditional-comment>
<conditional-comment type="RevealedValidating" expression="gte IE 9">
<script src="//ajax.aspnetcdn.com/ajax/jQuery/jquery-2.0.3.min.js"
asp-fallback-src-include="~/lib/jquery/jquery.min.js"
asp-fallback-test="window.jquery"
asp-append-version="true">
</script>
</conditional-comment>
<script src="~/scripts/build/common-scripts.min.js" asp-append-version="true"></script>
</environment>
@RenderSection("scripts", required: false)
</body>
</html>