Created
November 21, 2015 15:07
-
-
Save fchevitarese/c9ee0abae0660dfcbb5c to your computer and use it in GitHub Desktop.
index.html
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html ng-app="CVCuidar"> | |
<head> | |
<meta charset="utf-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
<title>Cuidar - Lista de contatos</title> | |
<link rel="stylesheet" href="{{ STATIC_URL }}node_modules/bootstrap/dist/css/bootstrap.min.css"> | |
{% block extrahead %} | |
{% endblock extrahead %} | |
</head> | |
<body ng-controller="CvCuidarCtrl"> | |
<div class="content"> | |
{% block content %} | |
{% endblock content %} | |
</div> | |
</body> | |
<script type="text/javascript" src="{{ STATIC_URL }}node_modules/angular/angular.min.js"></script> | |
<script src="{{ STATIC_URL }}main.js" type="text/javascript"></script> | |
<script src="{{ STATIC_URL }}node_modules/bootstrap/dist/js/bootstrap.min.js" type="text/javascript"></script> | |
{% block extrajs %} | |
{% endblock extrajs %} | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment