Skip to content

Instantly share code, notes, and snippets.

@benlesh
Created December 7, 2012 15:04
Show Gist options
  • Save benlesh/4233815 to your computer and use it in GitHub Desktop.
Save benlesh/4233815 to your computer and use it in GitHub Desktop.
Angular 1.0.3/Jquery 1.8.3/Bootstrap Template
var app = angular.module('myApp', []);
app.controller('MainCtrl', function($scope) {
});
<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