Relative paths with Roots

I’ve create a new template under the templates directory called features.php and I’m trying to reference an image in the assets/img/ directory so I’m using the following path…

src="../assets/img/location.png"

…which doesn’t seem to be working locally or on my host.

Is there’s something within Roots that causes relative paths to behave differently. If so, what is best practice?

You’re missing the call to your theme directory, which is <?php echo get_template_directory_uri(); ?> - this is no different in Roots versus any other theme

The roots community is a beautiful thing, especially for amateurs like myself. Thanks, @benword.