feature: html with SSI

This commit is contained in:
Andy Burke 2025-06-30 15:21:07 -07:00
parent d917b69753
commit 0f65e57539
10 changed files with 210 additions and 27 deletions

View file

@ -0,0 +1 @@
<div>Include #2!</div>

9
tests/www/index.html Normal file
View file

@ -0,0 +1,9 @@
<html>
<body>
<p>Hello. An include should follow:</p>
<!-- #include file="./test_include.html" -->
<!-- #include file="./yet_another_include.html" -->
<p>Goodbye. The includes should be above.</p>
</body>
</html>

View file

@ -0,0 +1,3 @@
<div>Include #1</div>
<!-- #include file="./another_include.html" -->

View file

@ -0,0 +1 @@
<div>Include #3</div>