initial commmit

This commit is contained in:
Федор Подлеснов 2015-12-01 15:01:10 +03:00
commit 88fc338b55
3 changed files with 57 additions and 0 deletions

21
index.html Normal file
View file

@ -0,0 +1,21 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
{% for file in style %}
<link type="text/css" rel="stylesheet" href="{{ file }}"/>
{% endfor %}
</head>
<body>
{% if content %}
{{ content }}
{% endif %}
{% for file in script %}
<script type="text/javascript" src="{{ file.name }}"></script>
{% endfor %}
</body>
</html>