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 Python for File Systems Project Starter Creating Files From Templates

James Estrada
seal-mask
.a{fill-rule:evenodd;}techdegree
James Estrada
Full Stack JavaScript Techdegree Student 25,866 Points

index.html.template code missing in Teacher's Notes?

Kenneth says around the 4:00 minute mark that he would put the code that he copied and pasted for the index.html.template file in the Teacher's Notes. I don't see that code, does anyone have it?

1 Answer

Here it is:

<!doctype html>
<html lang='en'>
<head>
    <title>{project_name}</title>
    <link href="{% url_for('static', filename={'project_slug}.css') %}"
</head>
<body>
    <h1>Welcome to {project_name}!</h1>
    <script src="{% url_for('static', filename='{project_slug}.js' %}"></script>
</body>
</html>