2015-10-19 13:04:49 +01:00
|
|
|
{% load staticfiles %}
|
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
2015-11-25 21:11:52 +00:00
|
|
|
<title>{{ html_title }} | TheOrangeOne</title>
|
2015-10-19 13:04:49 +01:00
|
|
|
<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-25 21:11:52 +00:00
|
|
|
<body class="{{ body_class }}">
|
2015-11-25 19:39:11 +00:00
|
|
|
{% block baseContent%}{% endblock %}
|
2015-11-24 09:09:03 +00:00
|
|
|
<footer>
|
|
|
|
<div class="container">
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-xs-12">
|
|
|
|
<h3>Copyright © TheOrangeOne 2015</h3>
|
2015-11-24 09:17:18 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-xs-12">
|
2015-11-29 20:11:09 +00:00
|
|
|
<p>
|
|
|
|
<a href="">About</a> | <a href="https://github.com/RealOrangeOne/theorangeone.net" target="_blank">View Source</a> | <a href="">Contact</a>
|
|
|
|
<p>
|
2015-11-24 09:09:03 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2015-11-24 09:17:18 +00:00
|
|
|
<div class="row">
|
|
|
|
<div class="col-xs-12">
|
2015-11-24 09:22:46 +00:00
|
|
|
<a href="https://circleci.com/gh/RealOrangeOne/theorangeone.net" target="_blank">
|
|
|
|
<img class="ci-badge" src="https://circleci.com/gh/RealOrangeOne/theorangeone.net.svg?style=svg"/>
|
|
|
|
</a>
|
2015-11-24 09:17:18 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2015-11-24 09:09:03 +00:00
|
|
|
</div>
|
|
|
|
</footer>
|
2015-11-24 22:03:58 +00:00
|
|
|
|
2015-11-09 14:13:17 +00:00
|
|
|
<script type="text/javascript" src="{% static 'js/libs.js' %}"></script>
|
|
|
|
<script type="text/javascript" src="{% static 'js/app.js' %}"></script>
|
2015-11-25 08:42:58 +00:00
|
|
|
{% if not no_js_redirect %}
|
|
|
|
<noscript>
|
|
|
|
<style> html, body { display:none; }</style>
|
2015-11-25 19:39:11 +00:00
|
|
|
<meta http-equiv="refresh" content="0.0;url={% url 'no-js' %}">
|
2015-11-25 08:42:58 +00:00
|
|
|
</noscript>
|
|
|
|
{% endif %}
|
2015-10-19 13:04:49 +01:00
|
|
|
</body>
|
|
|
|
</html>
|