Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HiveStatistics/sources/HeuristicLab.Services.Hive.Statistics/3.3/Views/Shared/_Layout.cshtml @ 11053

Last change on this file since 11053 was 11053, checked in by mroscoe, 10 years ago
File size: 1.4 KB
Line 
1@using HeuristicLab.Services.Hive.Statistics.Helper
2<!DOCTYPE html>
3<html lang="en">
4<head>
5    <meta charset="utf-8" />
6    <title>@ViewBag.Title - HeuristicLab Hive</title>
7    <link href="~/HeuristicLab.ico" rel="shortcut icon" type="image/x-icon" />
8    <meta name="viewport" content="width=device-width" />
9    @Styles.Render("~/Content/css")
10    @Scripts.Render("~/bundles/modernizr")
11    @RenderSection("styles", required: false)
12</head>
13<body>
14    <div>
15        <header>
16            <h1>@Html.ActionLink("HeuristicLab Hive", null)</h1>
17            <section id="login">
18                @Html.Partial("_LoginPartial")
19            </section>
20        </header>
21        <nav>
22            <ul>
23                <li>@Html.MenuItem("Home", "Index", "Home")</li>
24                <li>@Html.MenuItem("User", "UserTask", "LoginRequired")</li>
25                <li>@Html.MenuItem("Admin", "Admin", "LoginRequired")</li>
26                <li>@Html.MenuItem("About", "About", "Home")</li>
27            </ul>
28        </nav>
29        <div id="body">
30           @RenderBody()
31        </div>
32        <footer>
33            <a href="http://heal.heuristiclab.com/" target="_blank" title="Visit the HeuristicLab website">
34                <img src="~/Content/hl-logo.png" alt="HeuristicLab Logo"/>
35            </a>
36        </footer>
37    </div>
38    @Scripts.Render("~/bundles/jquery")
39    @RenderSection("scripts", required: false)
40</body>
41</html>
Note: See TracBrowser for help on using the repository browser.