<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;"># Copyright (c) Twisted Matrix Laboratories.
# See LICENSE for details.

"""
I am a simple test resource.
"""


from twisted.web import static


class Test(static.Data):
    isLeaf = True

    def __init__(self):
        static.Data.__init__(
            self,
            b"""
            &lt;html&gt;
            &lt;head&gt;&lt;title&gt;Twisted Web Demo&lt;/title&gt;&lt;head&gt;
            &lt;body&gt;
            Hello! This is a Twisted Web test page.
            &lt;/body&gt;
            &lt;/html&gt;
            """,
            "text/html",
        )
</pre></body></html>