Use blocks to allow special scripts or styles per page

This commit is contained in:
Kiril Kovachev 2024-10-14 11:34:39 +01:00
parent 2a4c724af5
commit c36da85953

View File

@ -4,6 +4,8 @@
<head> <head>
<title>{% block title %}{% endblock %} - KankenOnline</title> <title>{% block title %}{% endblock %} - KankenOnline</title>
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}"> <link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
{% block styles %}{% endblock %}
{% block scripts %}{% endblock %}
</head> </head>
<body> <body>
<nav> <nav>