Hello,
I have been working on a website at my college (not coursework) that uses Pylons and Genshi. To avoid Genshi parsing the JavaScript code in a template I moved the JavaScript to a separate file. The problem is I tried putting the .js file in the templates directory (where the HTML it came from is located) and linking it in with the code below, but it did not work.
<head_info>
<script type="text/javascript" src="javascript_utilities.js">
</script>
</head_info>
So what I need to know is, where do I place the JavaScript file so that it will properly link in on a website managed by Pylons.
Thanks
Note: I'f you haven't guessed, I am very new at web development.