Start styling + Add syntaxic coloration

This commit is contained in:
brunosimon
2016-06-08 01:45:54 +02:00
parent 1126da2747
commit 5a9835dcbb
104 changed files with 15959 additions and 38 deletions
+7 -5
View File
@@ -1,10 +1,12 @@
include ../../partials/header.jade
section(ng-controller="ProjectsController as controller")
div(ng-hide="projects")
| No project
div(ng-repeat="project in projects")
a(href="/project/{{project.slug}}")
section.page-projects(ng-controller="ProjectsController as controller")
.projects(ng-show="projects")
.item.title
| Projects
a.item(href="/project/{{project.slug}}",ng-repeat="project in projects")
| {{project.name}}
.no-project(ng-hide="projects")
| No project
include ../../partials/footer.jade