Skip to content

Instantly share code, notes, and snippets.

@renanpalmeira
Created April 16, 2016 19:00
Show Gist options
  • Save renanpalmeira/c1c63df95be86d500f5203ef1f400576 to your computer and use it in GitHub Desktop.
Save renanpalmeira/c1c63df95be86d500f5203ef1f400576 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html ng-app="tcc">
<head>
<title>CLIENT</title>
</head>
<body ng-controller="BoardController">
<ul>
<li ng-repeat="item in itens">{$ item.name $}</li>
</ul>
<input type="button" ng-click="vai()" value="+1">
</body>
<script src="{{ url_for('static', filename='js/angular.min.js') }}" type="text/javascript"></script>
<script src="{{ url_for('static', filename='js/app.js') }}" type="text/javascript"></script>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment