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 trialSudhir Raghur Venkatesalu
7,347 Pointsbadly need help to pass this task
what is wrong with index.html
from flask import Flask
from flask import render_template
app = Flask(__name__)
@app.route('/')
def index():
return render_template('index.html')
{%extends "layout.html"%}
<!doctype html>
<html>
<head><title>{%block title%}Homepage{%endblock%}</title></head>
<body>
{%block content%}Smells Like Bakin'!Welcome to my bakery web site!{%endblock%}
</body>
</html>
{% extends "layout.html" %}
<!doctype html>
<html>
<head><title>{% block title %}Smells Like Bakin'{%endblock%}</title></head>
<body>
{% block content %}{%endblock%}
</body>
</html>
2 Answers
Tlotlo Molokwe
16,618 PointsThe challenge i'm assuming you are having problems with is the 5/6 question, remove the following tags and it should work from your index.html file:
<!doctype html>, <html> and <body>
don't forget to remove the corresponding closing tags to the tags listed and don't include {% extends "layout.html" %} in the layout.html that's the file you are extending so only include it at the top of your index.html
Steven Parker
231,198 PointsIt looks like when you enclosed the original HTML in a block, some of the markup tags got deleted. Apparently that step let you pass but a later step detected the contents as not being correct.
Start the challenge over, and be careful to preserve the tags when you add the block markers. Then when you get to the step Tlotlo mentioned (I'm not sure you were quite there yet), remember to remove everything that's not inside the markers.