If I'm creating a view in Express and I'm using Hogan for server-side templating, how can I include templates for Angular to consume as well?
For example, the following is a simple Express view with Angular's 'hello world' included:
<!doctype html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Document</title>
    <link rel='stylesheet' href='/stylesheets/style.css' />
    <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.0.1/angular.min.js"></script>
</head>
<body ng-app>
<label for="">Message: <input type="text" ng-model="message"/></label>
<p>{{message}}</p>
</body>
</html>
How do I prevent {{message}} from being parsed by the Express on the server?
 
     
     
    