I&#39;m trying to make a homepage that has a link to a page that was made with file. The only thing that currently works is the File() page. I have absolutely no idea how to do the rest (no, its not homework). Here&#39;s my current code:<br>
from twisted.web.server import Site<br>from twisted.web.resource import Resource<br>from twisted.internet import reactor<br>from twisted.web.static import File<br><br><br>root=Resource()<br>root.putChild(&quot;programming&quot;, File(&quot;/home/dhaivat/&quot;));<br>
<br>factory= Site(root)<br>reactor.listenTCP(8080, factory);<br>reactor.run();<br><br>How can I implement the home page?<br><br>