Initial project setup

Featuring:
- middleman setup
- dummy controller and index page
- markdown reader and its qunit tests
- travis integration
This commit is contained in:
Vit Brunner
2013-06-10 22:30:02 +01:00
commit b7c12f928b
16 changed files with 315 additions and 0 deletions
+6
View File
@@ -0,0 +1,6 @@
angular.module("sideBySide.controllers", [])
.controller "comparisonController", ($scope) ->
$scope.verses = [
{ section: 'first', versions: [ 'a', '1' ] }
{ section: 'second', versions: [ 'b', '2' ] }
]