flask-server/kinolist/templates/pages/home.html
2024-10-08 19:26:26 +02:00

10 lines
192 B
HTML

{% extends 'base.html' %}
{% block header %}
<h2>{% block title%}Home{% endblock title %}</h2>
{% endblock header %}
{% block content %}
{% include('_movies.html') %}
{% endblock content %}