When I run this script and open http://my_server/picture I get instead the picture the logo-string.
#!/usr/local/bin/perl
use warnings;
use 5.014;
use Mojolicious::Lite;
get '/picture' => sub {
shift->render();
};
app->start;
__DATA__
@@ picture.html.ep
<!DOCTYPE HTML>
<html>
<body>
<p>Hello</p>
<img src="/absolute/path/TEST.jpg" alt="logo" />
<p>World</p>
</body>
</html>
When I open this HTML-piece as normal HTML-file I get the picture.
What is the right way, to insert a picture with Mojolicious::Lite?