|
It looks like it's custom coded. The page would appear to be static (.htm) but could be an http internal redirect of some sort to a dynamic script. Server-side includes, or a cronjob creating the page from templates are a possibility.
You probably won't find custom code for that here -- best to find the form software you'd like to use and see if there is code specifically for this.
A quick, but nasty hack solution would be to just strip the headers/footers and other unnecessary content/templates of a forum, then use an IFRAME to show the contents of that thread. If your site is mostly static, you'd just have to manually point the IFRAME to the appropriate thread, passing along the threadid (or similar) via GET parameters.
Like rogem said, the best way to do this would be to simply query the forum database using a custom-built script, then output the content to your preference, realizing of-course that you'll still have a lot of work to cleanly integrate the other forum functions (reply for instance) into your site.
|