Created
October 10, 2012 12:19
-
-
Save fnordo/3865247 to your computer and use it in GitHub Desktop.
template rendered on server
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## BEGIN: Template (rendered on serverside) ### | |
<div id="wrap_page_view"> | |
<h1>Title</h1> | |
<p> | |
Description: lorem foobar... | |
</p> | |
</div> | |
<script type="text/javascript"> | |
var model = new Page({ | |
title: "My title", | |
description: "My Description" | |
}); | |
var page_view = new PageView({model: model}).setElement($("#wrap_page_view")); | |
</script> | |
### END Template ### |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment