I've a html file with bunch of css/js links. How can I version these static resources. Versioning can be file name versioning or adding as a query parameter . I'm not using any server side template, I've html file with js/css links. I don't want to append query param manually in links. Any help will be appreciated.
//in html
<link rel="stylesheet" href="test1.css">
<link rel="stylesheet" href="test2.css">
<link rel="stylesheet" href="test3.css">
<script src="myscripts.js"></script>
<script src="myscripts1.js"></script>
<script src="myscripts2.js"></script>