Hi - I'm having some issues getting template inheritance to work correctly in my Flask app. My template (base.html) is appearing as intended but none of the body of the page is appearing.
Code below is a sample of what I'm using, with base.html in the /templates folder.
<html>
{% extends "base.html" %}
{% block body %}
<body>
<b>This is a test index page</b><br>
<i>This is testing if the italic tag works</i>
</body>
{% endblock %}
</html>
I'm a rookie with Flask, but my basic Googling around hasn't been able to find any issues with what I'm doing. Does anyone have any suggestions?
Thanks in advance!