I have all my image files served from a different domain, and I put that host name as a variable into Meteor.settings. Then, how can I access this variable within a Meteor template?
For example, in this template, what's the best practice to replace img.example.com
with a variable defined in Meteor.settings or some other global variables? I don't think it's a good idea to pass it to every template by using helpers.
<template name="products">
{{#each items}}
<img src="http://img.example.com/{{id}}.png">
{{/each}}
</template>