mirror of
https://github.com/wassname/side-by-side.git
synced 2026-09-21 13:30:27 +08:00
28 lines
880 B
Plaintext
28 lines
880 B
Plaintext
doctype html
|
|
html(ng-app="sideBySide")
|
|
head
|
|
title Side By Side viewer
|
|
meta(charset="utf-8")
|
|
link(rel="stylesheet", type="text/css", href="//fonts.googleapis.com/css?family=Noticia+Text:400,700,400italic,700italic")
|
|
link(rel="stylesheet", type="text/css", href="bower_components/fontawesome/css/font-awesome.min.css")
|
|
link(rel="stylesheet", type="text/css", href="bower_components/pure/pure-min.css")
|
|
link(rel="stylesheet", type="text/css", href="styles/style.css")
|
|
include _scripts.html.jade
|
|
|
|
body(ng-controller="AppController")
|
|
noscript Well, terribly sorry but you do need to have Javascript enabled.
|
|
|
|
// top menu
|
|
.pure-menu.pure-menu-open.pure-menu-horizontal.menu-main
|
|
ul
|
|
li
|
|
a(href="#{{base}}") Home
|
|
li
|
|
a(href="#{{base}}/pick") Pick
|
|
li
|
|
a(href="#") Help
|
|
li
|
|
a(href="#") About
|
|
|
|
div(ng-view class="cols-{{columns}}")
|