This should be basic but I can't get angular to play with Flask. Angular and Flask have the same variable interpolation syntax {{ variable }}
and according to a blog post, I can use a pipe to distinguish between the two, but the below is causing an error that reads no filter named 'angular'
<!DOCTYPE html>
<html ng-app>
<head>
<meta charset="utf-8">
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.0/angular.min.js"></script>
<script type="text/javascript" src= "http://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.js"></script>
</head>
<body>
<label>{{ yourName | angular }}</label>
<input type="text" ng-model="yourName" placeholder="Enter a name here">
</body>
</html>