<h2>Getting started</h2>
<p>
To include the source files for {{projectName}} and its dependencies,
first load the YUI seed file if you haven't already loaded it.
</p>
```
<script src="{{yuiSeedUrl}}"></script>
```
<p>
Next, create a new YUI instance for your application and populate it with the modules
you need by specifying them as arguments to the `YUI().use()` method.
YUI will automatically load any dependencies required by the modules you specify.
</p>
```
<script>
// Create a new YUI instance and populate it with the required modules.
YUI().use('{{galleryName}}', function (Y) {
    // {{projectName}} is available and ready for use. Add implementation
    // code here.
});
</script>
```
<p>
For more information on creating YUI instances and on the
<a href="http://yuilibrary.com/yui/docs/api/classes/YUI.html#method_use">`use()` method</a>, see the
documentation for the <a href="http://yuilibrary.com/yui/docs/yui/index.html">YUI Global Object</a>.
</p>

