Created
December 3, 2015 21:31
-
-
Save mekhami/3c67799ff20f0b7c6817 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <html> | |
| <head> | |
| <!-- META --> | |
| <meta charset="utf-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1"><!-- Optimize mobile viewport --> | |
| <title>Node/Angular Todo App</title> | |
| <!-- SCROLLS --> | |
| <link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css"><!-- load bootstrap --> | |
| <style> | |
| html { overflow-y:scroll; } | |
| body { padding-top:50px; } | |
| #rsvp-list { margin-bottom:30px; } | |
| </style> | |
| <!-- SPELLS --> | |
| <script src="//ajax.googleapis.com/ajax/libs/jquery/2.0.3/jquery.min.js"></script><!-- load jquery --> | |
| <script src="//ajax.googleapis.com/ajax/libs/angularjs/1.0.8/angular.min.js"></script><!-- load angular --> | |
| <script src="js/app.js"></script> | |
| <base href="/"> | |
| </head> | |
| <!-- SET THE CONTROLLER AND GET ALL TODOS --> | |
| <body ng-app="myApp"> | |
| <div class="container"> | |
| <div ng-view></div> | |
| </div> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment