Before, I followed this structure in a template
<html>
...
<script>
{% include "myapp/includes/jquery-1.7.1.min.js" %}
{% include "myapp/includes/myscript.js" %}
</script>
...
However, this resulted in all the JavaScript code being visible in the page source.
Since I am not incorporating any Form in my template, can I utilize the Media class to add JavaScript?
Is it preferable to simply use <script src=".."
or link ref=".." to include JavaScript files? Which method is superior?