bessst.bouge
clone your own copy | download snapshot

Snapshots | iceberg

No images in this repository’s iceberg at this time

Inside this repository

bouge.html
text/html

Download raw (293 bytes)

<head>
  <title>BESSST</title>
</head>

<body>
  {{> hello}}
</body>

<template name="hello">
    {{#each movables}}
      {{> movable}}
    {{/each}}
    
</template>

<template name="movable">
  <img src="{{ name }}" id="{{ _id }}" style="left: {{ left }}px; top: {{ top }}px;">
</template>