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
26 lines
723 B
HTML
26 lines
723 B
HTML
<header class="bs-header">
|
|
<div class="container">
|
|
<h1 class="page-header">
|
|
Console: {{ console.artifactName }}
|
|
</h1>
|
|
<ol class="breadcrumb">
|
|
<li><a ui-sref="home">Home</a></li>
|
|
<li>
|
|
<a ui-sref="home({artifactName: console.artifactName})">
|
|
{{ console.artifactName }}
|
|
</a>
|
|
</li>
|
|
<li class="active">Console</li>
|
|
</ol>
|
|
</div>
|
|
</header>
|
|
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="col-lg-12">
|
|
<codemirror-console data="console.data"
|
|
show="console.show"></codemirror-console>
|
|
</div>
|
|
</div>
|
|
</div>
|