Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

James Estrada
Full Stack JavaScript Techdegree Student 25,864 Pointsindex.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

Samir Poonawala
29,951 PointsHere 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>