Created
July 26, 2012 14:15
-
-
Save nicolasembleton/3182289 to your computer and use it in GitHub Desktop.
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
<script type="text/x-handlebars" data-template-name="home-top-news"> | |
<!-- The main element + the other 3 --> | |
{{#each content}} | |
<div style="float:left;display:inline-block;margin-left:15px;margin-bottom:15px;"> | |
<img {{bindAttr src="image"}} id="img-{{unbound id}}" /> | |
<h2 id="h2-{{unbound id}}">{{title}}</h2> | |
<h3><a href="#" id="id-{{unbound id}}">{{shortDescription}}</a></h3> | |
</div> | |
{{/each}} | |
</script> | |
<script type="text/x-handlebars"> | |
{{view App.HomeTopNewsView contentBinding="App.homeTopNewsController.getTopNews"}} | |
</script> | |
<script type="text/x-handlebars"> | |
{{view App.HomeTopNewsView contentBinding="App.homeTopNewsControllerCopy.get3LatestTopNews"}} | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment