Skip to content

Instantly share code, notes, and snippets.

@fchevitarese
Created November 21, 2015 15:07
Show Gist options
  • Save fchevitarese/c9ee0abae0660dfcbb5c to your computer and use it in GitHub Desktop.
Save fchevitarese/c9ee0abae0660dfcbb5c to your computer and use it in GitHub Desktop.
index.html
<!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