Html – What's wrong with the src attribute in this img tag?
I got a handlebars main template with the following code. <!doctype html> <html> <head> <title>Meadowlark Travel</title> </head> <body> <header><img src="/img/logo.png" alt="Meadowlark Travel Logo"></header> {{{body}}} </body> </html> and I have a directory structure like this. └── meadowlark.js └── img └── logo.png…