You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
806 B
25 lines
806 B
{% load staticfiles %}
|
|
|
|
<!doctype html>
|
|
<html ng-app='app'>
|
|
<head>
|
|
<meta charset='utf-8'>
|
|
<meta http-equiv='X-UA-Compatible' content='IE=edge, chrome=1'>
|
|
<meta name='viewport' content='width=device-width, initial-scale=1'>
|
|
<meta name='viewport' content='initial-scale=1.0, user-scalable=no, maximum-scale=1'>
|
|
<title></title>
|
|
|
|
<style>[ng-cloak] {display: none !important}</style> <!-- Prevent Angular from displaying unrendered template expressions -->
|
|
|
|
<!--<link rel='stylesheet' href='/assets/css/style.css'>-->
|
|
</head>
|
|
|
|
<body>
|
|
{% block content %}{% endblock %}
|
|
|
|
<!--<script src='/assets/lib/lodash/lodash.js'></script>
|
|
<script src='/assets/lib/lodash/lodash.fp.js'></script>-->
|
|
<script src='{% static 'lib/angular/angular.js' %}'></script>
|
|
<script src='{% static 'index.js' %}'></script>
|
|
</body>
|
|
</html>
|
|
|