## How to reproduce 1. Start hammer: `hammer-start` 1. Navigate to the backpage template in Brand Patterns (or any theme you like): http://localhost:2000/brand-patterns/views/backpage.html 1. Open the Backpage template in the brand-patterns repo in your code editor then add `<r:r:cache_key />` anywhere in the template. ## Tag to add support for `r:cache_key`: ```html <h1><r:cache_key /></h1> ``` Example output: A random 10 digit number: ``` 1627497592 ``` This tag can be useful when building URL's to assets. EG: ```html https://<r:site:domain />/public/<r:cache_key />/sitemap.xml ``` ## Link to tags in CleanSlate repo [cleanslate/app/lib/slate/radius/tags/theme_asset.rb](https://github.com/wvuweb/cleanslate/blob/dev/app/lib/slate/radius/tags/theme_asset.rb#L5-L7) (Github)
How to reproduce
hammer-start<r:r:cache_key />anywhere in the template.Tag to add support for
r:cache_key:Example output:
A random 10 digit number:
This tag can be useful when building URL's to assets. EG:
Link to tags in CleanSlate repo
cleanslate/app/lib/slate/radius/tags/theme_asset.rb (Github)