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

63 lines
2.7 KiB
HTML
Raw Normal View History

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">
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>
2015-12-28 18:12:39 +00:00
<a href="soon"><i class="icon ion-social-reddit"></i></a>
2015-12-28 17:50:41 +00:00
<a href="https://www.youtube.com/user/TheOrangeOneOfficial"><i class="icon ion-social-youtube"></i></a>
2015-12-28 18:12:39 +00:00
<a href="soon"><i class="icon ion-social-codepen"></i></a>
<a href="soon"><i class="icon ion-social-twitch-outline"></i></a>
2015-12-28 17:50:41 +00:00
<a href="https://github.com/RealOrangeOne"><i class="icon ion-social-octocat"></i></a>
2016-01-13 18:22:13 +00:00
</p>
2015-12-28 17:50:41 +00:00
</div>
</div>
2015-11-24 09:17:18 +00:00
<div class="row">
<div class="col-xs-12">
2016-01-13 18:22:13 +00:00
<p class="triple">
2016-02-28 22:27:55 +00:00
<a href="{% url 'about:index' %}">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>
2016-01-13 18:22:13 +00:00
<div class="row">
2016-02-28 22:27:55 +00:00
<div class="col-xs-12 powered-by">
<p>Powered by <a href="https://www.djangoproject.com/">Django</a>, <a href="https://clients.inceptionhosting.com/aff.php?aff=256">Inception Hosting</a>, and a whole heap of <a href="https://github.com/RealOrangeOne/theorangeone.net">Magic</a>!</p>
2016-01-13 18:22:13 +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>
{% 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>