Message 1
SERVER_PROPS json
{ clients: { type: 'exclude', ids: [] } }
CLIENT_PROPS json
{ path: '/body', type: 'html' }
BODY html
<template for="/chat/append-message">...</template>
Updated 2026-07-28T20:45:53.351Z
{ clients: { type: 'exclude', ids: [] } }
{ path: '/body', type: 'html' }
<template for="/chat/append-message">...</template>
{ clients: { type: 'include', ids: ['1'] } }
<template for="/page/background">
<?start name="/page/background">
<canvas id="bg-canvas" style="position:absolute;inset:0;width:100%;height:100%"></canvas>
<script>
(function() {
var canvas = document.getElementById('bg-canvas');
if (!canvas) return;
var ctx = canvas.getContext('2d');
function resize() { canvas.width = window.innerWidth; canvas.height = window.innerHeight; }
resize();
window.addEventListener('resize', resize);
// ... animation ...
})();
</script>
<?end>
</template>