stackviz/app/index.html
Tim Buckley fbc599f85d Remove top fixed navbar
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
2016-05-13 17:12:55 -06:00

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>