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 trialJoakim Vercaemst
9,036 PointsDon't see what's the issue here
Help, please :)
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 %}
<body>
{% block content %}
<h1>Smells Like Bakin'!</h1>
<p>Welcome to my bakery web site!</p>
{% endblock %}
</body>
{% block title %} Smells Like Bakin' {% endblock %}
<body>
{% block content %}{% endblock %}
</body>
1 Answer
Ryan S
27,276 PointsHi Joakim,
You shouldn't remove all the html markup from "layout.html" because it is needed in order to extend to other templates. The challenge asks you to remove it all in "index.html" because it inherits everything from "layout.html". (You should also remove the <body> tags in "index.html").
layout.html should look like this:
<!doctype html>
<html>
<head><title>{% block title %}Smells Like Bakin'{% endblock %}</title></head>
<body>
{% block content %}{% endblock %}
</body>
</html>
Hope this helps.