Quote by Dirk: You may want to elaborate for those of us who are not familiar with Mambo ...
I think it does what you are describing below
FWIW, there's the
external pages plugin which can be used to wrap stuff into Geeklog.
I thought this just got statistics for an external page.
Or you could do it yourself with a few lines of code:
Text Formatted Code
require_once ('lib-common.php');
echo COM_siteHeader ('menu', 'Page Title');
echo COM_startBlock ('Block Title'); // optional
// your stuff here
echo COM_endBlock (); // optional
echo COM_siteFooter ();
bye, Dirk