I uploaded a js file into assets and put a .liquid extension on the end. (mysite.js.liquid)
I refer to it in my page's html like this....
{{ "mysite.js" | asset_url | script_tag }}
I've also tried...
{{ "mysite.js.liquid" | asset_url | script_tag }}
BUT, when I view the page I see the ACTUAL TEXT. Any idea why? What's the proper way to do this?
Also, I've seen online that it's recommended to put these script references in the head tag, BUT, I do not want this for every page that uses this theme. I just want to use this js (also css, etc) for this particular page.
Any ideas? Thanks!