74 lines
2.5 KiB
HTML
74 lines
2.5 KiB
HTML
{% load static %}
|
|
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
<meta http-equiv="x-ua-compatible" content="ie=edge">
|
|
<title>srg.arxiv.local</title>
|
|
<!-- MDB icon -->
|
|
<!-- link rel="icon" href="img/mdb-favicon.ico" type="image/x-icon"-->
|
|
<!-- Font Awesome -->
|
|
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.11.2/css/all.css">
|
|
<!-- Google Fonts Roboto -->
|
|
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap">
|
|
<!-- Bootstrap core CSS -->
|
|
<link rel="stylesheet" href="{% static 'mdb/css/bootstrap.min.css' %}">
|
|
<!-- Material Design Bootstrap -->
|
|
<link rel="stylesheet" href="{% static 'mdb/css/mdb.min.css' %}">
|
|
<!-- Your custom styles (optional) -->
|
|
<link rel="stylesheet" href="{% static 'css/style.css' %}">
|
|
|
|
<!-- jQuery -->
|
|
<script type="text/javascript" src="{% static 'mdb/js/jquery.min.js' %}"></script>
|
|
<!-- Bootstrap tooltips -->
|
|
<script type="text/javascript" src="{% static 'mdb/js/popper.min.js' %}"></script>
|
|
<!-- Bootstrap core JavaScript -->
|
|
<script type="text/javascript" src="{% static 'mdb/js/bootstrap.min.js' %}"></script>
|
|
<!-- MDB core JavaScript -->
|
|
<script type="text/javascript" src="{% static 'mdb/js/mdb.min.js' %}"></script>
|
|
|
|
|
|
<!-- MDBootstrap Datatables -->
|
|
<link href="{% static 'mdb/css/addons/datatables.min.css' %}" rel="stylesheet">
|
|
<script type="text/javascript" src="{% static 'mdb/js/addons/datatables.min.js' %}"></script>
|
|
|
|
</head>
|
|
<body>
|
|
{% block header %}
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<!-- Start your project here-->
|
|
<div style="height: 100vh">
|
|
<div class="flex-center flex-column">
|
|
<h1 class="text-hide animated fadeIn mb-4" style="background-image: url('https://mdbootstrap.com/img/logo/mdb-transparent-250px.png'); width: 250px; height: 90px;">MDBootstrap</h1>
|
|
<h5 class="animated fadeIn mb-3">Thank you for using our product. We're glad you're with us.</h5>
|
|
<p class="animated fadeIn text-muted">MDB Team</p>
|
|
</div>
|
|
</div>
|
|
<!-- End your project here-->
|
|
{% endblock %}
|
|
|
|
<footer class="bs-footer" role="contentinfo">
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="col-sm-12">
|
|
<!--p style="text-align:right;">Development: Roman Krivonos</p-->
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</footer>
|
|
|
|
|
|
<!-- Your custom scripts (optional) -->
|
|
<script type="text/javascript">
|
|
$(document).ready(function () {
|
|
$('#srgz').DataTable({"scrollX": true,});
|
|
});
|
|
</script>
|
|
|
|
</body>
|
|
</html>
|