gitdagray / django-course

89 stars 47 forks source link

error in lesson2 html files #3

Open saadalamgir18 opened 1 month ago

saadalamgir18 commented 1 month ago

I used the html code from your video. It was causing error "Invalid block tag on line 5: 'endblock'. Did you forget to register or load this tag?" then I resolved error using this code in all HTML files {% extends 'layout.html' %} {% block title %} About {% endblock %}

{% block content %}

About

Check out my Home page.

{% endblock %}