June, 2024 - TP Docs is now running on the newest version of TinyPortal Version 3.0.1.!
// ID of the theme
$ssi_theme = 1;
// Exact path to SSI.php
require_once('SSI.php');
global $context;
TPortal_init();
// Your page Title
$context['page_title'] = 'Demo Page';
template_html_above();
template_tp_above();
// Here comes all your contents
echo 'SMF/TP Rules baby!';
// And this ends stuff
ssi_shutdown();
?>
Quotetp_hidebars('the side');
// ID of the theme
$ssi_theme = 1;
// Exact path to SSI.php
require_once('SSI.php');
global $context;
TPortal_init();
// Your page Title
$context['page_title'] = 'Demo Page';
// Hide the bars
tp_hidebars('center');
tp_hidebars('right');
template_html_above();
template_tp_above();
// Here comes all your contents
echo 'SMF/TP Rules baby!';
// And this ends stuff
ssi_shutdown();
?>
Page created in 0.276 seconds with 26 queries.