Skip to content

Instantly share code, notes, and snippets.

@gajus
Created September 29, 2014 10:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gajus/aef58257bf91a56f2816 to your computer and use it in GitHub Desktop.
Save gajus/aef58257bf91a56f2816 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html ng-app="store">
<head>
<title>Store</title>
<script src="./static/js/angular.js"></script>
<script src="./static/js/store.js"></script>
<script src="./static/js/controllers/store.js"></script>
<script src="./static/js/controllers/productListControllers.js"></script>
<script src="./static/js/filters/customFilters.js"></script>
<link rel="stylesheet" type="text/css" href="./static/css/main.css">
</head>
<body ng-controller="storeController">
<div id="body">
<div class="error" ng-show="data.error">Error ({{data.error.status}}): The product data was not loaded.</div>
<ng-include src="'./static/js/views/productList.html'"></ng-include>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment