Created
December 7, 2012 15:04
-
-
Save benlesh/4233815 to your computer and use it in GitHub Desktop.
Angular 1.0.3/Jquery 1.8.3/Bootstrap Template
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
var app = angular.module('myApp', []); | |
app.controller('MainCtrl', function($scope) { | |
}); |
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> | |
<!DOCTYPE html> | |
<html ng-app="myApp" > | |
<head> | |
<meta charset="utf-8"> | |
<title>AngularJS Plunker</title> | |
<link href="//netdna.bootstrapcdn.com/twitter-bootstrap/2.2.1/css/bootstrap-combined.min.css" rel="stylesheet"> | |
<script>document.write("<base href=\"" + document.location + "\" />");</script> | |
<script src="//netdna.bootstrapcdn.com/twitter-bootstrap/2.2.1/js/bootstrap.min.js"></script> | |
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.js"></script> | |
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.0.3/angular.js"></script> | |
<script src="app.js"></script> | |
</head> | |
<body ng-controller="MainCtrl"> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment