## 2016-05-26 #Tim, #Jens

Prototyping the Template extration again....

```JS
var name = "lively-joe",
	prevP = that.style.position,
	prevL = that.style.left,
	prevT = that.style.top;
that.style.position = "";
that.style.left = "";
that.style.top = "";
lively.files.saveFile("https://lively-kernel.org/lively4/lively4-core/templates/" + name + ".html",
	`<template id="${name}">
	${that.outerHTML} 
</template>
<script class="registrationScript">lively.registerTemplate()</script>`)
that.style.position = prevP;
that.style.left = prevL;
that.style.top = prevT;
```
