For some reason, I keep getting 404 not found errors when I launch my code in flask for animsition, even though I'm pretty sure that I'm linking to it correctly in the static file. The line in particular that is messed up is this one, I believe:
<script src="{{url_for('static', filename ='vendor/animsition/animsition.min.js')}}'"></script>
I checked and this is the proper location of the animsition file. Does this seem like proper syntax, or is the problem something else? Thanks!
It looks like you have an extra quotation mark in your URL?
<script src="{{url_for('static', filename ='vendor/animsition/animsition.min.js')}}'"></script>
I mean this:
.....ion.min.js')}}'"></script>
Can you change it to:
<script src="{{url_for('static', filename ='vendor/animsition/animsition.min.js')}}"></script>
and see if it loads? Your syntax seems to be fine.