2020-04-13 10:39:38 +01:00
|
|
|
{% load static %}
|
2020-05-02 13:48:44 +01:00
|
|
|
{% load sri %}
|
2020-04-13 10:39:38 +01:00
|
|
|
|
|
|
|
<!DOCTYPE HTML>
|
|
|
|
<html lang="en" dir="ltr">
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8" />
|
|
|
|
<meta http-equiv="Content-Language" content="" />
|
|
|
|
<meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no, width=device-width" />
|
|
|
|
<link rel="alternate" type="application/rss+xml" href="" />
|
|
|
|
<meta name="superfish" content="nofish" />
|
|
|
|
<meta name="application-name" content="TheOrangeOne" />
|
|
|
|
|
2020-04-25 22:05:48 +01:00
|
|
|
<link rel="icon" type="image/png" href='{% static "img/logo-transparent.png" %}'/>
|
|
|
|
|
2020-04-13 10:39:38 +01:00
|
|
|
<title>{% block title %}{% endblock %} :: TheOrangeOne</title>
|
2020-05-02 13:48:44 +01:00
|
|
|
|
2020-05-04 12:00:37 +01:00
|
|
|
{% sri_static "css/font-awesome.min.css" %}
|
|
|
|
{% sri_static "css/bootstrap-reboot.min.css" %}
|
|
|
|
{% sri_static "css/index.css" %}
|
2020-05-02 13:48:44 +01:00
|
|
|
|
2020-04-13 10:39:38 +01:00
|
|
|
</head>
|
2020-04-13 12:50:08 +01:00
|
|
|
<body class="{{ view_name }}">
|
2020-05-03 16:04:04 +01:00
|
|
|
<header id="top" class="navbar-fixed">
|
2020-04-13 11:37:39 +01:00
|
|
|
<nav>
|
|
|
|
<div class="nav-wrapper black">
|
2020-05-03 14:52:27 +01:00
|
|
|
<a href="#" data-target="mobile-nav" class="sidenav-trigger"><i class="fas fa-bars"></i></a>
|
2020-05-03 11:42:13 +01:00
|
|
|
<ul class="left hide-on-med-and-down">
|
|
|
|
{% include "navigation/index.html" %}
|
|
|
|
</ul>
|
2020-04-13 11:37:39 +01:00
|
|
|
</div>
|
|
|
|
</nav>
|
|
|
|
</header>
|
|
|
|
|
2020-05-03 16:04:04 +01:00
|
|
|
<ul class="sidenav black" id="mobile-nav">
|
2020-05-03 11:42:13 +01:00
|
|
|
{% include "navigation/index.html" %}
|
|
|
|
</ul>
|
2020-05-02 12:53:02 +01:00
|
|
|
|
2020-04-13 11:37:39 +01:00
|
|
|
<main>
|
2020-05-02 21:49:27 +01:00
|
|
|
{% block main %}{% endblock %}
|
2020-04-13 11:37:39 +01:00
|
|
|
</main>
|
|
|
|
|
2020-05-02 11:45:57 +01:00
|
|
|
{% block footer %}
|
|
|
|
<footer class="page-footer black">
|
|
|
|
<div class="footer-copyright">
|
|
|
|
<div class="container">
|
|
|
|
© {% now "Y" %} TheOrangeOne
|
|
|
|
<a class="grey-text text-lighten-4 right" href="#top">Top</a>
|
|
|
|
</div>
|
2020-04-13 11:37:39 +01:00
|
|
|
</div>
|
2020-05-02 11:45:57 +01:00
|
|
|
</footer>
|
|
|
|
{% endblock %}
|
2020-04-13 10:39:38 +01:00
|
|
|
|
2020-05-02 13:48:44 +01:00
|
|
|
|
2020-05-04 12:00:37 +01:00
|
|
|
{% sri_static "js/materialize.min.js" %}
|
|
|
|
{% sri_static "js/index.js" %}
|
2020-04-13 12:32:26 +01:00
|
|
|
|
|
|
|
{% block extrascripts %}{% endblock %}
|
2020-04-13 10:39:38 +01:00
|
|
|
</body>
|
|
|
|
</html>
|