From e8ec4001ce1297d5a3db6d3fc8af8de47daa6a61 Mon Sep 17 00:00:00 2001 From: Trygve Laugstøl Date: Sun, 25 Oct 2015 00:33:41 +0200 Subject: wip --- web/templates/index.jade | 52 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100644 web/templates/index.jade (limited to 'web/templates/index.jade') diff --git a/web/templates/index.jade b/web/templates/index.jade new file mode 100644 index 0000000..025354e --- /dev/null +++ b/web/templates/index.jade @@ -0,0 +1,52 @@ +doctype html + +html(lang='en') + head + meta(charset='utf-8') + meta(name="viewport", content="width=device-width, initial-scale=1") + meta(http-equiv="x-ua-compatible", content="ie=edge") + + base(href!=baseUrl) + + script(src="bower_components/jquery/dist/jquery.js", type="application/javascript") + script(src="bower_components/bootstrap/dist/js/bootstrap.js", type="application/javascript") + link(rel="stylesheet", href="bower_components/bootstrap/dist/css/bootstrap.css") + script(src="bower_components/angular/angular.js", type="application/javascript") + script(src="bower_components/angular-route/angular-route.js", type="application/javascript") + script(src="bower_components/lodash/lodash.js", type="application/javascript") + + script(src="app/DillerRpc.js", type="application/javascript") + script(src="app/app.js", type="application/javascript") + link(href="app/app.css", rel="stylesheet") + + body(ng-app="Diller") + .container + nav.navbar.navbar-dark.bg-inverse + a.navbar-brand(href='#/') Diller + ul.nav.navbar-nav + li.nav-item + a.nav-link(href='#/') Devices + + // + + span(ng-view) Loading Diller ... -- cgit v1.2.3