55 lines
2.1 KiB
HTML
55 lines
2.1 KiB
HTML
<html>
|
|
<head>
|
|
<!-- Required meta tags -->
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
<!-- Bootstrap CSS -->
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/css/bootstrap.min.css" integrity="sha384-TX8t27EcRE3e/ihU7zmQxVncDAy5uIKz4rEkgIXeMed4M0jlfIDPvg6uqKI2xXr2" crossorigin="anonymous">
|
|
<!-- My CSS file -->
|
|
{% load static %}
|
|
<link rel="stylesheet" type="text/css" href="{%static 'css/main.css' %}">
|
|
{% if title %}
|
|
<title>{{ title }} - Aussen- und Innenausbau</title>
|
|
{% else %}
|
|
<title>Aussen- und Innenausbau</title>
|
|
{% endif %}
|
|
</head>
|
|
<body class="text-center">
|
|
<div class="navbar-wrapper">
|
|
<header>
|
|
<nav class="navbar fixed-top navbar-light bg-nav navbar-expand-md">
|
|
<!--Logo-->
|
|
{% load static %}
|
|
<a class="navbar-brand" href="#"><img src="{% static 'img/logo.png' %}" width="150" alt="logo"
|
|
class="d-inline-block mr-1 align-center"></a>
|
|
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#mainmenu">
|
|
<span class="navbar-toggler-icon"></span>
|
|
</button>
|
|
|
|
<div class="collapse navbar-collapse" id="mainmenu">
|
|
<ul class="navbar-nav">
|
|
<!--Start-->
|
|
<li class="nav-item">
|
|
<a class="nav-link" href="#">Start</a>
|
|
</li>
|
|
<!--Start-->
|
|
<li class="nav-item">
|
|
<a class="nav-link" href="#">Dodaj godziny</a>
|
|
</li>
|
|
|
|
|
|
</ul>
|
|
</div>
|
|
|
|
</nav>
|
|
</header>
|
|
</div>
|
|
{% block content %}
|
|
{% endblock %}
|
|
|
|
|
|
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script>
|
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-ho+j7jyWK8fNQe+A12Hb8AhRq26LrZ/JpcUGGOn+Y7RsweNrtN/tE3MoK7ZeZDyx" crossorigin="anonymous"></script>
|
|
|
|
</body>
|
|
</html> |