fbc599f85d
This removes the top fixed navbar in favor of breadcrumb navigation. The top navbar no longer makes sense with generic artifact types, and never rendered correctly on small displays (particularly mobile devices). Instead, each page now displays a small breadcrumb menu. Change-Id: I18a8bbae24b237e503563cabf854413a54f4be72
19 lines
528 B
HTML
19 lines
528 B
HTML
<!doctype html>
|
|
<html class="no-js">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
|
<title ng-bind="pageTitle"></title>
|
|
<meta name="description" content="">
|
|
<meta name="viewport" content="width=device-width">
|
|
|
|
<link rel="stylesheet" href="css/main.css">
|
|
</head>
|
|
|
|
<body class="ng-cloak" ng-controller="MainController">
|
|
<div role="main" ui-view></div>
|
|
|
|
<script src="js/main.js"></script>
|
|
</body>
|
|
</html>
|