I have an image stored in public/images/image.jpg
I am using this image in several files. However, for the sake of convenience and saving time I would like to store that reference link as a variable. So instead of using <img src="/images/image.jpg"> it would be <img src="variable_name">. This would also allow me to edit the path that the variable is set to, without having to do it each time I use the image.
Thanks,