plchweb/base_app/templates/layout.html

56 lines
1.3 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="">
2021-07-19 18:56:15 +00:00
{# REQUIRED META TAGS #}
2021-07-19 13:13:27 +00:00
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
2021-07-19 18:56:15 +00:00
{# CSS #}
2021-07-19 13:13:27 +00:00
<link rel="stylesheet" href="{% static "base_app/css/master.css" %}">
2021-07-19 18:56:15 +00:00
{% block headerExtension %}
{% endblock %}
2021-07-19 13:13:27 +00:00
</head>
<body>
2021-07-19 18:56:15 +00:00
{# NAVBAR #}
2021-07-19 13:13:27 +00:00
<div class="navbar">
2021-07-19 18:56:15 +00:00
<a href="/">
<div class="navbar-block">
Home
</div>
</a>
<a href="/curriculum-vitae">
2021-07-19 13:13:27 +00:00
<div class="navbar-block">
2021-07-19 18:56:15 +00:00
Curriculum Vitae
2021-07-19 13:13:27 +00:00
</div>
2021-07-19 18:56:15 +00:00
</a>
2021-07-19 13:13:27 +00:00
</div>
2021-07-19 18:56:15 +00:00
{# CONTENT #}
2021-07-19 13:13:27 +00:00
<div class="page">
{% block content %}
{% endblock %}
</div>
2021-07-19 18:56:15 +00:00
{# 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>
2021-07-19 13:13:27 +00:00
</body>
</html>