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 Flask Basics Templates and Static Files Static Files

Flask app not displaying new images added to static folder

Link to music.jpeg works but link to mountainview3.jpeg doesn't work. I cannot find an answer on Google and am stumped. Thanks for any help!

% extends "layout.html" %
{% block content %}
    <div col="md-4">
    <h1 class="text-center mb-4">Music</h1>
    <img  class="mb-4 img-fluid rounded d-none d-sm-block h-25 border"  src="{{url_for('static', filename='music.jpeg')}}">
    <img  class="mb-4 img-fluid rounded d-none d-sm-block h-25 border"  src="{{url_for('static', filename='mountainview3.jpeg')}}">
    </div>
{% endblock content %}