aşağıdaki kodları linkler.php olarak kaydedip ana dizine atın.sonra linkler sayfasının içeriğini hazırlayın html yada php farketmez ama kaydederken uzntısını .htm .html yada .php değilde linkler.tpl olarak kaydedip tema klasörüne atın bu kadar.sonrası header'ı düzenlemek basit zten

<?php
/***************************************************************************
* linkler.php
***************************************************************************/
/***************************************************************************
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
***************************************************************************/
define('IN_PHPBB', true);
$phpbb_root_path = './';
include($phpbb_root_path . 'extension.inc');
include($phpbb_root_path . 'common.'.$phpEx);
//
// Start session management
//
$userdata = session_pagestart($user_ip, PAGE_INDEX);
init_userprefs($userdata);
//
// End session management
//
$page_title = $lang['Linkler'];
include($phpbb_root_path . 'includes/page_header.'.$phpEx);
$template->set_filenames(array(
'body' => 'linkler.tpl')
);
//
// Generate the page
//
$template->pparse('body');
?>