flask-server/kinolist/templates/pages/home.html

10 lines
192 B
HTML
Raw Normal View History

2024-10-08 13:20:00 -04:00
{% extends 'base.html' %}
{% block header %}
<h2>{% block title%}Home{% endblock title %}</h2>
{% endblock header %}
{% block content %}
{% include('_movies.html') %}
{% endblock content %}