-
Notifications
You must be signed in to change notification settings - Fork 0
/
_SiteLayout.cshtml
51 lines (50 loc) · 2.1 KB
/
_SiteLayout.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
42
43
44
45
46
47
48
49
50
51
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>@Page.Title - My ASP.NET Web Page</title>
<link href="~/Content/themes/base/jquery.ui.all.css" rel="stylesheet" type="text/css" />
<link href="~/Content/Site.css" rel="stylesheet" type="text/css" />
<link href="~/favicon.ico" rel="shortcut icon" type="image/x-icon" />
<script src="~/Scripts/jquery-1.10.2.min.js"></script>
<script src="~/Scripts/jquery-ui-1.10.3.js"></script>
<script src="~/Scripts/modernizr-2.6.2.js"></script>
<meta name="viewport" content="width=device-width" />
</head>
<body>
<header>
<div class="content-wrapper">
<div class="float-left">
<p class="site-title"><a href="http://www.litmus.com"><img src="https://litmus.com/images/logo.png" /></a></p>
</div>
<div class="float-right">
<section id="login">
</section>
<nav>
<ul id="menu">
<li><a href="~/">Home</a></li>
<li><a href="~/EmailTests/StartTest">Email Tests</a></li>
<li><a href="~/PageTests/StartTest">Page Tests</a></li>
<li><a href="~/LinksTests/StartTest">Links Tests</a></li>
<li><a href="~/CodeAnalysis/StartTest">Code Analysis</a></li>
</ul>
</nav>
</div>
</div>
</header>
<div id="body">
@RenderSection("featured", required: false)
<section class="content-wrapper main-content clear-fix">
@RenderBody()
</section>
</div>
<footer>
<div class="content-wrapper">
<div class="float-left">
<p>© @DateTime.Now.Year - Litmus</p>
</div>
</div>
</footer>
@RenderSection("Scripts", required: false)
</body>
</html>