mirror of
https://github.com/nottinghamtec/PyRIGS.git
synced 2026-01-17 05:22:16 +00:00
50 lines
1.3 KiB
HTML
50 lines
1.3 KiB
HTML
{% load static from staticfiles %}
|
|
{% load raven %}
|
|
|
|
|
|
<!DOCTYPE html>
|
|
<html
|
|
dir="{% if LANGUAGE_BIDI %}rtl{% else %}ltr{% endif %}"
|
|
xml:lang="{% firstof LANGUAGE_CODE 'en' %}"
|
|
lang="{% firstof LANGUAGE_CODE 'en' %}">
|
|
<head>
|
|
<meta name="viewport" content="initial-scale=1">
|
|
|
|
{% block css %}
|
|
{% endblock %}
|
|
|
|
<script src="https://code.jquery.com/jquery-1.8.3.min.js"
|
|
integrity="sha256-YcbK69I5IXQftf/mYD8WY0/KmEDCv1asggHpJk1trM8=" crossorigin="anonymous"></script>
|
|
<script src="https://cdn.ravenjs.com/1.3.0/jquery,native/raven.min.js"></script>
|
|
<script>Raven.config('{% sentry_public_dsn %}').install()</script>
|
|
{% block preload_js %}
|
|
{% endblock %}
|
|
|
|
{% block extra-head %}{% endblock %}
|
|
</head>
|
|
|
|
<body>
|
|
<div class="row client-header">
|
|
<table class="container">
|
|
<tr>
|
|
<td>
|
|
<img src="https://www.nottinghamtec.co.uk/imgs/tec_logo_white.png"/>
|
|
</td>
|
|
<td class="text-right">
|
|
<img src="https://www.nottinghamtec.co.uk/imgs/UoNSU.png"/>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
|
|
<div class="container">
|
|
<div id="content" class="row">
|
|
{% block content %}{% endblock %}
|
|
</div>
|
|
</div>
|
|
|
|
{% block js %}
|
|
{% endblock %}
|
|
</body>
|
|
</html>
|