console/SWSCloudWeb/templates/default/_layout.html
2016-10-01 12:09:52 +03:00

24 lines
1.1 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>{% block title %}{% endblock %}</title>
<meta name="description" content="{% block description %}{% endblock %}">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="{{ url_for('static', filename='css/foundation.min.css') }}" />
<link rel="stylesheet" href="{{ url_for('static', filename='css/gocloud.css') }}" />
<script src="{{ url_for('static', filename='js/vendor/jquery.js') }}"></script>
<!-- script src="{{ url_for('static', filename='js/vendor/modernizr.js') }}"></script -->
<script src="{{ url_for('static', filename='js/foundation/foundation.min.js') }}"></script>
<script src="{{ url_for('static', filename='js/foundation/foundation.orbit.js') }}"></script>
<script src="{{ url_for('static', filename='js/foundation/foundation.alert.js') }}"></script>
{% block head %}{% endblock %}
</head>
<body>
{% include "default/_header.html" %}
{% block content %}{% endblock %}
{% include "default/_footer.html" %}
{% block footer %}{% endblock %}
</body>
</html>