Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 10888 was 9617, checked in by pfleck, 11 years ago

#2063:
Started integrating Hive statistics into statistics web project.
Added jqPlot library for charting.

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("About", "About", "Home")</li>
25                <li>@Html.MenuItem("Contact", "Contact", "Home")</li>
26            </ul>
27        </nav>
28        <div id="body">
29           @RenderBody()
30        </div>
31        <footer>
32            <a href="http://heal.heuristiclab.com/" target="_blank" title="Visit the HeuristicLab website">
33                <img src="~/Content/hl-logo.png" alt="HeuristicLab Logo"/>
34            </a>
35        </footer>
36    </div>
37    @Scripts.Render("~/bundles/jquery")
38    @RenderSection("scripts", required: false)
39</body>
40</html>
Note: See TracBrowser for help on using the repository browser.