1
Fork 0
This repository has been archived on 2023-03-26. You can view files and clone it, but cannot push or open issues or pull requests.
theorangeone.net-legacy/templates/base.html

22 lines
856 B
HTML
Raw Normal View History

2015-10-19 13:04:49 +01:00
{% 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>
2015-11-09 21:47:16 +00:00
<body class="{{ body_class }}">
2015-11-09 14:13:17 +00:00
{% 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>
2015-10-19 13:04:49 +01:00
</body>
</html>