Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 13847 was 13754, checked in by jlodewyc, 9 years ago

#2582 User management done, start resource calendar

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