Skip to content

Instantly share code, notes, and snippets.

@bdylanwalker
Forked from bxwalker/Angular Seed.markdown
Created October 8, 2015 21:16
Show Gist options
  • Select an option

  • Save bdylanwalker/73f5da0f37d2eb876dcc to your computer and use it in GitHub Desktop.

Select an option

Save bdylanwalker/73f5da0f37d2eb876dcc to your computer and use it in GitHub Desktop.
Angular Seed
<div ng-app="MyApp" ng-controller="AppCtrl">
<h1>{{title}}</h1>
</div>
angular.module('MyApp', [])
.controller('AppCtrl', function($scope) {
$scope.title = "Angular Seed";
});
<script src="https://code.angularjs.org/1.4.3/angular.min.js"></script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment