Skip to content

Instantly share code, notes, and snippets.

@rogeriochaves
Created May 22, 2013 15:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rogeriochaves/5628663 to your computer and use it in GitHub Desktop.
Save rogeriochaves/5628663 to your computer and use it in GitHub Desktop.
HTML do jogo quadrados
<head>
<title>quadrados</title>
</head>
<body>
{{> quadrados}}
</body>
<template name="quadrados">
{{#each quadrados}}
{{> quadrado}}
{{/each}}
</template>
<template name="quadrado">
<div class="quadrado" style="left:{{ x }}px; top:{{ y }}px"></div>
</template>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment