21 lines
831 B
HTML
21 lines
831 B
HTML
{% load staticfiles %}
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>{% block htmltitle %}{% endblock %} | TheOrangeOne</title>
|
|
<meta chatset='utf-8' />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1" />
|
|
<script type="text/javascript" src="{% static 'js/jquery.js' %}"></script>
|
|
<link rel="stylesheet" type="text/css" href="{% static 'css/style.css' %}"/>
|
|
<link rel="shortcut icon" href=""/>
|
|
</head>
|
|
<body>
|
|
{% block content%}{% endblock %}
|
|
<script type="text/javascript" src="{% static 'js/libs.js' %}"></script>
|
|
<script type="text/javascript" src="{% static 'js/app.js' %}"></script>
|
|
<noscript>
|
|
<style> html, body { display:none; }</style>
|
|
<meta http-equiv="refresh" content="0.0;url={% url 'pages:no-js' %}">
|
|
</noscript>
|
|
</body>
|
|
</html>
|