mirror of
https://github.com/wassname/side-by-side.git
synced 2026-09-07 17:10:46 +08:00
41 lines
1.2 KiB
Plaintext
41 lines
1.2 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="flipPick()")
|
|
i.fa.fa-bars
|
|
span Pick
|
|
li
|
|
a(href="" ng-click="showPage('help')")
|
|
i.fa.fa-question-circle
|
|
span Help
|
|
li
|
|
a(href="" ng-click="showPage('about')")
|
|
i.fa.fa-info-circle
|
|
span About
|
|
|
|
div(ng-controller="ComparisonController" class="cols-{{columns}}")
|
|
include includes/comparison.html.jade
|