X-Git-Url: https://git.mdrn.pl/audio.git/blobdiff_plain/eee35e00bf0d0eb3d2a9f08f72c7052962fecbf6..fccf7669328b236987c1c49c03e35d3916c0093c:/src/archive/templates/base.html diff --git a/src/archive/templates/base.html b/src/archive/templates/base.html old mode 100755 new mode 100644 index 5e0053f..1bbebc9 --- a/src/archive/templates/base.html +++ b/src/archive/templates/base.html @@ -1,22 +1,28 @@ -{% load i18n %} <!DOCTYPE html> +{% load i18n static %} + <html> <head> <meta http-equiv="Content-type" content="text/html; charset=utf-8" /> - <link rel="stylesheet" type="text/css" href="{{ STATIC_URL }}style.css?20110808" /> + <meta name="viewport" content="width=device-width, initial-scale=1"> + + <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous"> + + <link rel="stylesheet" type="text/css" href="{% static 'style.css' %}" /> <title>{% trans "Audiobook repository" %}</title> </head> <body> -<div id="repo-zones-nav"> +<header class="navbar bg-light"> {% block repo-zones-nav %} {% endblock %} -</div> +</header> + -<div id="messages"> +<div> {% block messages %}{% endblock %} </div> -<div id="content"> +<div class="container"> {% block content %}{% endblock %} </div>