mirror of
https://github.com/wassname/side-by-side.git
synced 2026-09-08 17:21:46 +08:00
33 lines
1.0 KiB
Plaintext
33 lines
1.0 KiB
Plaintext
doctype html
|
|
html(ng-app="sideBySide" ng-controller="AppController")
|
|
head
|
|
base(href="#{base}")
|
|
title(ng-bind="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")
|
|
|
|
if min == true
|
|
link(rel="stylesheet", type="text/css", href="styles/all_min.css")
|
|
script(src="scripts/all_min.js")
|
|
else
|
|
for style in styles
|
|
link(rel="stylesheet", type="text/css", href="#{style}")
|
|
for script in scripts
|
|
script(src="#{script}")
|
|
|
|
body
|
|
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(ng-repeat="link in links")
|
|
a(href="" ng-click="display(link.display)" ng-bind-html="link.text")
|
|
li
|
|
a(href="" ng-click="showPage('help')") Help
|
|
li
|
|
a(href="" ng-click="showPage('about')") About
|
|
|
|
div(ng-controller="ComparisonController" class="cols-{{columns}}")
|
|
include includes/comparison.html.jade
|