Skip to content

Instantly share code, notes, and snippets.

@fakiolinho
Created December 17, 2013 10:08
Show Gist options
  • Save fakiolinho/8002710 to your computer and use it in GitHub Desktop.
Save fakiolinho/8002710 to your computer and use it in GitHub Desktop.
AngularJS: Default Template
<!doctype html>
<html lang="en" ng-app="myApp">
<head>
<meta charset="UTF-8">
<title>AngularJS</title>
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.0.3/css/bootstrap.min.css">
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.0.3/css/bootstrap-theme.min.css">
</head>
<body>
<script src="http://code.angularjs.org/1.2.5/angular.js"></script>
<script>
var myApp = angular.module('myApp', []);
myApp
.config(function($interpolateProvider){
$interpolateProvider.startSymbol('<%').endSymbol('%>');
});
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment