I am trying to integrate jQTouch with Tempo templating (http://tempojs.com/) but it seems to not work for me.

I have included both libraries (in the current dir) and the raw data in in JSON format.

Here is the code - that renders incorrectly. i.e. w/o template substitution.

Any tips that you JavaScript gurus can provide in order to help me out?

<!doctype html>
<html>
  <head>
    <meta charset="UTF-8" />
    <title>jQTouch</title>
    <link rel="stylesheet" href="jqtouch.css" title="jQTouch">
    <script src="zepto.min.js" type="text/javascript" charset="utf-8"></script>
    <script src="jqtouch.min.js" type="text/javascript" charset="utf-8"></script>
    <script type="text/javascript" src="tempo.min.js"></script>

    <script type="text/javascript" charset="utf-8">
      var jQT = new $.jQTouch({
        icon: 'jqtouch.png',
        icon4: 'jqtouch4.png',
        addGlossToIcon: false,
        startupScreen: 'jqt_startup.png',
        statusBar: 'black-translucent',
        themeSelectionSelector: '#jqt #themes ul',
        preloadImages: []
      });
    </script>
    <script>
      var data = [
      {
        'name': 'page1',
        'header': '',
        'body': '<a href="#page2" class="whiteButton">Next</a>',
        'footer': ''
      },
      {
        'name': 'page2',
        'header': '<h1>page2</h1><a href="#" class="back">Home</a>',
        'body': '<a href="#" class="whiteButton">Done</a>',
        'footer': ''
      },
      ]

      $(document).ready(function() {
        Tempo.prepare('jqt').render (data); 
      });

    </script>

  </head>
  <body>
    <div id="jqt">
      <div data-template id="{{name}}" class="current">
        <div class="toolbar">{{header}}</div>
        <div class="scroll">{{body}}
          <div class="info">{{footer}}</div>
        </div>
      </div>
    </div>
  </body>
</html>
link|improve this question
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.