Ive read about this method called cache-busting that allows us to add version parameters to our js and css files so that clients wont have to clear cache every time we have an update. However, I didn`t read any about html.
Is there any method that allows us to load latest html file changes without clearing the cache?
P.S. I dont know about others but I just discovered that it is angularjs that is caching my templates. I posted my own solution anyway
EDIT
The link in the original answer is broken.
Aside from the accepted answer, the answers on this question offer interesting alternatives depending upon your build process.
ORIGINAL
You should be able to force reload the browser via js, while applying a hash to the url, via page-specific javascript that exists only on an updated version of the html file.
This would allow you to know when you are receiving the latest version of the file.
https://developer.zendesk.com/blog/static-file-cache-busting
Solved it. Just append a parameter string to your routes that are referencing your html files just like what we did on cache-busting for css and js.
Where 'versionNumber' is a global variable.