This is a library that helps you getting started with your app by providing useful defaults.

Here is how you would use it in a template:

<acre:script>
 var t = acre.require("/freebase/apps/default/templates"); // get the default templates
</acre:script>
<html>
 <head>
   <title>whatever</title>
   ${t.jquery()}                   <!-- loads jquery -->
   ${t.jquery_ui('smoothness')}    <!-- loads jquery_ui with the given theme (and all required css files) -->
   ${t.suggest()}                  <!-- loads Freebase Suggest (and all css files) -->
   ${t.json()}                     <!-- loads json handling library -->
   ${t.style('my_style.css')}      <!-- load the default style + your own from the 'my_style.css' one -->
   <style>
    /* ... your own styles ... */
   </style>
   <script>
    $(document).ready(function() {
      // ... your onload javascript code ...
    });
   </script>
 </head>
 <body>
   <div id="header">
     ${t.signin()} <!-- this loads OAuth-enabling sign-in/sign-out functionality -->
     <h1>Your app title</h1>
   </div>

    <ul class="path"> <!-- breadcrumbs make your app easier to navigate -->
      <li><a href="/">Whatever</a></li>
      <li class="current"><span>Defaults</span></li>
    </ul>

   <div id="body">
    <!-- ... your html content goes here -->
   </div>

   ${t.footer()} <!-- give attribution and links back to the source of your app -->
 </body>
</html>