I have a CSS file that is going to populate some divs with background images.
.span3.one {
background: url('//path/to/images')
}
.span4.one {
background: url('//path/to/images')
}
span5.one {
background: url('//path/to/images')
}
Can there be some macro or such that dynamically replaces some string based on various conditions like what domain/url the request originated or some clue in the link that called the page?
span3.one {
background: url('//$replacemoreintelligently')
}
I would rather use node.js or python, not PHP if server side is the answer. I just need some direction on this though.
There would potentially be thousands of these pages. Thank you.