feat: Streaming DOM templates via rheo
1 file changed, 36 insertions(+), 0 deletions(-)
changed files
A src/templates/index.html
@@ -0,0 +1,36 @@ +<!doctype html> +<html lang="en"> + <head> + <meta charset="utf-8"/> + <title></title> + </head> + <body> + <main class="homepage"> + <h1>hello world</h1> + + <ul class="posts"> + <li class="post"> + <a href="/">Test post please ignore</a> + </li> + </ul> + </main> + <main class="post"> + <article> + <h1>post title</h1> + <main> + Fringilla ut morbi tincidunt augue interdum velit euismod! + Interdum velit laoreet id donec ultrices tincidunt arcu, non + sodales neque sodales ut etiam sit amet nisl purus, in + mollis nunc sed. + </main> + </article> + </main> + <main class="taxon"> + <ul class="posts"> + <li class="post"> + <a href="/">Test post please ignore</a> + </li> + </ul> + </main> + </body> +</html>