38 lines
1.5 KiB
HTML
38 lines
1.5 KiB
HTML
{% load static %}
|
|
|
|
<!DOCTYPE html>
|
|
{% csrf_token %}
|
|
<html lang="de">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<title>
|
|
{% block title %}Tobias Gerwin - Homepage{% endblock %}
|
|
</title>
|
|
<meta name="description" content="Tobias Gerwin - bauaffiner Nerd. In den zwei Welten Web-Programmierung und Projektsteuerung arbeitet Tobias Gerwin an langfristigen und nachhaltigen Lösungen. Am liebsten im Team, manchmal autark." />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<meta name="keywords" content="NRW, Düsseldorf, Köln, Wuppertal, Berlin, Trainer, Schulungen, Web-Programmierung, Programmierung, Programmierer, vueJS, Vue, JavaScript, JS, Python, Django, dca-bau.de, Projektsteuerung, Facility-Management, Profil, Betreiberverantwortung, Gebäudemanagement, Immobilien, Bauprojekte, Hochbau, Dokumentation">
|
|
<meta name="author" content="Tobias Gerwin, Düsseldorf">
|
|
|
|
{# Global stylesheets #}
|
|
<link rel="stylesheet" type="text/css" href="{% static 'home/css/styles.css' %}">
|
|
|
|
{% block extra_css %}
|
|
{# Override this in templates to add extra stylesheets #}
|
|
{% endblock %}
|
|
</head>
|
|
|
|
<body class="font-mono text-salte-800 text-xl {% block body_class %}{% endblock %}" {% block body_fnc %}{% endblock %}>
|
|
|
|
{# Global javascript #}
|
|
|
|
{% block content %}{% endblock %}
|
|
|
|
{% include "footer.html" %}
|
|
|
|
{% block extra_js %}
|
|
{# Override this in templates to add extra javascript #}
|
|
{% endblock %}
|
|
|
|
</body>
|
|
</html>
|