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>
|
2015-12-28 17:50:41 +00:00
|
|
|
<div class="row">
|
|
|
|
<div class="col-xs-12">
|
|
|
|
<p class="social">
|
|
|
|
<a href="https://twitter.com/RealOrangeOne"><i class="icon ion-social-twitter"></i></a>
|
|
|
|
<a href="https://instagram.com/RealOrangeOne"><i class="icon ion-social-instagram-outline"></i></a>
|
|
|
|
<a href=""><i class="icon ion-social-reddit"></i></a>
|
|
|
|
<a href="https://www.youtube.com/user/TheOrangeOneOfficial"><i class="icon ion-social-youtube"></i></a>
|
|
|
|
<a href=""><i class="icon ion-social-codepen"></i></a>
|
|
|
|
<a href=""><i class="icon ion-social-twitch-outline"></i></a>
|
|
|
|
<a href="https://github.com/RealOrangeOne"><i class="icon ion-social-octocat"></i></a>
|
|
|
|
<p>
|
|
|
|
</div>
|
|
|
|
</div>
|
2015-11-24 09:17:18 +00:00
|
|
|
<div class="row">
|
|
|
|
<div class="col-xs-12">
|
2015-11-29 20:11:09 +00:00
|
|
|
<p>
|
2015-12-28 12:14:01 +00:00
|
|
|
<a href="{% url 'pages:about' %}">About</a> | <a href="https://github.com/RealOrangeOne/theorangeone.net" target="_blank">View Source</a> | <a href="">Contact</a>
|
2015-11-29 20:11:09 +00:00
|
|
|
<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-12-11 08:40:01 +00:00
|
|
|
{% if js_redirect %}
|
2015-11-25 08:42:58 +00:00
|
|
|
<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>
|