Kirby noob question... Super simple News Item that can be added via the panel? File (Image) path?

I have a created a blueprint to add a News Item via the panel. The user can add a “file” to that new page, which in this case, is an image. The issue is that when I render the path to the file, it’s the absolute path to the file on my computer (I’m running locally at the moment).

/Users/kirbyer/Desktop/kirby-2.2.3/content/3-news/news-item/newspaper.jpg

Is there a way to make that a relative path, or at least make it work locally?


UPDATE: Answer for posterity’s sake:
I was using:
<?php echo $news->file() ?>
which appropriately returns the actual file path, whereas I should have been using
<?php echo $news->file()->url() ?>
which returns the actual url value.