Free cookie consent management tool by TermsFeed Policy Generator

source: branches/OaaS/HeuristicLab.Services.Optimization.Web/Views/Shared/_Layout.cshtml @ 8958

Last change on this file since 8958 was 8958, checked in by fschoepp, 12 years ago

#1888:

  • Added a administrator web interface for job management
  • Fixed Hive Client (PluginValidator) to find the assemblies within the right directories
  • Reorganized controller classes (Folders HL, Interfaces, Azure)
  • You may now successfully schedule and run jobs with the web ui.
File size: 1.1 KB
Line 
1<!DOCTYPE html>
2<html>
3<head>
4    <meta charset="utf-8" />
5    <title>@ViewBag.Title</title>
6    <link href="@Url.Content("~/Content/Site.css")" rel="stylesheet" type="text/css" />
7    <script src="@Url.Content("~/Scripts/jquery-1.5.1.min.js")" type="text/javascript"></script>
8    <script src="@Url.Content("~/Scripts/modernizr-1.7.min.js")" type="text/javascript"></script>
9</head>
10<body>
11    <div class="page">
12        <header>
13            <div id="title">
14                <h1>Optimization-as-a-Service</h1>
15            </div>
16            <div id="logindisplay">
17                @Html.Partial("_LogOnPartial")
18            </div>
19            <nav>
20                <ul id="menu">
21                    <li>@Html.ActionLink("Admin", "Index", "Admin")</li>
22                    <li>@Html.ActionLink("Home", "Index", "Home")</li>
23                    <li>@Html.ActionLink("About", "About", "Home")</li>
24                </ul>
25            </nav>
26        </header>
27        <section id="main">
28            @RenderBody()
29        </section>
30        <footer>
31        </footer>
32    </div>
33</body>
34</html>
Note: See TracBrowser for help on using the repository browser.