76 lines
1.9 KiB
HTML
76 lines
1.9 KiB
HTML
{% load monthplan_templates %}
|
||
{% load static %}
|
||
{% load i18n %}
|
||
<!DOCTYPE html>
|
||
<html lang="en">
|
||
<head>
|
||
<title>srg.arxiv.local</title>
|
||
<meta charset="utf-8">
|
||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||
|
||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">
|
||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
|
||
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>
|
||
|
||
<!--link rel="stylesheet" href="{% static 'css/bootstrap.min.css' %}">
|
||
<script src="{% static 'js/jquery.min.js' %}"></script>
|
||
<script src="{% static 'js/bootstrap.min.js' %}"></script-->
|
||
|
||
</head>
|
||
<body>
|
||
|
||
<div class="container">
|
||
|
||
<div class="row">
|
||
<div class="col-sm-10">
|
||
<h1>{% trans 'Spectrum-Roentgen-Gamma' %}</h1>
|
||
<p style="font-size:22px;">{% trans 'Astrophysical Project' %}</p>
|
||
</div>
|
||
|
||
<div class="col-sm-2">
|
||
<p style="text-align:right;">
|
||
<a href="{% url 'index ru' %}">РУС</a> | <a href="{% url 'index en' %}">ENG</a>
|
||
</p>
|
||
</div>
|
||
</div>
|
||
|
||
<div class="row">
|
||
<div class="col-sm-12">
|
||
<!--img src="{% static 'images/srg.png' %}" class="img" width="100%"-->
|
||
</div>
|
||
</div>
|
||
|
||
<div class="row">
|
||
<div class="col-sm-12">
|
||
<div class="jumbotron">
|
||
<h1>Permission denied (403)</h1>
|
||
{% if exception %}
|
||
<p>{{ exception|safe }}</p>
|
||
{% else %}
|
||
<p>No comments</p>
|
||
{% endif %}
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
|
||
<footer class="bs-footer" role="contentinfo">
|
||
<div class="row">
|
||
<div class="col-sm-12 text-center">
|
||
<p>
|
||
{% trans 'High Energy Astrophysics Department' %},
|
||
{% trans 'Space Research Institute (IKI), Moscow, Russia' %}
|
||
<span class="glyphicon glyphicon-copyright-mark"></span> {% now "Y" %}
|
||
</p>
|
||
<p>{% trans 'Development' %}: {% trans 'Roman Krivonos' %}
|
||
</p>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</footer>
|
||
|
||
</body>
|
||
</html>
|
||
|