mirror of
https://github.com/wassname/side-by-side.git
synced 2026-09-21 13:30:27 +08:00
I got drunk, read the coffeescript style guide, and decided to use spaces. Spaces for indentation is still as bad an idea as it ever were, and this is not a coffeescript project - it's multilingual, hence using coffeescript conventions is pointless.
16 lines
693 B
Plaintext
16 lines
693 B
Plaintext
doctype 5
|
|
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=Titillium+Web:400,700,400italic,700italic")
|
|
link(rel="stylesheet", type="text/css", href="//cdnjs.cloudflare.com/ajax/libs/font-awesome/3.0.2/css/font-awesome.min.css")
|
|
link(rel="stylesheet", type="text/css", href="styles/style.css")
|
|
include _scripts.html.jade
|
|
|
|
body
|
|
div(class="container", ng-controller="comparisonController")
|
|
div(class="verse", ng-repeat="verse in verses")
|
|
div(class="section", ng-bind="verse.section")
|
|
div(class="version", ng-repeat= "version in verse.versions") {{ version }}
|