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 trialCorey Paris
Courses Plus Student 997 PointsFlask Basics- 'Add two blocks to' not working
The code seems fine. Maybe I'm supposed to edit one of the other two files (I added an extends to the other one jic).
from flask import Flask
from flask import render_template
app = Flask(__name__)
@app.route('/')
def index():
return render_template('index.html')
{{%extend "layout.html"%}}
<!doctype html>
<html>
<head><title>Homepage</title></head>
<body>
<h1>Smells Like Bakin'!</h1>
<p>Welcome to my bakery web site!</p>
</body>
</html>
<!doctype html>
<html>
<head>
<title>{{% block title %}}Smells Like Bakin'{{% endblock %}}</title>
</head>
<body>
{{%block content%}}{{%endblock%}}
</body>
</html>
2 Answers
Chris Freeman
Treehouse Moderator 68,441 PointsMore than just the extends
code, you seem to be mixing your syntax:
Variables are wrapped in {{ }}
, directives are wrapped in {% %}
. This:
{{%block content%}}{{%endblock%}}
should be replaced by
{% block content %}{% endblock %}
Spaces are required around the arguments, but it makes it a bit more readable.
Corey Paris
Courses Plus Student 997 PointsAnd it was that simple. I feel foolish (especially since i have the correct code in my text editor right next to my browser). Thx.
Corey Paris
Courses Plus Student 997 PointsCorey Paris
Courses Plus Student 997 PointsI see the extend(s) error. Will fix, but I doubt that's the problem, though if the instructions aren't clear enough...