Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Python Flask Basics Templates and Static Files Template Inheritance

Didn't find the right content in the rendered template.

Task: Put the contents of the <title> tag in "index.html" into the title block.

Error: Didn't find the right content in the rendered template.

flask_app.py
from flask import Flask
from flask import render_template

app = Flask(__name__)


@app.route('/')
def index():
    return render_template('index.html')
templates/index.html
{% extends "layout.html" %}
<!doctype html>
<html>
<head><title>{% block title %}Homepage{% endBlock %}</title></head>
<body>
{% block content %}
<h1>Smells Like Bakin'!</h1>
<p>Welcome to my bakery web site!</p>
{% endBlock %}
</body>
</html>
templates/layout.html
<!doctype html>
<html>
<head><title>{% block title %}Smells Like Bakin'{% endBlock %}</title></head>
<body>
{% block content %}{% endBlock %}
</body>
</html>

1 Answer

Jennifer Nordell
seal-mask
STAFF
.a{fill-rule:evenodd;}techdegree
Jennifer Nordell
Treehouse Teacher

Hi there, Olivier Esuka Muselemu ! It looks like you're doing terrific! You have chosen an unorthodox capitalization throughout your code for endblock and instead called it endBlock. For some reason, the challenge has allowed this to pass up until now. But on this step, it absolutely requires you to have it lower-cased as endblock. Also note that outside this challenge trying to use endBlock instead of endblock would result in an error. I would go though and change all the capitalization to the one mentioned here. Once I change that, your code passes with flying colors!

Hope this helps! :sparkles:

Also, tagging Chris Howell to take a look at the challenge checker here :smiley:

OOh yeah, I was even wondering why both of them worked (endblock and endBlock) and I wanted to go with camel case. Thank you for the clarification, and after changing to lowercase, everything works fine now.