Debug: fdcd83e1

Updated 2026-07-28T20:45:53.351Z

Open chat

1system

Message 1

SERVER_PROPS json

{ clients: { type: 'exclude', ids: [] } }

CLIENT_PROPS json

{ path: '/body', type: 'html' }

BODY html

<template for="/chat/append-message">...</template>

Message 2

SERVER_PROPS json

{ clients: { type: 'include', ids: ['1'] } }

BODY html

<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>