You will find only what you bring in.
[redakcja.git] / src / catalogue / templates / catalogue / base.html
1 <!DOCTYPE html>
2 {% load pipeline i18n %}
3 {% load static %}
4 {% load catalogue %}
5 <!DOCTYPE html>
6 <html>
7 <head lang="{{ LANGUAGE_CODE }}">
8     <meta http-equiv="Content-type" content="text/html; charset=utf-8" />
9     <link rel="icon" href="{{ STATIC_URL }}img/pr-icon.png" type="image/png" />
10     <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
11     {% stylesheet 'catalogue' %}
12     <title>{% block title %}{% block titleextra %}{% endblock %} ::
13         {% trans "Platforma Redakcyjna" %}{% endblock title %}</title>
14     {% block add_css %}{% endblock %}
15 </head>
16 <body>
17 <!--#include file='/pozor.html'-->
18
19
20 <nav class="navbar navbar-expand-md navbar-dark bg-dark">
21   <a class="navbar-brand" href="{% url 'catalogue_document_list' %}">
22           <img src="{% static "img/wl-orange.png" %}" alt="Platforma">
23   </a>
24   <ul class="navbar-nav mr-auto">
25         {% main_tabs %}
26     </ul>
27
28     <ul class="navbar-nav">
29         {% include "registration/head_login.html" %}
30     </ul>
31 </nav>
32
33 <div class="container mt-4 mb-4">
34   {% block content %}
35     <div class="row">
36       <div class="col-lg-8">
37         {% block leftcolumn %}
38         {% endblock leftcolumn %}
39       </div>
40       <div class="col-lg-4">
41         {% block rightcolumn %}
42         {% endblock rightcolumn %}
43       </div>
44     </div>
45   {% endblock content %}
46 </div>
47
48
49 <script
50     src="https://code.jquery.com/jquery-1.9.1.min.js"
51     integrity="sha256-wS9gmOZBqsqWxgIVgA8Y9WcQOa7PgSIX+rPA0VL2rbQ="
52     crossorigin="anonymous"></script>
53 <script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
54
55 {% javascript 'catalogue' %}
56 {% block add_js %}{% endblock %}
57 {% block extrabody %}
58 {% endblock %}
59 </body>
60 </html>