Computer scienceBackendDjangoTemplates

Django template inheritance

Populating the template

Report a typo

You have created a base template already named base.html in blog/templates/blog/base.html with a block of {% block body %} {% endblock %}.

Your task is to add the second-level header: My awesome blog!

Write HTML and CSS code
{% extends "blog/base.html" %}

<!-- write your code below -->








Completed 0 of 1
Add the second-level header "My awesome blog!".
___

Create a free account to access the full topic