plchweb/base_app/templates/layout.html

49 lines
1.2 KiB
HTML
Raw Normal View History

2021-07-19 13:13:27 +00:00
<!DOCTYPE html>
<html>
<head>
{% load static %}
<title>{{ title }}</title>
<link rel="icon" type="image/png" href="">
<!-- REQUIRED META TAGS -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- CSS -->
<link rel="stylesheet" href="{% static "base_app/css/master.css" %}">
{% block headerExtension %}
{% endblock %}
</head>
<body>
<div class="navbar">
<div class="navbar-block">
HOME
</div>
<div class="navbar-block">
DOPRDELE
</div>
</div>
<div class="page">
<!-- NAVBAR -->
{% block content %}
{% endblock %}
<!-- FOOTER -->
<footer class="ftr">
<div id="contactHeader">
<h3>Marcel Plch</h3>
</div>
<div class="contactBlockWrapper">
<div class="contactBlock">
<h4>Lorem ipsum</h4>
</div>
</div>
</footer>
</div>
</body>
</html>