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 trialDaniel Mohr
3,157 PointsI don't understand what I'm doing wrong
{%extends "layout.html"%} {% block title %}Homepage{%endblock%} {% block content %}Smells Like Bakin'!Welcome to my bakery web site!{%endblock%}
from flask import Flask
from flask import render_template
app = Flask(__name__)
@app.route('/')
def index():
return render_template('index.html')
{% extends "layout.html"%}
{% block title %}Homepage{%endblock%}
{% block content %}Smells Like Bakin'!Welcome to my bakery web site!{% endblock%}
<!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 PointsYour are SO close! In task 5, you've stripped off too much content. The <h1></h1><p></p>
tags should be retained. Add these back in, and it should pass!
Post back if you need more help. Good luck!!
Daniel Mohr
3,157 PointsYou so much :)
Daniel Mohr
3,157 PointsDaniel Mohr
3,157 PointsKenneth Love
Have problems on step five