X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/5913c54d19b8f6775633176032161d49f9b2f1aa..5085f47552e7c265a37f9fc0e5b3413154f902f0:/src/redakcja/templates/base.html

diff --git a/src/redakcja/templates/base.html b/src/redakcja/templates/base.html
index fc609954..01fb09bf 100644
--- a/src/redakcja/templates/base.html
+++ b/src/redakcja/templates/base.html
@@ -6,6 +6,7 @@
         <link rel="icon" href="{{ STATIC_URL }}img/pr-icon.png" type="image/png" />
         <title>{% block title %}{% block titleextra %}{% endblock titleextra %} ::
             {% trans "Platforma Redakcyjna" %}{% endblock title %}</title>
+	<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">
         {% block extrahead %}
         {% endblock %}
     </head>
@@ -16,13 +17,15 @@
         	<img src="{{STATIC_URL}}img/spinner.gif" alt="Loading" />
         	<p>{% trans "Loading" %}</p>
     	</div>
-	</div>
+    </div>
 
-	<div id="body-wrap">
-		<!-- version: {{ APP_VERSION }} -->
-        <div id="content">{% block maincontent %} {% endblock %}</div>
-        </div>
-    <script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js"></script>
+    <!-- version: {{ APP_VERSION }} -->
+    {% block maincontent %} {% endblock %}
+    <script
+        src="https://code.jquery.com/jquery-1.9.1.min.js"
+        integrity="sha256-wS9gmOZBqsqWxgIVgA8Y9WcQOa7PgSIX+rPA0VL2rbQ="
+        crossorigin="anonymous"></script>
+    <script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
     {% block extrabody %}{% endblock %}
     </body>
 </html>