redmarkets-negotiation/templates/base.html

39 lines
1.3 KiB
HTML
Raw Normal View History

2020-04-19 03:38:31 +00:00
<!DOCTYPE html>
<html lang="{{ DEFAULT_LANG }}">
<head>
{% block head %}
<meta charset="utf-8">
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8" />
<title>@TODO</title>
<meta name="description" content="@TODO"/>
<meta name="HandheldFriendly" content="True" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="referrer" content="origin" />
<link href="{{ SITEURL }}" rel="canonical" />
<link href="/static/css/style.css" type="text/css" rel="stylesheet" />
<link href="/static/css/code_blocks/monokai.css" rel="stylesheet">
<!-- Custom fonts -->
<!-- link href='https://fonts.googleapis.com/css?family=Montserrat:400,300' rel='stylesheet' type='text/css' />
<link href="https://fonts.googleapis.com/css?family=Lato" rel="stylesheet" type="text/css" /> -->
<link rel="stylesheet" media="screen" href="/static/css/nordsud.css" type="text/css"/>
2020-04-19 03:38:31 +00:00
{% endblock head %}
</head>
<body class="home-template " {% block bodyclasses %}{% endblock bodyclasses %}>
{% block header %}{% endblock header %}
{% block content %}{% endblock content %}
<!--
<footer id="footer" style="display: none;">
{% block footer %}{% endblock footer %}
</footer>
-->
<script type="text/javascript" src="/static/js/script.js"></script>
</body>
</html>