2014-08-24 19:36:34 +02:00
|
|
|
doctype
|
|
|
|
html
|
|
|
|
head
|
2014-08-24 23:00:05 +02:00
|
|
|
meta(http-equiv="Content-Type" content="text/html; charset=utf-8;")
|
2014-08-24 19:36:34 +02:00
|
|
|
meta(name="viewport" content="width=device-width, initial-scale=1.0")
|
|
|
|
block meta
|
|
|
|
title(ng-bind-template="{{ pageTitle }} - Semaphore") Semaphore
|
|
|
|
link(href="/favicon.ico" type="image/x-icon" rel="icon")
|
|
|
|
link(href="/favicon.ico" type="image/x-icon" rel="shortcut icon")
|
|
|
|
|
|
|
|
//- all css goes here
|
|
|
|
block css
|
|
|
|
|
|
|
|
link(rel="stylesheet" href="/css/semaphore.css")
|
|
|
|
|
|
|
|
body
|
2014-09-11 19:42:13 +02:00
|
|
|
.navbar.navbar-default
|
|
|
|
.container-fluid
|
|
|
|
.navbar-header
|
|
|
|
a.navbar-brand(ui-sref="homepage") Semaphore
|
|
|
|
|
|
|
|
nav.nav.navbar-nav
|
|
|
|
li: a(ui-sref="playbooks") Playbooks
|
|
|
|
li: a(ui-sref="identities.list") Identities
|
|
|
|
|
|
|
|
nav.nav.navbar-nav.pull-right
|
|
|
|
li: a(ui-sref="addPlaybook") Add Playbook
|
|
|
|
|
2014-08-24 19:36:34 +02:00
|
|
|
.container-fluid
|
|
|
|
.row
|
|
|
|
.col-sm-3.col-lg-2
|
|
|
|
ul.nav
|
2015-01-30 16:41:49 +01:00
|
|
|
h2.no-top-margin Playbooks
|
2014-08-24 19:36:34 +02:00
|
|
|
li(ng-repeat="playbook in playbooks")
|
2014-08-25 01:02:34 +02:00
|
|
|
a(ui-sref="playbook.view({ playbook_id: playbook._id })") {{ playbook.name }}
|
2014-08-24 19:36:34 +02:00
|
|
|
|
|
|
|
.col-sm-9.col-lg-10
|
|
|
|
block content
|
|
|
|
ui-view(autoscroll="false")
|
|
|
|
p.lead.text-center
|
|
|
|
i.fa.fa-spin.fa-cog
|
|
|
|
| Loading...
|
|
|
|
|
|
|
|
block js
|
|
|
|
script(src="/vendor/requirejs/require.js" data-main="/js/semaphore.js")
|
|
|
|
if use_analytics
|
|
|
|
!= newrelic.getBrowserTimingHeader()
|
|
|
|
|
|
|
|
//- page-specific js
|
|
|
|
block addonjs
|