Create a homepage template for a django project that will extend the base_generic template and output the text passed to the title_text variable in the header. The template must include a content block and a title block
{% extends "base_generic.html" %} {% block title %}{{title_text}}{% endblock %} {% block content %} {% endblock %}