You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
openNG/views/layout.jade

24 lines
1.1 KiB
Plaintext

doctype html
html(ng-app="cryto.openng")
head
title OpenNG
link(rel='stylesheet', href='/stylesheets/pure-min.css')
link(rel='stylesheet', href='/stylesheets/style.css')
link(rel='stylesheet', href='/stylesheets/font-awesome.min.css')
link(rel='stylesheet', href='/stylesheets/openng.css')
link(rel='stylesheet', href='http://fonts.googleapis.com/css?family=Istok+Web:400,700|Open+Sans:400,700|Varela+Round')
script(src="/js/bundled.js")
body(ng-controller="appController")
canvas.overlay
#mainToolbar
a.pure-button.add.shadow
i.fa.fa-plus
| Create new node
form.search.pure-form.pure-form-inline(method="post", action="/search")
input(name="query", type="text", placeholder="Enter something to search for...")
button.pure-button.search.shadow(type="submit")
i.fa.fa-search
| Search
#logo OpenNG
window(ng-repeat="window in windows", title="{{window.data.title}}", start-x="{{window.data.x}}", start-y="{{window.data.y}}", width="{{window.data.width}}", height="{{window.data.height}}", resizable="{{window.data.resizable}}", initial-route="{{window.data.initialRoute}}")