Free cookie consent management tool by TermsFeed Policy Generator

source: branches/WebJobManager/HeuristicLab.Clients.Hive.WebJobManager/Views/Shared/_Layout.cshtml @ 17578

Last change on this file since 17578 was 13860, checked in by jlodewyc, 9 years ago

#2582 RC2 migration fixed. OKB query implemented. Preparing for OKB manager

File size: 1.1 KB
Line 
1<!DOCTYPE html>
2<html>
3<head>
4    <meta name="viewport" content="width=device-width" />
5    <title>@ViewBag.Title - HeuristicLab Hive</title>
6
7    <link href="~/css/site.min.css" rel="stylesheet" />
8
9    <link href="https://gitcdn.github.io/bootstrap-toggle/2.2.0/css/bootstrap-toggle.min.css" rel="stylesheet">
10    <link rel="shortcut icon" type="image/x-icon" href="~/favicon.ico" />
11    <link rel="stylesheet" href="//rawgithub.com/Caged/d3-tip/master/examples/example-styles.css">
12</head>
13<body style="overflow-x:hidden"  >
14    <div>
15        <nav class="navbar navbar-default navbar-static-top"
16             role="navigation" style="margin-bottom: 0">
17            <div class="navbar-header">
18                <img alt="Heuristic Lab Hive"
19                     src="~/img/HeuristicLabBanner.png"
20                     style="margin-bottom:15px; margin-top:15px"
21                      />
22            </div>
23        </nav>
24
25        <script src="~/js/app.js"></script>
26        <script src='~/signalr/js'></script>
27
28        @RenderBody()
29    </div>
30</body>
31</html>
Note: See TracBrowser for help on using the repository browser.