Passing a title attribute

I am using this code

<?php if($image = $page->image('header.jpg')): ?>
	<img src="<?= $image->url() ?>" width=100%  title="Somewhere in Australia">
<?php endif ?>

which the stylesheet uses to load a header/logo to each page on my webpage.

Is there a way to pass the title in the header.jpg.txt file? I can add it manually as in the code above, but of course this would having a different template for each file, which is a bit ridiculous.

Yes, see chapter Adding meta data to your files.

https://getkirby.com/docs/guide/content/files#adding-meta-data-to-your-files

Awesome! Thanks so much.