21 lines
943 B
HTML
21 lines
943 B
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" />
|
|
<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>
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='css/foundation.min.css') }}" />
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='css/gocloud.css') }}" />
|
|
<meta name='shareinstock' content='' />
|
|
{% block head %}{% endblock %}
|
|
</head>
|
|
<body>
|
|
{% include "default/_header.html" %}
|
|
{% block content %}{% endblock %}
|
|
{% include "default/_footer.html" %}
|
|
</body>
|
|
</html>
|