Templates added

This commit is contained in:
2024-06-05 11:33:02 +03:00
parent 69a2160eb7
commit 50c53060bf
117 changed files with 16737 additions and 0 deletions

71
Templates/404.html Normal file
View File

@@ -0,0 +1,71 @@
{% 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>Page not found (404)</h1>
</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' %},
{% trans 'email' %}: krivonos<span class="glyphicon glyphicon-globe"></span>cosmos.ru
</p>
</div>
</div>
</div>
</footer>
</body>
</html>