Skip to content

Instantly share code, notes, and snippets.

@diogovk
Last active August 29, 2015 14:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save diogovk/ce4c6c7faa9fe35f37dd to your computer and use it in GitHub Desktop.
Save diogovk/ce4c6c7faa9fe35f37dd to your computer and use it in GitHub Desktop.
###### JADE ####
1 doctype html
2 html(lang=en, ng-app="myApp")
3 head
4 title= "titulo 2"
5 body
6 h1 This is a test
7 ng-view
#### HTML #####
1 <!DOCTYPE html>
2 <html ng-app="myApp">
3 <head>
4 <title>titulo 2</title>
5 </head>
6 <body>
7 <h1>This is a test</h1>
8 <ng-view></ng-view>
9 </body>
10 </html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment