Google Apps Scripts で、テンプレート HTML で jQuery を使用しようとしています。次のエラーが表示されます。
ReferenceError: "$" が定義されていません。
index.html
<html>
  <head>
    <script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
  </head>
  <body>
  My favorite Google products:
  <? var data = ['Gmail', 'Docs', 'Android']; ?>
  <? $(data).each(function(){ ?>
    <?= this ?>
  <?}); ?>
  </body>
</html>
Code.gs
function doGet() {
  return HtmlService
    .createTemplateFromFile('index')
    .evaluate();
}