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 trialJames Estrada
Full Stack JavaScript Techdegree Student 25,866 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>