subsilver2 is coming!

This commit is contained in:
Kevin
2011-01-05 12:59:45 +00:00
parent ceb601714d
commit ece0854d3d
71 changed files with 1711 additions and 1 deletions

View File

@@ -72,7 +72,7 @@ $lang = array_merge($lang, array(
'PORTAL_RIGHT_COLUMN_EXP' => 'Switch to no if you wish to turn off the right column',
'PORTAL_VERSION_CHECK' => 'Versioncheck on Portal',
'PORTAL_PHPBB_MENU' => 'phpBB menu',
'PORTAL_PHPBB_MENU_EXP' => 'Display the phpBB Header on the portal.',
'PORTAL_PHPBB_MENU_EXP' => 'Display the phpBB Header on the portal.',
'ACP_PORTAL_COLUMN_WIDTH_SETTINGS' => 'Left and right column width settings',
'PORTAL_LEFT_COLUMN_WIDTH' => 'Width of the left column',
'PORTAL_LEFT_COLUMN_WIDTH_EXP' => 'Change the width of the left column in pixels; recommended value is 180',

View File

@@ -0,0 +1,29 @@
<!--version $Id: _block_config.html 544 2009-09-10 12:35:25Z christian_n $ //-->
<!-- Config for the left and right blocks //-->
<!-- DEFINE $LR_BLOCK_H_L = '<table class="tablebg" cellspacing="1" width="100%"><tr><th><span style="float: left">' -->
<!-- DEFINE $LR_BLOCK_H_R = '</span></th></tr></table>' -->
<!-- DEFINE $LR_BLOCK_F_L = '' -->
<!-- DEFINE $LR_BLOCK_F_R = '<br />' -->
<!-- Config for the center blocks //-->
<!-- DEFINE $C_BLOCK_H_L = '<table class="tablebg" cellspacing="1" cellpadding="0" width="100%"><tr><th><span style="text-align: center">' -->
<!-- DEFINE $C_BLOCK_H_R = '</span></th></tr></table>' -->
<!-- DEFINE $C_BLOCK_F_L = '' -->
<!-- DEFINE $C_BLOCK_F_R = '<br />' -->
<!-- Images-URL //-->
<!-- DEFINE $WHOS_IMAGES = '/images/whosonline.gif' -->
<!-- DEFINE $NO_AVATAR_IMG = '/images/no_avatar.gif' -->
<!-- Vertical distance between left/right and center Blocks -->
<!-- DEFINE $BLOCK_DISTANCE = '10px' -->
<!-- show Icons in left/right Blocks? 0=no 1=yes -->
<!-- DEFINE $S_BLOCK_ICON = 1 -->
<!-- override the column width settings of the ACP for this style? 0=no 1=yes -->
<!-- DEFINE $S_COLUMNS_WIDTH_OVERRIDE = 0 -->
<!-- override the column width settings of the ACP - set the width if enabled -->
<!-- DEFINE $PORTAL_LEFT_COLUMN_OVERRIDE = '200' -->
<!-- DEFINE $PORTAL_RIGHT_COLUMN_OVERRIDE = '200' -->

View File

@@ -0,0 +1,24 @@
<!-- BEGIN blocks -->
<!-- IF blocks.S_BLOCK_BOTTOM and blocks.S_GROUP -->
{$LR_BLOCK_H_L}<dt <!-- IF blocks.S_ICON --> style="background: url('{blocks.ICON}') no-repeat; padding-left: 20px; white-space: nowrap;"<!-- ENDIF -->>{blocks.TITLE}</dt>{$LR_BLOCK_H_R}
<!-- IF blocks.TYPE == 'custom' -->
{blocks.TEXT}
<!-- ELSEIF blocks.TYPE == 'birthday' --><!-- INCLUDE portal/block/birthday.html -->
<!-- ELSEIF blocks.TYPE == 'online' --><!-- INCLUDE portal/block/online.html -->
<!-- ELSEIF blocks.TYPE == 'search' --><!-- INCLUDE portal/block/search.html -->
<!-- ELSEIF blocks.TYPE == 'clock' --><!-- INCLUDE portal/block/clock.html -->
<!-- ELSEIF blocks.TYPE == 'user_menu' --><!-- INCLUDE portal/block/user_menu.html -->
<!-- ELSEIF blocks.TYPE == 'change_style' --><!-- INCLUDE portal/block/change_style.html -->
<!-- ELSEIF blocks.TYPE == 'donation' --><!-- INCLUDE portal/block/donation.html -->
<!-- ELSEIF blocks.TYPE == 'links' --><!-- INCLUDE portal/block/links.html -->
<!-- ELSEIF blocks.TYPE == 'latest_bots' --><!-- INCLUDE portal/block/latest_bots.html -->
<!-- ELSEIF blocks.TYPE == 'latest_members' --><!-- INCLUDE portal/block/latest_members.html -->
<!-- ELSEIF blocks.TYPE == 'mini_calendar' --><!-- INCLUDE portal/block/mini_calendar.html -->
<!-- ELSEIF blocks.TYPE == 'online_friends' --><!-- INCLUDE portal/block/online_friends.html -->
<!-- ELSEIF blocks.TYPE == 'random_member' --><!-- INCLUDE portal/block/random_member.html -->
<!-- ELSEIF blocks.TYPE == 'statistics' --><!-- INCLUDE portal/block/statistics.html -->
<!-- ELSEIF blocks.TYPE == 'top_poster' --><!-- INCLUDE portal/block/top_poster.html -->
<!-- ENDIF -->
{$LR_BLOCK_F_L}{$LR_BLOCK_F_R}
<!-- ENDIF -->
<!-- END blocks -->

View File

@@ -0,0 +1,24 @@
<!-- BEGIN blocks -->
<!-- IF blocks.S_BLOCK_LEFT and blocks.S_GROUP -->
{$LR_BLOCK_H_L}<dt <!-- IF blocks.S_ICON --> style="background: url('{blocks.ICON}') no-repeat; padding-left: 20px; white-space: nowrap;"<!-- ENDIF -->>{blocks.TITLE}</dt>{$LR_BLOCK_H_R}
<!-- IF blocks.TYPE == 'custom' -->
{blocks.TEXT}
<!-- ELSEIF blocks.TYPE == 'birthday' --><!-- INCLUDE portal/block/birthday.html -->
<!-- ELSEIF blocks.TYPE == 'online' --><!-- INCLUDE portal/block/online.html -->
<!-- ELSEIF blocks.TYPE == 'search' --><!-- INCLUDE portal/block/search.html -->
<!-- ELSEIF blocks.TYPE == 'clock' --><!-- INCLUDE portal/block/clock.html -->
<!-- ELSEIF blocks.TYPE == 'user_menu' --><!-- INCLUDE portal/block/user_menu.html -->
<!-- ELSEIF blocks.TYPE == 'change_style' --><!-- INCLUDE portal/block/change_style.html -->
<!-- ELSEIF blocks.TYPE == 'donation' --><!-- INCLUDE portal/block/donation.html -->
<!-- ELSEIF blocks.TYPE == 'links' --><!-- INCLUDE portal/block/links.html -->
<!-- ELSEIF blocks.TYPE == 'latest_bots' --><!-- INCLUDE portal/block/latest_bots.html -->
<!-- ELSEIF blocks.TYPE == 'latest_members' --><!-- INCLUDE portal/block/latest_members.html -->
<!-- ELSEIF blocks.TYPE == 'mini_calendar' --><!-- INCLUDE portal/block/mini_calendar.html -->
<!-- ELSEIF blocks.TYPE == 'online_friends' --><!-- INCLUDE portal/block/online_friends.html -->
<!-- ELSEIF blocks.TYPE == 'random_member' --><!-- INCLUDE portal/block/random_member.html -->
<!-- ELSEIF blocks.TYPE == 'statistics' --><!-- INCLUDE portal/block/statistics.html -->
<!-- ELSEIF blocks.TYPE == 'top_poster' --><!-- INCLUDE portal/block/top_poster.html -->
<!-- ENDIF -->
{$LR_BLOCK_F_L}{$LR_BLOCK_F_R}
<!-- ENDIF -->
<!-- END blocks -->

View File

@@ -0,0 +1,24 @@
<!-- BEGIN blocks -->
<!-- IF blocks.S_BLOCK_MIDDLE_BOTTOM and blocks.S_GROUP -->
{$LR_BLOCK_H_L}<dt <!-- IF blocks.S_ICON --> style="background: url('{blocks.ICON}') no-repeat; padding-left: 20px; white-space: nowrap;"<!-- ENDIF -->>{blocks.TITLE}</dt>{$LR_BLOCK_H_R}
<!-- IF blocks.TYPE == 'custom' -->
{blocks.TEXT}
<!-- ELSEIF blocks.TYPE == 'birthday' --><!-- INCLUDE portal/block/birthday.html -->
<!-- ELSEIF blocks.TYPE == 'online' --><!-- INCLUDE portal/block/online.html -->
<!-- ELSEIF blocks.TYPE == 'search' --><!-- INCLUDE portal/block/search.html -->
<!-- ELSEIF blocks.TYPE == 'clock' --><!-- INCLUDE portal/block/clock.html -->
<!-- ELSEIF blocks.TYPE == 'user_menu' --><!-- INCLUDE portal/block/user_menu.html -->
<!-- ELSEIF blocks.TYPE == 'change_style' --><!-- INCLUDE portal/block/change_style.html -->
<!-- ELSEIF blocks.TYPE == 'donation' --><!-- INCLUDE portal/block/donation.html -->
<!-- ELSEIF blocks.TYPE == 'links' --><!-- INCLUDE portal/block/links.html -->
<!-- ELSEIF blocks.TYPE == 'latest_bots' --><!-- INCLUDE portal/block/latest_bots.html -->
<!-- ELSEIF blocks.TYPE == 'latest_members' --><!-- INCLUDE portal/block/latest_members.html -->
<!-- ELSEIF blocks.TYPE == 'mini_calendar' --><!-- INCLUDE portal/block/mini_calendar.html -->
<!-- ELSEIF blocks.TYPE == 'online_friends' --><!-- INCLUDE portal/block/online_friends.html -->
<!-- ELSEIF blocks.TYPE == 'random_member' --><!-- INCLUDE portal/block/random_member.html -->
<!-- ELSEIF blocks.TYPE == 'statistics' --><!-- INCLUDE portal/block/statistics.html -->
<!-- ELSEIF blocks.TYPE == 'top_poster' --><!-- INCLUDE portal/block/top_poster.html -->
<!-- ENDIF -->
{$LR_BLOCK_F_L}{$LR_BLOCK_F_R}
<!-- ENDIF -->
<!-- END blocks -->

View File

@@ -0,0 +1,24 @@
<!-- BEGIN blocks -->
<!-- IF blocks.S_BLOCK_MIDDLE_TOP and blocks.S_GROUP -->
{$LR_BLOCK_H_L}<dt <!-- IF blocks.S_ICON --> style="background: url('{blocks.ICON}') no-repeat; padding-left: 20px; white-space: nowrap;"<!-- ENDIF -->>{blocks.TITLE}</dt>{$LR_BLOCK_H_R}
<!-- IF blocks.TYPE == 'custom' -->
{blocks.TEXT}
<!-- ELSEIF blocks.TYPE == 'birthday' --><!-- INCLUDE portal/block/birthday.html -->
<!-- ELSEIF blocks.TYPE == 'online' --><!-- INCLUDE portal/block/online.html -->
<!-- ELSEIF blocks.TYPE == 'search' --><!-- INCLUDE portal/block/search.html -->
<!-- ELSEIF blocks.TYPE == 'clock' --><!-- INCLUDE portal/block/clock.html -->
<!-- ELSEIF blocks.TYPE == 'user_menu' --><!-- INCLUDE portal/block/user_menu.html -->
<!-- ELSEIF blocks.TYPE == 'change_style' --><!-- INCLUDE portal/block/change_style.html -->
<!-- ELSEIF blocks.TYPE == 'donation' --><!-- INCLUDE portal/block/donation.html -->
<!-- ELSEIF blocks.TYPE == 'links' --><!-- INCLUDE portal/block/links.html -->
<!-- ELSEIF blocks.TYPE == 'latest_bots' --><!-- INCLUDE portal/block/latest_bots.html -->
<!-- ELSEIF blocks.TYPE == 'latest_members' --><!-- INCLUDE portal/block/latest_members.html -->
<!-- ELSEIF blocks.TYPE == 'mini_calendar' --><!-- INCLUDE portal/block/mini_calendar.html -->
<!-- ELSEIF blocks.TYPE == 'online_friends' --><!-- INCLUDE portal/block/online_friends.html -->
<!-- ELSEIF blocks.TYPE == 'random_member' --><!-- INCLUDE portal/block/random_member.html -->
<!-- ELSEIF blocks.TYPE == 'statistics' --><!-- INCLUDE portal/block/statistics.html -->
<!-- ELSEIF blocks.TYPE == 'top_poster' --><!-- INCLUDE portal/block/top_poster.html -->
<!-- ENDIF -->
{$LR_BLOCK_F_L}{$LR_BLOCK_F_R}
<!-- ENDIF -->
<!-- END blocks -->

View File

@@ -0,0 +1,24 @@
<!-- BEGIN blocks -->
<!-- IF blocks.S_BLOCK_RIGHT and blocks.S_GROUP -->
{$LR_BLOCK_H_L}<dt <!-- IF blocks.S_ICON --> style="background: url('{blocks.ICON}') no-repeat; padding-left: 20px; white-space: nowrap;"<!-- ENDIF -->>{blocks.TITLE}</dt>{$LR_BLOCK_H_R}
<!-- IF blocks.TYPE == 'custom' -->
{blocks.TEXT}
<!-- ELSEIF blocks.TYPE == 'birthday' --><!-- INCLUDE portal/block/birthday.html -->
<!-- ELSEIF blocks.TYPE == 'online' --><!-- INCLUDE portal/block/online.html -->
<!-- ELSEIF blocks.TYPE == 'search' --><!-- INCLUDE portal/block/search.html -->
<!-- ELSEIF blocks.TYPE == 'clock' --><!-- INCLUDE portal/block/clock.html -->
<!-- ELSEIF blocks.TYPE == 'user_menu' --><!-- INCLUDE portal/block/user_menu.html -->
<!-- ELSEIF blocks.TYPE == 'change_style' --><!-- INCLUDE portal/block/change_style.html -->
<!-- ELSEIF blocks.TYPE == 'donation' --><!-- INCLUDE portal/block/donation.html -->
<!-- ELSEIF blocks.TYPE == 'links' --><!-- INCLUDE portal/block/links.html -->
<!-- ELSEIF blocks.TYPE == 'latest_bots' --><!-- INCLUDE portal/block/latest_bots.html -->
<!-- ELSEIF blocks.TYPE == 'latest_members' --><!-- INCLUDE portal/block/latest_members.html -->
<!-- ELSEIF blocks.TYPE == 'mini_calendar' --><!-- INCLUDE portal/block/mini_calendar.html -->
<!-- ELSEIF blocks.TYPE == 'online_friends' --><!-- INCLUDE portal/block/online_friends.html -->
<!-- ELSEIF blocks.TYPE == 'random_member' --><!-- INCLUDE portal/block/random_member.html -->
<!-- ELSEIF blocks.TYPE == 'statistics' --><!-- INCLUDE portal/block/statistics.html -->
<!-- ELSEIF blocks.TYPE == 'top_poster' --><!-- INCLUDE portal/block/top_poster.html -->
<!-- ENDIF -->
{$LR_BLOCK_F_L}{$LR_BLOCK_F_R}
<!-- ENDIF -->
<!-- END blocks -->

View File

@@ -0,0 +1,24 @@
<!-- BEGIN blocks -->
<!-- IF blocks.S_BLOCK_TOP and blocks.S_GROUP -->
{$LR_BLOCK_H_L}<dt <!-- IF blocks.S_ICON --> style="background: url('{blocks.ICON}') no-repeat; padding-left: 20px; white-space: nowrap;"<!-- ENDIF -->>{blocks.TITLE}</dt>{$LR_BLOCK_H_R}
<!-- IF blocks.TYPE == 'custom' -->
{blocks.TEXT}
<!-- ELSEIF blocks.TYPE == 'birthday' --><!-- INCLUDE portal/block/birthday.html -->
<!-- ELSEIF blocks.TYPE == 'online' --><!-- INCLUDE portal/block/online.html -->
<!-- ELSEIF blocks.TYPE == 'search' --><!-- INCLUDE portal/block/search.html -->
<!-- ELSEIF blocks.TYPE == 'clock' --><!-- INCLUDE portal/block/clock.html -->
<!-- ELSEIF blocks.TYPE == 'user_menu' --><!-- INCLUDE portal/block/user_menu.html -->
<!-- ELSEIF blocks.TYPE == 'change_style' --><!-- INCLUDE portal/block/change_style.html -->
<!-- ELSEIF blocks.TYPE == 'donation' --><!-- INCLUDE portal/block/donation.html -->
<!-- ELSEIF blocks.TYPE == 'links' --><!-- INCLUDE portal/block/links.html -->
<!-- ELSEIF blocks.TYPE == 'latest_bots' --><!-- INCLUDE portal/block/latest_bots.html -->
<!-- ELSEIF blocks.TYPE == 'latest_members' --><!-- INCLUDE portal/block/latest_members.html -->
<!-- ELSEIF blocks.TYPE == 'mini_calendar' --><!-- INCLUDE portal/block/mini_calendar.html -->
<!-- ELSEIF blocks.TYPE == 'online_friends' --><!-- INCLUDE portal/block/online_friends.html -->
<!-- ELSEIF blocks.TYPE == 'random_member' --><!-- INCLUDE portal/block/random_member.html -->
<!-- ELSEIF blocks.TYPE == 'statistics' --><!-- INCLUDE portal/block/statistics.html -->
<!-- ELSEIF blocks.TYPE == 'top_poster' --><!-- INCLUDE portal/block/top_poster.html -->
<!-- ENDIF -->
{$LR_BLOCK_F_L}{$LR_BLOCK_F_R}
<!-- ENDIF -->
<!-- END blocks -->

View File

@@ -0,0 +1,7 @@
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-9">
</head>
<body bgcolor="#FFFFFF" text="#000000">
</body>
</html>

View File

@@ -0,0 +1,78 @@
<!--version $Id: announcements.html 553 2009-09-30 12:10:19Z christian_n $ //-->
<!-- BEGIN announcements_row -->
<!-- IF announcements_row.S_FIRST_ROW -->
{$C_BLOCK_H_L}{L_LATEST_ANNOUNCEMENTS}{$C_BLOCK_H_R}
<!-- ENDIF -->
<table class="tablebg" cellspacing="1" width="100%">
<tr class="row1">
<td>
<!-- IF announcements_row.S_NO_TOPICS -->
<span class="gensmall"><strong>{L_NO_ANNOUNCEMENTS}</strong></span>
<!-- ELSE -->
<table class="tablebg" cellspacing="1" width="100%">
<tr>
<td class="cat">
<a name="a"></a><a name="a{announcements_row.A_ID}"></a>
<!-- IF announcements_row.S_UNREAD_INFO --><a href="{announcements_row.U_VIEW_UNREAD}">{NEWEST_POST_IMG}</a><!-- ELSE --><a href="{announcements_row.U_LAST_COMMENTS}">{READ_POST_IMG}</a><!-- ENDIF --> {announcements_row.ATTACH_ICON_IMG}<!-- IF announcements_row.S_POLL --> <strong>{L_VIEW_TOPIC_POLL}: </strong><!-- ENDIF --><!-- IF announcements_row.TOPIC_ICON_IMG --><img src="{T_ICONS_PATH}{announcements_row.TOPIC_ICON_IMG}" width="{announcements_row.TOPIC_ICON_IMG_WIDTH}" height="{announcements_row.TOPIC_ICON_IMG_HEIGHT}" alt="" /> <!-- ENDIF --><a href="{announcements_row.U_VIEW_COMMENTS}"><strong>{announcements_row.TITLE}</strong></a>
</td>
</tr>
<tr class="row<!-- IF announcements_row.S_ROW_COUNT is odd -->1<!-- ELSE -->2<!-- ENDIF -->">
<td style="padding:5px 5px 5px 5px;">
<span class="gensmall" style="float: left;">{L_POSTED} {L_POST_BY_AUTHOR}: {announcements_row.POSTER_FULL} &raquo; {announcements_row.TIME}</span>
<span class="gensmall" style="float: right;">
<!-- IF announcements_row.FORUM_NAME -->
{L_FORUM}: <strong><a href="{announcements_row.U_VIEWFORUM}">{announcements_row.FORUM_NAME}</a></strong>
<!-- ELSE -->
{L_GLOBAL_ANNOUNCEMENT}
<!-- ENDIF -->
</span>
<br /><br />
<div class="postbody">
{announcements_row.TEXT}
</div>
<!-- IF announcements_row.S_HAS_ATTACHMENTS -->
<br clear="all" /><br />
<table class="tablebg" width="100%" cellspacing="1">
<tr>
<td class="row3"><b class="genmed">{L_ATTACHMENTS}: </b></td>
</tr>
<!-- BEGIN attachment -->
<tr>
<!-- IF announcements_row.attachment.S_ROW_COUNT is even --><td class="row2"><!-- ELSE --><td class="row1"><!-- ENDIF -->{announcements_row.attachment.DISPLAY_ATTACHMENT}</td>
</tr>
<!-- END attachment -->
</table>
<!-- ENDIF -->
<br /><br />
<!-- IF announcements_row.PAGINATION --><span style="float: right;">[ {GOTO_PAGE_IMG}{L_GOTO_PAGE}: {announcements_row.PAGINATION} ]</span><!-- ENDIF -->
</td>
</tr>
<tr class="row<!-- IF announcements_row.S_ROW_COUNT is odd -->1<!-- ELSE -->2<!-- ENDIF -->">
<td>
<span style="float: left;">{L_TOPIC_VIEWS}: {announcements_row.TOPIC_VIEWS} &nbsp;&bull;&nbsp; <a href="{announcements_row.U_VIEW_COMMENTS}" title="{L_VIEW_COMMENTS}">{L_COMMENTS}: {announcements_row.REPLIES}</a> &nbsp;&bull;&nbsp; <a href="{announcements_row.U_POST_COMMENT}">{L_POST_REPLY}</a></span>
<span style="float: right;">{announcements_row.OPEN}<a href="{announcements_row.U_READ_FULL}">{announcements_row.L_READ_FULL}</a>{announcements_row.CLOSE} <a href="#wrapheader" class="top" title="{L_BACK_TO_TOP}">{L_BACK_TO_TOP}</a></span>
</td>
</tr>
</table>
<!-- IF announcements_row.S_NOT_LAST --><br /><!-- ENDIF -->
<!-- IF announcements_row.S_LAST_ROW and (AP_PAGINATION or TOTAL_ANNOUNCEMENTS) -->
<hr />
<table width="100%" cellspacing="0">
<tr>
<td class="gensmall" valign="middle" align="right" nowrap="nowrap">
{TOTAL_ANNOUNCEMENTS}
<!-- IF AP_PAGE_NUMBER --><!-- IF AP_PAGINATION --> &bull; {AP_PAGE_NUMBER} &bull; <span>{AP_PAGINATION}</span><!-- ELSE --> &bull; {AP_PAGE_NUMBER}<!-- ENDIF --><!-- ENDIF -->
</td>
</tr>
</table>
<!-- ENDIF -->
<!-- ENDIF -->
</td>
</tr>
</table>
<!-- IF announcements_row.S_LAST_ROW -->
{$C_BLOCK_F_L}{$C_BLOCK_F_R}
<!-- ENDIF -->
<!-- END announcements_row -->

View File

@@ -0,0 +1,65 @@
<!--version $Id: announcements_compact.html 503 2009-04-20 18:34:29Z kevin74 $ //-->
<!-- BEGIN announcements_row -->
<!-- IF announcements_row.S_FIRST_ROW -->
{$C_BLOCK_H_L}{L_LATEST_ANNOUNCEMENTS} <a name="a"></a>{$C_BLOCK_H_R}
<table class="tablebg" cellspacing="1" width="100%">
<!-- IF not announcements_row.S_NO_TOPICS -->
<tr class="nav">
<!-- IF S_TOPIC_ICONS -->
<td class="cat" align="center" colspan="3">&nbsp;{L_TOPICS}&nbsp;</td>
<!-- ELSE -->
<td class="cat" align="center" colspan="2">&nbsp;{L_TOPICS}&nbsp;</td>
<!-- ENDIF -->
<!-- IF S_DISPLAY_ANNOUNCEMENTS_RVS -->
<td class="cat" align="center">&nbsp;{L_REPLIES}&nbsp;</td>
<td class="cat" align="center">&nbsp;{L_VIEWS}&nbsp;</td>
<!-- ENDIF -->
<td class="cat" align="center">&nbsp;{L_LAST_POST}&nbsp;</td>
</tr>
<!-- ENDIF -->
<!-- ENDIF -->
<!-- IF announcements_row.S_NO_TOPICS -->
<tr class="row1">
<td align="center">
<span class="gensmall"><strong>{L_NO_ANNOUNCEMENTS}</strong></span>
</td>
</tr>
<!-- ELSE -->
<tr>
<td class="row1" width="25" align="center">{announcements_row.TOPIC_FOLDER_IMG}</td>
<!-- IF S_TOPIC_ICONS --><td class="row1" width="25" align="center"><!-- IF announcements_row.TOPIC_ICON_IMG --><img src="{T_ICONS_PATH}{announcements_row.TOPIC_ICON_IMG}" width="{announcements_row.TOPIC_ICON_IMG_WIDTH}" height="{announcements_row.TOPIC_ICON_IMG_HEIGHT}" alt="" title="" /><!-- ENDIF --></td><!-- ENDIF -->
<td class="row1">
<!-- IF announcements_row.PAGINATION --><span style="float: right; font-size:0.9em;"> [ {GOTO_PAGE_IMG}{L_GOTO_PAGE}: {announcements_row.PAGINATION} ] </span><!-- ENDIF -->
{announcements_row.ATTACH_ICON_IMG} <!-- IF announcements_row.S_POLL --> <strong style="font-size:1.1em;">{L_VIEW_TOPIC_POLL}: </strong><!-- ENDIF --><a title="{announcements_row.TITLE}" href="{announcements_row.U_VIEW_COMMENTS}" class="topictitle">{announcements_row.TITLE}</a>
<p class="gensmall">{L_POSTED} {L_POST_BY_AUTHOR} {announcements_row.POSTER_FULL} &raquo; {announcements_row.TIME}
<!-- IF announcements_row.FORUM_NAME -->
<br />{L_FORUM}: <a href="{announcements_row.U_VIEWFORUM}" style="font-weight: bold;">{announcements_row.FORUM_NAME}</a>
<!-- ELSE -->
{L_GLOBAL_ANNOUNCEMENT}
<!-- ENDIF -->
<!-- IF not S_DISPLAY_ANNOUNCEMENTS_RVS --><!-- IF announcements_row.FORUM_NAME -->&bull; <!-- ENDIF -->{L_REPLIES}: <strong>{announcements_row.REPLIES}</strong> &bull; {L_VIEWS}: <strong>{announcements_row.TOPIC_VIEWS}</strong><!-- ENDIF -->
</p>
</td>
<!-- IF S_DISPLAY_ANNOUNCEMENTS_RVS -->
<td class="row1" width="50" align="center"><p class="topicdetails">{announcements_row.REPLIES}</p></td>
<td class="row2" width="50" align="center"><p class="topicdetails">{announcements_row.TOPIC_VIEWS}</p></td>
<!-- ENDIF -->
<td class="row1" width="140" align="center">
<p class="topicdetails" style="white-space: nowrap;"> {announcements_row.LAST_POST_TIME}</p>
<p class="topicdetails">{announcements_row.USERNAME_FULL_LAST}
<!-- IF not S_IS_BOT --><!-- IF announcements_row.S_UNREAD_INFO --><a href="{announcements_row.U_VIEW_UNREAD}">{NEWEST_POST_IMG}</a><!-- ELSE --><a href="{announcements_row.U_LAST_COMMENTS}">{READ_POST_IMG}</a><!-- ENDIF --><!-- ENDIF -->
</p>
</td>
</tr>
<!-- ENDIF -->
<!-- IF announcements_row.S_LAST_ROW -->
<!-- IF AP_PAGINATION or TOTAL_ANNOUNCEMENTS -->
<tr class="row<!-- IF announcements_row.S_ROW_COUNT is even -->2<!-- ELSE -->1<!-- ENDIF -->">
<td class="gensmall" valign="middle" align="right" nowrap="nowrap" colspan="<!-- IF S_TOPIC_ICONS and S_DISPLAY_ANNOUNCEMENTS_RVS -->6<!-- ELSEIF not S_TOPIC_ICONS and S_DISPLAY_ANNOUNCEMENTS_RVS -->5<!-- ELSEIF S_TOPIC_ICONS and not S_DISPLAY_ANNOUNCEMENTS_RVS -->4<!-- ELSE -->3<!-- ENDIF -->">{TOTAL_ANNOUNCEMENTS}
<!-- IF AP_PAGE_NUMBER --><!-- IF AP_PAGINATION --> &bull; {AP_PAGE_NUMBER} &bull; <span>{AP_PAGINATION}</span><!-- ELSE --> &bull; {AP_PAGE_NUMBER}<!-- ENDIF --><!-- ENDIF --></td>
</tr>
<!-- ENDIF -->
</table>
{$C_BLOCK_F_L}{$C_BLOCK_F_R}
<!-- ENDIF -->
<!-- END announcements_row -->

View File

@@ -0,0 +1,20 @@
<!--version $Id: attachments.html 544 2009-09-10 12:35:25Z christian_n $ //-->
{$LR_BLOCK_H_L}<!-- IF $S_BLOCK_ICON --><img src="{$IMAGE_SRC}" width="16" height="16" alt="" />&nbsp;<!-- ENDIF -->{L_ATTACHMENTS}{$LR_BLOCK_H_R}
<table class="tablebg" cellspacing="1" width="100%">
<tr class="row1">
<td>
<!-- IF .attach -->
<span style="float:left;"><strong>{L_FILENAME}</strong></span><br style="clear:both" />
<!-- BEGIN attach -->
<span style="float:left;" class="gensmall"><img src="{T_THEME_PATH}/images/portal/icon_topic_attach.gif" alt="" />&nbsp;<a href="{attach.U_TOPIC}" title="{attach.REAL_FILENAME}"><strong>{attach.FILENAME}</strong></a></span><br style="clear:both" />
<span style="float:left;">{L_FILESIZE}:</span><span style="float:right;" class="gensmall"><strong>{attach.FILESIZE}</strong></span><br style="clear:both" />
<span style="float:left;">{L_DOWNLOADS}:</span><span style="float:right;" class="gensmall"><strong>{attach.DOWNLOAD_COUNT}</strong></span><br style="clear:both" />
<!-- IF not attach.S_LAST_ROW --><hr /><!-- ENDIF -->
<!-- END attach -->
<!-- ELSE -->
<span style="float:left;" class="gensmall"><strong>{L_NO_ATTACHMENTS}</strong></span>
<!-- ENDIF -->
</td>
</tr>
</table>
{$LR_BLOCK_F_L}{$LR_BLOCK_F_R}

View File

@@ -0,0 +1,27 @@
<!--version $Id: birthdays_side.html 634 2010-03-16 18:05:16Z marc1706 $ //-->
{$LR_BLOCK_H_L}<!-- IF $S_BLOCK_ICON --><img src="{$IMAGE_SRC}" width="16" height="16" alt="" />&nbsp;<!-- ENDIF -->{L_BIRTHDAYS}{$LR_BLOCK_H_R}
<table class="tablebg" cellspacing="1" width="100%">
<tr class="row1">
<td>
<!-- IF BIRTHDAY_LIST -->
<strong>{L_CONGRATULATIONS}:</strong><br />{BIRTHDAY_LIST}
<!-- ELSE -->
{L_NO_BIRTHDAYS}
<!-- ENDIF -->
</td>
</tr>
<!-- IF S_DISPLAY_BIRTHDAY_AHEAD_LIST -->
<tr class="row1">
<td>
<strong>{L_BIRTHDAYS_AHEAD}:</strong>
<br />
<!-- IF BIRTHDAYS_AHEAD_LIST -->
{BIRTHDAYS_AHEAD_LIST}
<!-- ELSE -->
{L_NO_BIRTHDAYS_AHEAD}
<!-- ENDIF -->
</td>
</tr>
<!-- ENDIF -->
</table>
{$LR_BLOCK_F_L}{$LR_BLOCK_F_R}

View File

@@ -0,0 +1,89 @@
<!--version $Id: calendar_side.html 544 2009-09-10 12:35:25Z christian_n $ //-->
<a name="minical"></a>
{$LR_BLOCK_H_L}<!-- IF $S_BLOCK_ICON --><img src="{$IMAGE_SRC}" width="16" height="16" alt="" />&nbsp;<!-- ENDIF -->{L_PORTAL_CALENDAR}{$LR_BLOCK_H_R}
<table class="tablebg" cellspacing="1" width="100%">
<tr class="row1">
<td>
<table width="100%" cellspacing="1">
<tr>
<td align="left" colspan="2">{U_PREV_MONTH}</td>
<td colspan="3" align="center"><span class="genmed">{L_MINI_CAL_MONTH}</span></td>
<td align="right" colspan="2">{U_NEXT_MONTH}</td>
</tr>
<tr>
<!-- IF S_SUNDAY_FIRST -->
<td style="width: 14%;"><span class="gensmall" style="font-weight: bold">{L_MINI_CAL_SUN}</span></td>
<!-- ENDIF -->
<td style="width: 14%;"><span class="gensmall" style="font-weight: bold">{L_MINI_CAL_MON}</span></td>
<td style="width: 14%;"><span class="gensmall" style="font-weight: bold">{L_MINI_CAL_TUE}</span></td>
<td style="width: 14%;"><span class="gensmall" style="font-weight: bold">{L_MINI_CAL_WED}</span></td>
<td style="width: 14%;"><span class="gensmall" style="font-weight: bold">{L_MINI_CAL_THU}</span></td>
<td style="width: 14%;"><span class="gensmall" style="font-weight: bold">{L_MINI_CAL_FRI}</span></td>
<td style="width: 14%;"><span class="gensmall" style="font-weight: bold">{L_MINI_CAL_SAT}</span></td>
<!-- IF not S_SUNDAY_FIRST -->
<td style="width: 14%;"><span class="gensmall" style="font-weight: bold">{L_MINI_CAL_SUN}</span></td>
<!-- ENDIF -->
</tr>
<!-- BEGIN mini_cal_row -->
<tr>
<!-- BEGIN mini_cal_days -->
<td class="row1" align="center"><span class="gensmall">{mini_cal_row.mini_cal_days.MINI_CAL_DAY}</span></td>
<!-- END mini_cal_days -->
</tr>
<!-- END mini_cal_row -->
</table>
</td>
</tr>
<tr class="row2">
<td>
<table width="100%" cellspacing="1">
<tr>
<td colspan="3" align="left"><span class="genmed">{L_CURRENT_EVENTS}:</span></td>
</tr>
<tr>
<!-- BEGIN cur_events -->
<td style="width: 100%; padding-left: 0px; padding-bottom: 5px;">
<!-- IF cur_events.EVENT_URL --><a href="{cur_events.EVENT_URL}" title="{cur_events.EVENT_TITLE}"><!-- ENDIF -->
<span style="font-weight: bold;">{cur_events.EVENT_TITLE}:</span><br />
<!-- IF not cur_events.ALL_DAY and not cur_events.END_TIME -->{L_EVENT_TIME}:&nbsp;{cur_events.START_TIME}<br />
<!-- ELSEIF not cur_events.ALL_DAY and cur_events.END_TIME -->{L_EVENT_START}:&nbsp;{cur_events.START_TIME}<br />{L_EVENT_END}:&nbsp;{cur_events.END_TIME}<br />
<!-- ELSE -->{L_EVENT_ALL_DAY}<br />
<!-- ENDIF -->
<!-- IF cur_events.EVENT_DESC --><span style="font-style: italic;">{cur_events.EVENT_DESC}</span><!-- ENDIF -->
<!-- IF cur_events.EVENT_URL --></a><!-- ENDIF -->
</td>
<!-- BEGINELSE -->
<td><span style="float:left;" class="gensmall"><strong>{L_NO_CUR_EVENTS}</strong></span><br /></td>
<!-- END cur_events -->
</tr>
</table>
<table width="100%" cellspacing="1">
<tr>
<td colspan="3" align="left"><span class="genmed">{L_UPCOMING_EVENTS}:</span></td>
</tr>
<tr>
<!-- BEGIN upcoming_events -->
<td style="width: 100%; padding-left: 0px; padding-bottom: 5px;">
<!-- IF upcoming_events.EVENT_URL --><a href="{upcoming_events.EVENT_URL}" title="{upcoming_events.EVENT_TITLE}"><!-- ENDIF -->
<span style="font-weight: bold;">{upcoming_events.EVENT_TITLE}:</span><br />
<!-- IF not upcoming_events.ALL_DAY and not upcoming_events.END_TIME -->{L_EVENT_TIME}:&nbsp;{upcoming_events.START_TIME}<br />
<!-- ELSEIF not upcoming_events.ALL_DAY and upcoming_events.END_TIME -->{L_EVENT_START}:&nbsp;{upcoming_events.START_TIME}<br />{L_EVENT_END}:&nbsp;{upcoming_events.END_TIME}<br />
<!-- ELSE -->{L_EVENT_TIME}:&nbsp;{upcoming_events.START_TIME}<br />{L_EVENT_ALL_DAY}<br />
<!-- ENDIF -->
<!-- IF upcoming_events.EVENT_DESC --><span style="font-style: italic;">{upcoming_events.EVENT_DESC}</span><!-- ENDIF -->
<!-- IF upcoming_events.EVENT_URL --></a><!-- ENDIF -->
</td>
<!-- BEGINELSE -->
<td><span style="float:left;" class="gensmall"><strong>{L_NO_UPCOMING_EVENTS}</strong></span><br /></td>
<!-- END upcoming_events -->
</tr>
</table>
</td>
</tr>
</table>
{$LR_BLOCK_F_L}{$LR_BLOCK_F_R}

View File

@@ -0,0 +1,14 @@
<!--version $Id: clock_side.html 544 2009-09-10 12:35:25Z christian_n $ //-->
{$LR_BLOCK_H_L}<!-- IF $S_BLOCK_ICON --><img src="{$IMAGE_SRC}" width="16" height="16" alt="" />&nbsp;<!-- ENDIF -->{L_CLOCK}{$LR_BLOCK_H_R}
<table class="tablebg" cellspacing="1" width="100%">
<tr class="row1">
<td style="text-align:center;">
<br />
<object type="application/x-shockwave-flash" data="{T_THEME_PATH}/images/portal/{CLOCK_SRC}" width="140" height="140">
<param name="wmode" value="transparent" />
<param name="movie" value="{T_THEME_PATH}/images/portal/board3clock.swf" />
</object>
</td>
</tr>
</table>
{$LR_BLOCK_F_L}{$LR_BLOCK_F_R}

View File

@@ -0,0 +1,12 @@
<!--version $Id: custom_center.html 503 2009-04-20 18:34:29Z kevin74 $ //-->
{$C_BLOCK_H_L}{$CUSTOM_TITLE}{$C_BLOCK_H_R}
<table class="tablebg" cellspacing="1" width="100%">
<tr class="row1">
<td style="padding:5px 5px 5px 5px;">
<div class="postbody">
{$CUSTOM_CODE}
</div>
</td>
</tr>
</table>
{$C_BLOCK_F_L}{$C_BLOCK_F_R}

View File

@@ -0,0 +1,12 @@
<!--version $Id: custom_side.html 544 2009-09-10 12:35:25Z christian_n $ //-->
{$LR_BLOCK_H_L}<!-- IF $S_BLOCK_ICON --><img src="{$IMAGE_SRC}" width="16" height="16" alt="" />&nbsp;<!-- ENDIF -->{$CUSTOM_TITLE}{$LR_BLOCK_H_R}
<table class="tablebg" cellspacing="1" width="100%">
<tr class="row1">
<td style="padding:5px 5px 5px 5px;">
<div class="postbody">
{$CUSTOM_CODE}
</div>
</td>
</tr>
</table>
{$LR_BLOCK_F_L}{$LR_BLOCK_F_R}

View File

@@ -0,0 +1,51 @@
<!--version $Id: donation_center.html 503 2009-04-20 18:34:29Z kevin74 $ //-->
{$C_BLOCK_H_L}{L_DONATION}{$C_BLOCK_H_R}
<table class="tablebg" cellspacing="1" width="100%">
<tr>
<td class="row1">
<table width="100%" cellspacing="0" cellpadding="0" border="0">
<tr>
<td>
<strong>{SITENAME}</strong> {L_DONATION_TEXT}
<br />
<div style="float: left; padding-right: 5px;"><img src="{T_THEME_PATH}/images/portal/paypal.gif" alt="" /></div>
<form action="https://www.paypal.com/cgi-bin/webscr" method="post" style="padding-top:15px">
<input type="hidden" name="cmd" value="_xclick" />
<input type="hidden" name="business" value="{PAY_ACC}" />
<input type="hidden" name="item_name" value="{L_PAY_ITEM}" />
<input type="hidden" name="no_note" value="1" />
<input type="hidden" name="no_shipping" value="2" />
<input type="hidden" name="bn" value="PP-DonationsBF" />
<input type="hidden" name="tax" value="0" />
<input type="text" tabindex="11" name="amount" size="10" maxlength="6" value="" class="inputbox autowidth" title="{L_PAY_MSG}" />
<select name="currency_code" class="autowidth">
<option value="USD">{L_USD}</option>
<option value="AUD">{L_AUD}</option>
<option value="CAD">{L_CAD}</option>
<option value="CZK">{L_CZK}</option>
<option value="DKK">{L_DKK}</option>
<option value="EUR" selected="selected">{L_EUR}</option>
<option value="HKD">{L_HKD}</option>
<option value="HUF">{L_HUF}</option>
<option value="NZD">{L_NZD}</option>
<option value="NOK">{L_NOK}</option>
<option value="PLN">{L_PLN}</option>
<option value="GBP">{L_GBP}</option>
<option value="SGD">{L_SGD}</option>
<option value="SEK">{L_SEK}</option>
<option value="CHF">{L_CHF}</option>
<option value="JPY">{L_JPY}</option>
<option value="MXN">{L_MXN}</option>
<option value="ILS">{L_ILS}</option>
</select>
<input type="submit" name="submit" value="{L_DONATION}" class="button1" />
</form>
<br />
<strong>{L_PAY_MSG}</strong>
</td>
</tr>
</table>
</td>
</tr>
</table>
{$C_BLOCK_F_L}{$C_BLOCK_F_R}

View File

@@ -0,0 +1,40 @@
<!--version $Id: donation_side.html 544 2009-09-10 12:35:25Z christian_n $ //-->
{$LR_BLOCK_H_L}<!-- IF $S_BLOCK_ICON --><img src="{$IMAGE_SRC}" width="16" height="16" alt="" />&nbsp;<!-- ENDIF -->{L_DONATION}{$LR_BLOCK_H_R}
<table class="tablebg" cellspacing="1" width="100%">
<tr>
<td class="row1" style="padding:10px 1px 10px 1px;">
<div style="text-align: center;">
<form action="https://www.paypal.com/cgi-bin/webscr" method="post">
<input type="hidden" name="cmd" value="_xclick" />
<input type="hidden" name="business" value="{PAY_ACC}" />
<input type="hidden" name="item_name" value="{L_PAY_ITEM}" />
<input type="hidden" name="no_note" value="1" />
<input type="hidden" name="no_shipping" value="2" />
<input type="hidden" name="bn" value="PP-DonationsBF" />
<input type="hidden" name="tax" value="0" />
<input type="text" tabindex="10" name="amount" size="10" maxlength="6" value="" class="inputbox autowidth" title="{L_PAY_MSG}" />
<select name="currency_code" class="autowidth">
<option value="USD">USD</option>
<option value="AUD">AUD</option>
<option value="CAD">CAD</option>
<option value="CZK">CZK</option>
<option value="DKK">DKK</option>
<option value="EUR" selected="selected">EUR</option>
<option value="HKD">HKD</option>
<option value="HUF">HUF</option>
<option value="NZD">NZD</option>
<option value="NOK">NOK</option>
<option value="PLN">PLN</option>
<option value="GBP">GBP</option>
<option value="SGD">SGD</option>
<option value="SEK">SEK</option>
<option value="CHF">CHF</option>
<option value="JPY">JPY</option>
</select>
<input type="submit" name="submit" value="{L_DONATION}" class="button1" />
</form>
</div>
</td>
</tr>
</table>
{$LR_BLOCK_F_L}{$LR_BLOCK_F_R}

View File

@@ -0,0 +1,13 @@
<!--version $Id: forumlist.html 774 2011-01-05 11:28:13Z marc1706 $ //-->
<!-- IF S_DISPLAY_SEARCH or (S_USER_LOGGED_IN and not S_IS_BOT) -->
<!-- IF S_DISPLAY_SEARCH -->
<p class="searchbar">
<span style="float: {S_CONTENT_FLOW_BEGIN};"><a href="{U_SEARCH_UNANSWERED}">{L_SEARCH_UNANSWERED}</a> | <a href="{U_SEARCH_ACTIVE_TOPICS}">{L_SEARCH_ACTIVE_TOPICS}</a></span>
<!-- IF S_USER_LOGGED_IN or S_LOAD_UNREADS -->
<span style="float: {S_CONTENT_FLOW_END};"><!-- IF S_LOAD_UNREADS --><a href="{U_SEARCH_UNREAD}">{L_SEARCH_UNREAD}</a><!-- IF S_USER_LOGGED_IN --> | <!-- ENDIF --><!-- ENDIF --><!-- IF S_USER_LOGGED_IN --><a href="{U_SEARCH_NEW}">{L_SEARCH_NEW}</a> | <a href="{U_SEARCH_SELF}">{L_SEARCH_SELF}</a><!-- ENDIF --></span>
<!-- ENDIF -->
</p>
<!-- ENDIF -->
<!-- ENDIF -->
<!-- INCLUDE forumlist_body.html -->
<br />

View File

@@ -0,0 +1,23 @@
<!--version $Id: friends_side.html 639 2010-04-02 20:41:08Z marc1706 $ //-->
{$LR_BLOCK_H_L}<!-- IF $S_BLOCK_ICON --><img src="{$IMAGE_SRC}" width="17" height="17" alt="" />&nbsp;<!-- ENDIF -->{L_FRIENDS}{$LR_BLOCK_H_R}
<table class="tablebg" cellspacing="1" width="100%">
<tr class="row1">
<td>
<strong style="color:green">{L_FRIENDS_ONLINE}</strong><br />
<!-- BEGIN b3p_friends_online -->
<span style="float:left;"><img src="{T_THEME_PATH}/images/portal/portal_user.png" width="16" height="16" alt="" /></span><span style="float:left; padding-left:5px; padding-top:2px;">{b3p_friends_online.USERNAME_FULL}</span><br style="clear:both" />
<!-- BEGINELSE -->
<span style="float:left; padding-left:5px; padding-top:2px;">{L_NO_FRIENDS_ONLINE}</span>
<br style="clear:both" />
<!-- END b3p_friends_online -->
<br style="clear:both" />
<strong style="color:red">{L_FRIENDS_OFFLINE}</strong><br />
<!-- BEGIN b3p_friends_offline -->
<span style="float:left;"><img src="{T_THEME_PATH}/images/portal/portal_user.png" width="16" height="16" alt="" /></span><span style="float:left; padding-left:5px; padding-top:2px;">{b3p_friends_offline.USERNAME_FULL}</span><br style="clear:both" />
<!-- BEGINELSE -->
<span style="float:left; padding-left:5px; padding-top:2px;">{L_NO_FRIENDS_OFFLINE}</span>
<!-- END b3p_friends_offline -->
</td>
</tr>
</table>
{$LR_BLOCK_F_L}{$LR_BLOCK_F_R}

View File

@@ -0,0 +1,7 @@
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-9">
</head>
<body bgcolor="#FFFFFF" text="#000000">
</body>
</html>

View File

@@ -0,0 +1,20 @@
<!--version $Id: jumpbox.html 503 2009-04-20 18:34:29Z kevin74 $ //-->
<!-- IF S_DISPLAY_JUMPBOX -->
<form method="post" name="jumpbox" action="{S_JUMPBOX_ACTION}" onsubmit="if(document.jumpbox.f.value == -1){return false;}">
<table cellspacing="0" cellpadding="0" border="0" align="right">
<tr>
<td nowrap="nowrap"><span class="gensmall"><!-- IF S_IN_MCP and S_MERGE_SELECT -->{L_SELECT_TOPICS_FROM}<!-- ELSEIF S_IN_MCP -->{L_MODERATE_FORUM}<!-- ELSE -->{L_JUMP_TO}<!-- ENDIF -->:</span>&nbsp;<select name="f" onchange="if(this.options[this.selectedIndex].value != -1){ document.forms['jumpbox'].submit() }">
<!-- BEGIN jumpbox_forums -->
<!-- IF jumpbox_forums.S_FORUM_COUNT eq 1 --><option value="-1">------------------</option><!-- ENDIF -->
<option value="{jumpbox_forums.FORUM_ID}"{jumpbox_forums.SELECTED}><!-- BEGIN level -->&nbsp; &nbsp;<!-- END level -->{jumpbox_forums.FORUM_NAME}</option>
<!-- END jumpbox_forums -->
</select>&nbsp;<input class="btnlite" type="submit" value="{L_GO}" /></td>
</tr>
</table>
</form>
<br />
<!-- ENDIF -->

View File

@@ -0,0 +1,13 @@
<!--version $Id: latest_bots_side 544 2009-09-10 12:35:25Z christian_n $ //-->
{$LR_BLOCK_H_L}<!-- IF $S_BLOCK_ICON --><img src="{$IMAGE_SRC}" width="16" height="16" alt="" />&nbsp;<!-- ENDIF -->{LAST_VISITED_BOTS}{$LR_BLOCK_H_R}
<table class="tablebg" cellspacing="1" width="100%">
<tr class="row1">
<td>
<!-- BEGIN last_visited_bots -->
<span class="genmed">{last_visited_bots.BOT_NAME}</span> <br /> <span class="gensmall">{last_visited_bots.LAST_VISIT_DATE}</span>
<!-- IF not last_visited_bots.S_LAST_ROW --><hr /><!-- ENDIF -->
<!-- END last_visited_bots -->
</td>
</tr>
</table>
{$LR_BLOCK_F_L}{$LR_BLOCK_F_R}

View File

@@ -0,0 +1,15 @@
<!--version $Id: latest_members_side.html 544 2009-09-10 12:35:25Z christian_n $ //-->
{$LR_BLOCK_H_L}<!-- IF $S_BLOCK_ICON --><img src="{$IMAGE_SRC}" width="16" height="16" alt="" />&nbsp;<!-- ENDIF -->{L_LATEST_MEMBERS}{$LR_BLOCK_H_R}
<table class="tablebg" cellspacing="1" width="100%">
<tr class="row1">
<td>
<span style="float:left;"><strong>{L_USERNAME}</strong></span>
<span style="float:right;padding-right:10px;"><strong>{L_JOINED}</strong></span><br style="clear:both" />
<!-- BEGIN latest_members -->
<span style="float:left;"><img src="{T_THEME_PATH}/images/portal/portal_user.png" width="16" height="16" alt="" /></span><span style="float:left; padding-left:5px; padding-top:2px;">{latest_members.USERNAME_FULL}</span>
<span style="float:right;padding-right:10px; padding-top:2px;">{latest_members.JOINED}</span><br style="clear:both" />
<!-- END latest_members -->
</td>
</tr>
</table>
{$LR_BLOCK_F_L}{$LR_BLOCK_F_R}

View File

@@ -0,0 +1,25 @@
<!--version $Id: leaders_ext_side 606 2010-01-19 22:46:35Z marc1706 $ //-->
{$LR_BLOCK_H_L}<!-- IF $S_BLOCK_ICON --><img src="{$IMAGE_SRC}" width="16" height="16" alt="" />&nbsp;<!-- ENDIF -->{L_THE_TEAM}{$LR_BLOCK_H_R}
<table class="tablebg" cellspacing="1" width="100%">
<!-- BEGIN group -->
<tr class="row3">
<td>
<strong><a href="{group.U_GROUP}" style="color: #{group.GROUP_COLOUR};" class="username-coloured">{group.GROUP_NAME}</a></strong>
</td>
</tr>
<!-- BEGIN member -->
<tr class="row1">
<td>
<span style="float:left;"><img src="{T_THEME_PATH}/images/portal/portal_user.png" width="16" height="16" alt="" /></span><span style="float:left; padding-left:5px; padding-top:2px;"><strong>{group.member.USERNAME_FULL}</strong></span><br style="clear:both" />
</td>
</tr>
<!-- END member -->
<!-- BEGINELSE -->
<tr class="row1">
<td>
{L_NO_GROUPS_P}
</td>
</tr>
<!-- END group -->
</table>
{$LR_BLOCK_F_L}{$LR_BLOCK_F_R}

View File

@@ -0,0 +1,41 @@
<!--version $Id: leaders_side.html 544 2009-09-10 12:35:25Z christian_n $ //-->
{$LR_BLOCK_H_L}<!-- IF $S_BLOCK_ICON --><img src="{$IMAGE_SRC}" width="16" height="16" alt="" />&nbsp;<!-- ENDIF -->{L_THE_TEAM}{$LR_BLOCK_H_R}
<table class="tablebg" cellspacing="1" width="100%">
<tr class="row3">
<td>
<strong>{L_ADMINISTRATORS}</strong>
</td>
</tr>
<!-- BEGIN admin -->
<tr class="row1">
<td>
<span style="float:left;"><img src="{T_THEME_PATH}/images/portal/portal_user.png" width="16" height="16" alt="" /></span><span style="float:left; padding-left:5px; padding-top:2px;"><strong>{admin.USERNAME_FULL}</strong></span><br style="clear:both" />
</td>
</tr>
<!-- BEGINELSE -->
<tr class="row1">
<td>
{L_NO_ADMINISTRATORS_P}
</td>
</tr>
<!-- END admin -->
<tr class="row3">
<td>
<strong>{L_MODERATORS}</strong>
</td>
</tr>
<!-- BEGIN mod -->
<tr class="row1">
<td>
<span style="float:left;"><img src="{T_THEME_PATH}/images/portal/portal_user.png" width="16" height="16" alt="" /></span><span style="float:left; padding-left:5px; padding-top:2px;"><strong>{mod.USERNAME_FULL}</strong></span><br style="clear:both" />
</td>
</tr>
<!-- BEGINELSE -->
<tr class="row1">
<td>
{L_NO_MODERATORS_P}
</td>
</tr>
<!-- END mod -->
</table>
{$LR_BLOCK_F_L}{$LR_BLOCK_F_R}

View File

@@ -0,0 +1,11 @@
<!--version $Id: link_us_side.html 544 2009-09-10 12:35:25Z christian_n $ //-->
{$LR_BLOCK_H_L}<!-- IF $S_BLOCK_ICON --><img src="{$IMAGE_SRC}" width="16" height="16" alt="" />&nbsp;<!-- ENDIF -->{L_LINK_US}{$LR_BLOCK_H_R}
<table class="tablebg" cellspacing="1" width="100%">
<tr class="row1">
<td>
{LINK_US_TXT}<br style="clear:both" />
<input type="text" tabindex="9" size="autowidth" value="{U_LINK_US}" class="inputbox autowidth" onclick="this.focus();this.select();" /><br style="clear:both" />
</td>
</tr>
</table>
{$LR_BLOCK_F_L}{$LR_BLOCK_F_R}

View File

@@ -0,0 +1,18 @@
<!--version $Id: links_side.html 549 2009-09-25 19:04:37Z christian_n $ //-->
{$LR_BLOCK_H_L}<!-- IF $S_BLOCK_ICON --><img src="{$IMAGE_SRC}" width="16" height="16" alt="" />&nbsp;<!-- ENDIF -->{L_PORTAL_LINKS}{$LR_BLOCK_H_R}
<table class="tablebg" cellspacing="1" width="100%">
<!-- BEGIN portallinks -->
<tr class="row1">
<td>
<!-- IF $MODULE_ID eq portallinks.MODULE_ID --><img src="{T_THEME_PATH}/images/portal/arrowbullet.gif" width="12" height="11" alt="" />&nbsp;<a href="{portallinks.LINK_URL}" title="{portallinks.LINK_TITLE}">{portallinks.LINK_TITLE}</a><!-- ENDIF -->
</td>
</tr>
<!-- BEGINELSE -->
<tr class="row1">
<td>
<span style="float: left" class="gensmall"><strong>{L_LINKS_NO_LINKS}</strong></span><br />
</td>
</tr>
<!-- END portallinks -->
</table>
{$LR_BLOCK_F_L}{$LR_BLOCK_F_R}

View File

@@ -0,0 +1,24 @@
<!--version $Id: login_box_side.html 544 2009-09-10 12:35:25Z christian_n $ //-->
<form action="{S_LOGIN_ACTION}" method="post">
{$LR_BLOCK_H_L}<!-- IF $S_BLOCK_ICON --><img src="{$IMAGE_SRC}" width="16" height="16" alt="" />&nbsp;<!-- ENDIF --><a href="{U_LOGIN_LOGOUT}">{L_LOGIN_LOGOUT}</a>{$LR_BLOCK_H_R}
<table class="tablebg" cellspacing="1" width="100%">
<tr class="row1">
<td>
<span class="genmed">{L_USERNAME}:</span><br />
<input type="text" tabindex="1" name="username" id="username" size="25" value="" class="inputbox autowidth" /><br /><br />
<span class="genmed">{L_PASSWORD}:</span><br />
<input type="password" tabindex="2" id="password" name="password" size="25" class="inputbox autowidth" />
<!-- IF S_DISPLAY_FULL_LOGIN -->
<br /><br />
<!-- IF S_AUTOLOGIN_ENABLED -->
<input type="checkbox" class="radio" name="autologin" tabindex="3" /> <span class="gensmall">{L_UM_LOG_ME_IN}</span><br />
<!-- ENDIF -->
<!-- ENDIF -->
<br />
<input type="hidden" name="redirect" value="{U_PORTAL}" />
<input type="submit" name="login" tabindex="5" value="{L_LOGIN}" class="button1" />
</td>
</tr>
</table>
{$LR_BLOCK_F_L}{$LR_BLOCK_F_R}
</form>

View File

@@ -0,0 +1,27 @@
<!--version $Id: main_menu_side 544 2009-09-10 12:35:25Z christian_n $ //-->
{$LR_BLOCK_H_L}<!-- IF $S_BLOCK_ICON --><img src="{$IMAGE_SRC}" width="16" height="16" alt="" />&nbsp;<!-- ENDIF -->{L_M_MENU}{$LR_BLOCK_H_R}
<table class="tablebg" cellspacing="1" width="100%">
<!-- BEGIN portalmenu -->
<!-- IF $MODULE_ID eq portalmenu.MODULE_ID -->
<tr class="row3">
<td>
<strong>{portalmenu.CAT_TITLE}</strong>
</td>
</tr>
<!-- BEGIN links -->
<tr class="row1">
<td>
<a href="{portalmenu.links.LINK_URL}">{portalmenu.links.LINK_TITLE}</a>
</td>
</tr>
<!-- END links -->
<!-- ENDIF -->
<!-- BEGINELSE -->
<tr class="row1">
<td>
<span style="float:left;" class="gensmall"><strong>{L_MENU_NO_LINKS}</strong></span><br />
</td>
</tr>
<!-- END portal_menu -->
</table>
{$LR_BLOCK_F_L}{$LR_BLOCK_F_R}

View File

@@ -0,0 +1,69 @@
<!--version $Id: news_center.html 553 2009-09-30 12:10:19Z christian_n $ //-->
{$C_BLOCK_H_L}{L_LATEST_NEWS}{$C_BLOCK_H_R}
<table class="tablebg" cellspacing="1" width="100%">
<tr class="row1">
<td>
<!-- BEGIN news_row -->
<!-- IF news_row.S_NO_TOPICS -->
<span class="gensmall"><strong>{L_NO_NEWS}</strong></span>
<!-- ELSE -->
<table class="tablebg" cellspacing="1" width="100%">
<tr>
<td class="cat">
<a name="n"></a><a name="n{news_row.N_ID}"></a>
<!-- IF news_row.S_UNREAD_INFO --><a href="{news_row.U_VIEW_UNREAD}">{NEWEST_POST_IMG}</a><!-- ELSE --><a href="{news_row.U_LAST_COMMENTS}">{READ_POST_IMG}</a><!-- ENDIF --> {news_row.ATTACH_ICON_IMG} <!-- IF news_row.S_POLL --><strong>{L_VIEW_TOPIC_POLL}: </strong><!-- ENDIF --><!-- IF news_row.TOPIC_ICON_IMG --><img src="{T_ICONS_PATH}{news_row.TOPIC_ICON_IMG}" width="{news_row.TOPIC_ICON_IMG_WIDTH}" height="{news_row.TOPIC_ICON_IMG_HEIGHT}" alt="" /> <!-- ENDIF --><a href="{news_row.U_LAST_COMMENTS}"><strong>{news_row.TITLE}</strong></a></td>
</tr>
<tr class="row<!-- IF news_row.S_ROW_COUNT is odd -->1<!-- ELSE -->2<!-- ENDIF -->">
<td style="padding:5px 5px 5px 5px;">
<span class="gensmall" style="float: left;">{L_POSTED} {L_POST_BY_AUTHOR}: {news_row.POSTER_FULL} &raquo; {news_row.TIME}</span>
<span class="gensmall" style="float: right;">
<!-- IF news_row.FORUM_NAME -->
{L_FORUM}: <strong><a href="{news_row.U_VIEWFORUM}">{news_row.FORUM_NAME}</a></strong>
<!-- ENDIF -->
</span>
<br /><br />
<div class="postbody">
{news_row.TEXT}
</div>
<!-- IF news_row.S_HAS_ATTACHMENTS -->
<br clear="all" /><br />
<table class="tablebg" width="100%" cellspacing="1">
<tr>
<td class="row3"><b class="genmed">{L_ATTACHMENTS}: </b></td>
</tr>
<!-- BEGIN attachment -->
<tr>
<!-- IF news_row.attachment.S_ROW_COUNT is even --><td class="row2"><!-- ELSE --><td class="row1"><!-- ENDIF -->{news_row.attachment.DISPLAY_ATTACHMENT}</td>
</tr>
<!-- END attachment -->
</table>
<!-- ENDIF -->
<br /><br />
<!-- IF news_row.PAGINATION --><span style="float: right;">[ {GOTO_PAGE_IMG}{L_GOTO_PAGE}: {news_row.PAGINATION} ]</span><!-- ENDIF -->
</td>
</tr>
<tr class="row<!-- IF news_row.S_ROW_COUNT is odd -->1<!-- ELSE -->2<!-- ENDIF -->">
<td>
<span style="float: left;">{L_TOPIC_VIEWS}: {news_row.TOPIC_VIEWS} &nbsp;&bull;&nbsp; <a href="{news_row.U_VIEW_COMMENTS}" title="{L_VIEW_COMMENTS}">{L_COMMENTS}: {news_row.REPLIES}</a> &nbsp;&bull;&nbsp; <a href="{news_row.U_POST_COMMENT}">{L_POST_REPLY}</a></span>
<span style="float: right;">{news_row.OPEN}<a href="{news_row.U_READ_FULL}">{news_row.L_READ_FULL}</a>{news_row.CLOSE} <a href="#wrapheader" class="top" title="{L_BACK_TO_TOP}">{L_BACK_TO_TOP}</a></span>
</td>
</tr>
</table>
<br />
<!-- ENDIF -->
<!-- END news_row -->
<!-- IF NP_PAGINATION or TOTAL_NEWS -->
<hr />
<table width="100%" cellspacing="0">
<tr>
<td class="gensmall" valign="middle" align="right" nowrap="nowrap">
{TOTAL_NEWS}
<!-- IF NP_PAGE_NUMBER --><!-- IF NP_PAGINATION --> &bull; {NP_PAGE_NUMBER} &bull; <span>{NP_PAGINATION}</span><!-- ELSE --> &bull; {NP_PAGE_NUMBER}<!-- ENDIF --><!-- ENDIF --></td>
</tr>
</table>
<!-- ENDIF -->
</td>
</tr>
</table>
{$C_BLOCK_F_L}{$C_BLOCK_F_R}

View File

@@ -0,0 +1,65 @@
<!--version $Id: news_compact_center.html 503 2009-04-20 18:34:29Z kevin74 $ //-->
<div id="pagecontent">
<!-- BEGIN news_row -->
<!-- IF news_row.S_FIRST_ROW -->
{$C_BLOCK_H_L}{L_LATEST_NEWS} <a name="n"></a>{$C_BLOCK_H_R}
<table class="tablebg" cellspacing="1" width="100%">
<!-- IF not news_row.S_NO_TOPICS -->
<tr class="nav">
<!-- IF S_TOPIC_ICONS -->
<td class="cat" align="center" colspan="3">&nbsp;{L_TOPICS}&nbsp;</td>
<!-- ELSE -->
<td class="cat" align="center" colspan="2">&nbsp;{L_TOPICS}&nbsp;</td>
<!-- ENDIF -->
<!-- IF S_DISPLAY_NEWS_RVS -->
<td class="cat" align="center">&nbsp;{L_REPLIES}&nbsp;</td>
<td class="cat" align="center">&nbsp;{L_VIEWS}&nbsp;</td>
<!-- ENDIF -->
<td class="cat" align="center">&nbsp;{L_LAST_POST}&nbsp;</td>
</tr>
<!-- ENDIF -->
<!-- ENDIF -->
<!-- IF news_row.S_NO_TOPICS -->
<tr class="row1">
<td align="center">
<span class="gensmall"><strong>{L_NO_NEWS}</strong></span>
</td>
</tr>
<!-- ELSE -->
<tr>
<td class="row1" width="25" align="center">{news_row.TOPIC_FOLDER_IMG}</td>
<!-- IF S_TOPIC_ICONS --><td class="row1" width="25" align="center"><!-- IF news_row.TOPIC_ICON_IMG --><img src="{T_ICONS_PATH}{news_row.TOPIC_ICON_IMG}" width="{news_row.TOPIC_ICON_IMG_WIDTH}" height="{news_row.TOPIC_ICON_IMG_HEIGHT}" alt="" title="" /><!-- ENDIF --></td><!-- ENDIF -->
<td class="row1">
<!-- IF news_row.PAGINATION --><span style="float: right; font-size:0.9em;"> [ {GOTO_PAGE_IMG}{L_GOTO_PAGE}: {news_row.PAGINATION} ] </span><!-- ENDIF -->
{news_row.ATTACH_ICON_IMG} <!-- IF news_row.S_POLL --> <strong style="font-size:1.1em;">{L_VIEW_TOPIC_POLL}: </strong><!-- ENDIF --><a title="{news_row.TITLE}" href="{news_row.U_VIEW_COMMENTS}" class="topictitle">{news_row.TITLE}</a>
<p class="gensmall">{L_POSTED} {L_POST_BY_AUTHOR} {news_row.POSTER_FULL} &raquo; {news_row.TIME}
<!-- IF news_row.FORUM_NAME -->
<br />{L_FORUM}: <a href="{news_row.U_VIEWFORUM}" style="font-weight: bold;">{news_row.FORUM_NAME}</a>
<!-- ENDIF -->
<!-- IF not S_DISPLAY_NEWS_RVS --><!-- IF news_row.FORUM_NAME -->&bull; <!-- ENDIF -->{L_REPLIES}: <strong>{news_row.REPLIES}</strong> &bull; {L_VIEWS}: <strong>{news_row.TOPIC_VIEWS}</strong><!-- ENDIF -->
</p>
</td>
<!-- IF S_DISPLAY_NEWS_RVS -->
<td class="row1" width="50" align="center"><p class="topicdetails">{news_row.REPLIES}</p></td>
<td class="row2" width="50" align="center"><p class="topicdetails">{news_row.TOPIC_VIEWS}</p></td>
<!-- ENDIF -->
<td class="row1" width="140" align="center">
<p class="topicdetails" style="white-space: nowrap;"> {news_row.LAST_POST_TIME}</p>
<p class="topicdetails">{news_row.USERNAME_FULL_LAST}
<!-- IF not S_IS_BOT --><!-- IF news_row.S_UNREAD_INFO --><a href="{news_row.U_VIEW_UNREAD}">{NEWEST_POST_IMG}</a><!-- ELSE --><a href="{news_row.U_LAST_COMMENTS}">{READ_POST_IMG}</a><!-- ENDIF --><!-- ENDIF -->
</p>
</td>
</tr>
<!-- ENDIF -->
<!-- IF news_row.S_LAST_ROW -->
<!-- IF NP_PAGINATION or TOTAL_NEWS -->
<tr class="row<!-- IF news_row.S_ROW_COUNT is even -->2<!-- ELSE -->1<!-- ENDIF -->">
<td class="gensmall" valign="middle" align="right" nowrap="nowrap" colspan="<!-- IF S_TOPIC_ICONS and S_DISPLAY_NEWS_RVS -->6<!-- ELSEIF not S_TOPIC_ICONS and S_DISPLAY_NEWS_RVS -->5<!-- ELSEIF S_TOPIC_ICONS and not S_DISPLAY_NEWS_RVS -->4<!-- ELSE -->3<!-- ENDIF -->">{TOTAL_NEWS}
<!-- IF NP_PAGE_NUMBER --><!-- IF NP_PAGINATION --> &bull; {NP_PAGE_NUMBER} &bull; <span>{NP_PAGINATION}</span><!-- ELSE --> &bull; {NP_PAGE_NUMBER}<!-- ENDIF --><!-- ENDIF --></td>
</tr>
<!-- ENDIF -->
</table>
{$C_BLOCK_F_L}{$C_BLOCK_F_R}
<!-- ENDIF -->
<!-- END news_row -->
</div>

View File

@@ -0,0 +1,78 @@
<!--version $Id: poll_center.html 599 2009-12-26 16:28:12Z marc1706 $ //-->
<a name="viewpoll"></a>
{$C_BLOCK_H_L}{L_LATEST_POLLS}{$C_BLOCK_H_R}
<!-- IF S_HAS_POLL -->
<!-- BEGIN poll -->
<!-- IF poll.S_CAN_VOTE --><form method="post" action="{poll.S_POLL_ACTION}"><!-- ENDIF -->
<table class="tablebg" cellspacing="1" cellpadding="4" border="0" align="center" width="100%">
<tr>
<td class="row2" style="text-align: left">
<span class="gen"><b>{poll.POLL_QUESTION}</b></span><br /><span class="gensmall">{poll.L_POLL_LENGTH}</span>
</td>
</tr>
<!-- IF poll.S_POLL_HAS_OPTIONS -->
<tr>
<td class="row1" align="center">
<table cellspacing="0" cellpadding="2" border="0">
<!-- BEGIN poll_option -->
<tr>
<!-- IF poll.S_CAN_VOTE -->
<td>
<!-- IF poll.S_IS_MULTI_CHOICE -->
<input type="checkbox" class="radio" name="vote_id[]" value="{poll.poll_option.POLL_OPTION_ID}"<!-- IF poll.poll_option.POLL_OPTION_VOTED --> checked="checked"<!-- ENDIF --> />
<!-- ELSE -->
<input type="radio" class="radio" name="vote_id[]" value="{poll.poll_option.POLL_OPTION_ID}"<!-- IF poll.poll_option.POLL_OPTION_VOTED --> checked="checked"<!-- ENDIF --> />
<!-- ENDIF -->
</td>
<!-- ENDIF -->
<td style="text-align: left"><span class="gen">{poll.poll_option.POLL_OPTION_CAPTION}</span></td>
<!-- IF poll.S_DISPLAY_RESULTS -->
<td dir="ltr" style="text-align: left; white-space: nowrap">{POLL_LEFT_CAP_IMG}{poll.poll_option.POLL_OPTION_IMG}{POLL_RIGHT_CAP_IMG}</td>
<td class="gen" align="{S_CONTENT_FLOW_END}"><b>&nbsp;{poll.poll_option.POLL_OPTION_PERCENT}&nbsp;</b></td>
<td class="gen" style="white-space: nowrap">[ {poll.poll_option.POLL_OPTION_RESULT} ]</td>
<!-- IF poll.poll_option.POLL_OPTION_VOTED -->
<td class="gensmall" valign="top"><b title="{L_POLL_VOTED_OPTION}">x</b></td>
<!-- ENDIF -->
<!-- ENDIF -->
</tr>
<!-- END poll_option -->
</table>
</td>
</tr>
<!-- ELSE -->
<tr>
<td class="row1" align="center">
{L_NO_OPTIONS}
</td>
</tr>
<!-- ENDIF -->
<!-- IF poll.S_CAN_VOTE -->
<tr>
<td class="row1" align="center"><span class="gensmall">{poll.L_MAX_VOTES}</span><br /><br /><input type="submit" name="update" value="{L_SUBMIT_VOTE}" class="btnlite" /></td>
</tr>
<!-- ENDIF -->
<!-- IF poll.S_DISPLAY_RESULTS -->
<tr>
<td class="row1" colspan="4" align="center"><span class="gensmall"><b>{L_TOTAL_VOTES} : {poll.TOTAL_VOTES}</b> <b><a href="{poll.U_VIEW_TOPIC}">{L_VIEW_TOPIC}</a></b></span></td>
</tr>
<!-- ELSE -->
<tr>
<td class="row1" align="center"><span class="gensmall"><b><a href="{poll.U_VIEW_RESULTS}">{L_VIEW_RESULTS}</a></b> <b><a href="{poll.U_VIEW_TOPIC}">{L_VIEW_TOPIC}</a></b></span></td>
</tr>
<!-- ENDIF -->
</table>
<!-- IF poll.S_CAN_VOTE -->{S_HIDDEN_FIELDS}
</form><!-- ENDIF -->
<!-- END poll -->
<!-- ELSE -->
<table class="tablebg" cellspacing="1" width="100%">
<tr>
<td class="row1">
<strong>{L_NO_POLL}</strong>
</td>
</tr>
</table>
<!-- ENDIF -->
{$C_BLOCK_F_L}{$C_BLOCK_F_R}

View File

@@ -0,0 +1,78 @@
<!--version $Id: poll_side.html 599 2009-12-26 16:28:12Z marc1706 $ //-->
<a name="viewpoll"></a>
{$LR_BLOCK_H_L}<img src="{$IMAGE_SRC}" width="16" height="16" alt="" />&nbsp;{L_PORTAL_POLL}{$LR_BLOCK_H_R}
<!-- IF S_HAS_POLL -->
<!-- BEGIN poll_side -->
<!-- IF poll_side.S_CAN_VOTE --><form method="post" action="{poll_side.S_POLL_ACTION}"><!-- ENDIF -->
<table class="tablebg" cellspacing="1" cellpadding="4" border="0" align="center" width="100%">
<tr>
<td class="row2" style="text-align: left">
<span class="gen"><b>{poll_side.POLL_QUESTION}</b></span><br /><span class="gensmall">{poll_side.L_POLL_LENGTH}</span>
</td>
</tr>
<!-- IF poll_side.S_POLL_HAS_OPTIONS -->
<tr>
<td class="row1" align="center">
<table cellspacing="0" cellpadding="2" border="0">
<!-- BEGIN poll_option -->
<tr>
<!-- IF poll_side.S_CAN_VOTE -->
<td>
<!-- IF poll_side.S_IS_MULTI_CHOICE -->
<input type="checkbox" class="radio" name="vote_id[]" value="{poll_side.poll_option.POLL_OPTION_ID}"<!-- IF poll_side.poll_option.POLL_OPTION_VOTED --> checked="checked"<!-- ENDIF --> />
<!-- ELSE -->
<input type="radio" class="radio" name="vote_id[]" value="{poll_side.poll_option.POLL_OPTION_ID}"<!-- IF poll_side.poll_option.POLL_OPTION_VOTED --> checked="checked"<!-- ENDIF --> />
<!-- ENDIF -->
</td>
<!-- ENDIF -->
<td style="text-align: left"><span class="gen">{poll_side.poll_option.POLL_OPTION_CAPTION}</span></td>
<!-- IF poll_side.S_DISPLAY_RESULTS -->
<td dir="ltr" style="text-align: left; white-space: nowrap">{POLL_LEFT_CAP_IMG}{poll_side.poll_option.POLL_OPTION_IMG}{POLL_RIGHT_CAP_IMG}</td>
<td class="gen" align="{S_CONTENT_FLOW_END}"><b>&nbsp;{poll_side.poll_option.POLL_OPTION_PERCENT}&nbsp;</b></td>
<td class="gen" style="white-space: nowrap">[ {poll_side.poll_option.POLL_OPTION_RESULT} ]</td>
<!-- IF poll_side.poll_option.POLL_OPTION_VOTED -->
<td class="gensmall" valign="top"><b title="{L_POLL_VOTED_OPTION}">x</b></td>
<!-- ENDIF -->
<!-- ENDIF -->
</tr>
<!-- END poll_option -->
</table>
</td>
</tr>
<!-- ELSE -->
<tr>
<td class="row1" align="center">
{L_NO_OPTIONS}
</td>
</tr>
<!-- ENDIF -->
<!-- IF poll_side.S_CAN_VOTE -->
<tr>
<td class="row1" align="center"><span class="gensmall">{poll_side.L_MAX_VOTES}</span><br /><br /><input type="submit" name="update" value="{L_SUBMIT_VOTE}" class="btnlite" /></td>
</tr>
<!-- ENDIF -->
<!-- IF poll_side.S_DISPLAY_RESULTS -->
<tr>
<td class="row1" colspan="4" align="center"><span class="gensmall"><b>{L_TOTAL_VOTES} : {poll_side.TOTAL_VOTES}</b> <b><a href="{poll_side.U_VIEW_TOPIC}">{L_VIEW_TOPIC}</a></b></span></td>
</tr>
<!-- ELSE -->
<tr>
<td class="row1" align="center"><span class="gensmall"><b><a href="{poll_side.U_VIEW_RESULTS}">{L_VIEW_RESULTS}</a></b> <b><a href="{poll_side.U_VIEW_TOPIC}">{L_VIEW_TOPIC}</a></b></span></td>
</tr>
<!-- ENDIF -->
</table>
<!-- IF poll_side.S_CAN_VOTE -->{S_HIDDEN_FIELDS}
</form><!-- ENDIF -->
<!-- END poll -->
<!-- ELSE -->
<table class="tablebg" cellspacing="1" width="100%">
<tr>
<td class="row1">
<strong>{L_NO_POLL}</strong>
</td>
</tr>
</table>
<!-- ENDIF -->
{$LR_BLOCK_F_L}{$LR_BLOCK_F_R}

View File

@@ -0,0 +1,28 @@
<!--version $Id: random_member_side.html 544 2009-09-10 12:35:25Z christian_n $ //-->
{$LR_BLOCK_H_L}<!-- IF $S_BLOCK_ICON --><img src="{$IMAGE_SRC}" width="16" height="16" alt="" />&nbsp;<!-- ENDIF -->{L_PORTAL_RANDOM_MEMBER}{$LR_BLOCK_H_R}
<table class="tablebg" cellspacing="1" width="100%">
<tr class="row1">
<td>
<!-- BEGIN random_member -->
<div style="text-align: center;"><span style="font-size:12px; padding-top:1px; margin-bottom: 5px;">{random_member.USERNAME_FULL}</span><br style="clear:both" />
<!-- IF random_member.AVATAR_IMG --><a href="{random_member.U_VIEW_PROFILE}">{random_member.AVATAR_IMG}</a><br style="clear:both" /><!-- ENDIF -->
<!-- IF random_member.RANK_TITLE --><span class="gensmall">{random_member.RANK_TITLE}</span><br style="clear:both" /><!-- ENDIF -->
<!-- IF random_member.RANK_IMG -->{random_member.RANK_IMG}<br style="clear:both" /><!-- ENDIF -->
</div>
<br style="clear:both" />
<span style="float:left;"><strong>{L_RND_JOIN}:</strong></span><span style="float:right;padding-right:10px;">{random_member.JOINED}</span><br style="clear:both" />
<span style="float:left;"><strong>{L_RND_POSTS}:</strong></span><span style="float:right;padding-right:10px;">{random_member.USER_POSTS}</span><br style="clear:both" />
<!-- IF random_member.USER_OCC -->
<span style="float:left;"><strong>{L_RND_OCC}:</strong></span><span style="float:right;padding-right:10px;"> &nbsp; {random_member.USER_OCC}</span><br style="clear:both" />
<!-- ENDIF -->
<!-- IF random_member.USER_FROM -->
<span style="float:left;"><strong>{L_RND_FROM}:</strong></span><span style="float:right;padding-right:10px;"> &nbsp; {random_member.USER_FROM}</span><br style="clear:both" />
<!-- ENDIF -->
<!-- IF random_member.U_WWW -->
<span style="float:left;"><a href="{random_member.U_WWW}" title="{random_member.U_WWW}"><strong>{L_RND_WWW}</strong></a></span><br style="clear:both" />
<!-- ENDIF -->
<!-- END random_member -->
</td>
</tr>
</table>
{$LR_BLOCK_F_L}{$LR_BLOCK_F_R}

View File

@@ -0,0 +1,35 @@
<!--version $Id: recent_center.html 503 2009-04-20 18:34:29Z kevin74 $ //-->
<!-- IF .latest_announcements or .latest_hot_topics or .latest_topics -->
{$C_BLOCK_H_L}{L_PORTAL_RECENT}{$C_BLOCK_H_R}
<table class="tablebg" cellspacing="1" width="100%">
<tr>
<!-- IF .latest_announcements --><td class="row1"><strong>{L_PORTAL_RECENT_ANN}</strong></td><!-- ENDIF -->
<!-- IF .latest_hot_topics --><td class="row1"><strong>{L_PORTAL_RECENT_HOT_TOPIC}</strong></td><!-- ENDIF -->
<!-- IF .latest_topics --><td class="row1"><strong>{L_PORTAL_RECENT_TOPIC}</strong></td><!-- ENDIF -->
</tr>
<tr>
<!-- IF .latest_announcements -->
<td class="row1" width="33%" valign="top">
<!-- BEGIN latest_announcements -->
<a href="{latest_announcements.U_VIEW_TOPIC}" title="{latest_announcements.FULL_TITLE}">{latest_announcements.TITLE}</a><br />
<!-- END latest_announcements -->
</td>
<!-- ENDIF -->
<!-- IF .latest_hot_topics -->
<td class="row1" width="33%" valign="top">
<!-- BEGIN latest_hot_topics -->
<a href="{latest_hot_topics.U_VIEW_TOPIC}" title="{latest_hot_topics.FULL_TITLE}">{latest_hot_topics.TITLE}</a><br />
<!-- END latest_hot_topics -->
</td>
<!-- ENDIF -->
<!-- IF .latest_topics -->
<td class="row1" width="33%" valign="top">
<!-- BEGIN latest_topics -->
<a href="{latest_topics.U_VIEW_TOPIC}" title="{latest_topics.FULL_TITLE}">{latest_topics.TITLE}</a><br />
<!-- END latest_topics -->
</td>
<!-- ENDIF -->
</tr>
</table>
{$C_BLOCK_F_L}{$C_BLOCK_F_R}
<!-- ENDIF -->

View File

@@ -0,0 +1,84 @@
<!--version $Id: search_side.html 609 2010-01-21 13:16:00Z marc1706 $ //-->
<script type="text/javascript">
<!--
function qsearch_onSubmit()
{
qs_enginename = document.getElementById('qsearch_select').value;
qs_keywords = document.getElementById('searchfield').value;
switch( qs_enginename )
{
case 'site':
break;
case 'author':
window.open('search.php?author=' + qs_keywords, '_self', '');
return false;
case 'wikipedia':
window.open('http://en.wikipedia.org/wiki/Spezial:Search?search=' + qs_keywords, '_wikipedia', '');
return false;
case 'google':
window.open('http://www.google.com/search?q=' + qs_keywords, '_google', '');
return false;
case 'yahoo':
window.open('http://search.yahoo.com/search?p=' + qs_keywords, '_yahoo', '');
return false;
case 'bing':
window.open('http://www.bing.com/search?q=' + qs_keywords, '_bing', '');
return false;
case 'altavista':
window.open('http://www.altavista.com/web/results?itag=ody&q=' + qs_keywords + '&kgs=0&kls=0', '_altavista', '');
return false;
case 'lycos':
window.open('http://search.lycos.com/?query=' + qs_keywords, '_lycos', '');
return false;
case 'odp':
window.open('http://search.dmoz.org/cgi-bin/search?search=' + qs_keywords, '_odp', '');
return false;
default:
if( (i = qsearch_findEngine(qs_enginename)) >= 0 )
{
window.open(qsearch_engines[i].url + qs_keywords, '_blank', '');
return false;
}
break;
}
return true;
}
//-->
</script>
{$LR_BLOCK_H_L}<!-- IF $S_BLOCK_ICON --><img src="{$IMAGE_SRC}" width="16" height="16" alt="" />&nbsp;<!-- ENDIF -->{L_PORTAL_SEARCH}{$LR_BLOCK_H_R}
<table class="tablebg" cellspacing="1" width="100%">
<tr class="row1">
<td>
<form id="qsearch_form" method="post" action="{U_SEARCH}" onsubmit="return qsearch_onSubmit();">
<p>
<input type="text" tabindex="6" name="keywords" id="searchfield" size="22" maxlength="40" title="{L_SEARCH_KEYWORDS}" value="<!-- IF SEARCH_WORDS-->{SEARCH_WORDS}<!-- ELSE -->{L_SEARCH_MINI}<!-- ENDIF -->" onclick="if(this.value=='{LA_SEARCH_MINI}')this.value='';" onblur="if(this.value=='')this.value='{LA_SEARCH_MINI}';" />
</p>
<p>
<select id="qsearch_select" tabindex="7">
<optgroup label="{L_PORTAL_SEARCH_SITE}">
<option value="site">{L_PORTAL_SEARCH_POSTS}</option>
<option value="author">{L_PORTAL_SEARCH_AUTHOR}</option>
</optgroup>
<optgroup label="{L_PORTAL_SEARCH_ENGINE}">
<option value="wikipedia">Wikipedia</option>
<option value="google">Google</option>
<option value="yahoo">Yahoo</option>
<option value="bing">Bing</option>
<option value="altavista">Altavista</option>
<option value="lycos">Lycos</option>
<option value="odp">Open directory</option>
</optgroup>
</select>
<!-- &nbsp; -->
<input type="hidden" name="search_fields" value="all" />
<input type="hidden" name="show_results" value="topics" />
<input type="submit" value="{L_PORTAL_SEARCH_GO}" class="button2" tabindex="8" />
</p>
</form>
<hr />
<a href="{U_SEARCH}">{L_PORTAL_SEARCH_ADV}</a>
</td>
</tr>
</table>
{$LR_BLOCK_F_L}{$LR_BLOCK_F_R}

View File

@@ -0,0 +1,25 @@
<!--version $Id: statistics_side.html 544 2009-09-10 12:35:25Z christian_n $ //-->
{$LR_BLOCK_H_L}<!-- IF $S_BLOCK_ICON --><img src="{$IMAGE_SRC}" width="16" height="16" alt="" />&nbsp;<!-- ENDIF -->{L_STATISTICS}{$LR_BLOCK_H_R}
<table class="tablebg" cellspacing="1" width="100%">
<tr class="row1">
<td>
<strong>{L_ST_TOP}</strong><br />
{B3_TOTAL_POSTS}<br />
{B3_TOTAL_TOPICS}<br />
{L_ST_TOP_ANNS} <strong>{B3_ANNOUNCE_COUNT}</strong><br />
{L_ST_TOP_STICKYS} <strong>{B3_STICKY_COUNT}</strong><br />
{L_ST_TOT_ATTACH} <strong>{B3_TOTAL_ATTACH}</strong><br />
<hr />
{B3_TOPICS_PER_DAY}<br />
{B3_POSTS_PER_DAY}<br />
{B3_USERS_PER_DAY}<br />
{B3_TOPICS_PER_USER}<br />
{B3_POSTS_PER_USER}<br />
{B3_POSTS_PER_TOPIC}<br />
<hr />
{B3_TOTAL_USERS}<br />
{B3_NEWEST_USER}
</td>
</tr>
</table>
{$LR_BLOCK_F_L}{$LR_BLOCK_F_R}

View File

@@ -0,0 +1,14 @@
<!--version $Id: stylechanger_side.html 544 2009-09-10 12:35:25Z christian_n $ //-->
<!-- IF S_STYLE_OPTIONS and S_DISPLAY_CHANGE_STYLE -->
{$LR_BLOCK_H_L}<!-- IF $S_BLOCK_ICON --><img src="{$IMAGE_SRC}" width="16" height="16" alt="" />&nbsp;<!-- ENDIF -->{L_BOARD_STYLE}{$LR_BLOCK_H_R}
<table class="tablebg" cellspacing="1" width="100%">
<tr class="row1">
<td>
<select style="width: 150px;" name="demo" id="demo" onchange="document.location.href = this.options[this.selectedIndex].value;">
{STYLE_SELECT}
</select>
</td>
</tr>
</table>
{$LR_BLOCK_F_L}{$LR_BLOCK_F_R}
<!-- ENDIF -->

View File

@@ -0,0 +1,15 @@
<!--version $Id: topposters_side.html 544 2009-09-10 12:35:25Z christian_n $ //-->
{$LR_BLOCK_H_L}<!-- IF $S_BLOCK_ICON --><img src="{$IMAGE_SRC}" width="16" height="16" alt="" />&nbsp;<!-- ENDIF -->{L_TOPPOSTERS}{$LR_BLOCK_H_R}
<table class="tablebg" cellspacing="1" width="100%">
<tr class="row1">
<td>
<span style="float:left;"><strong>{L_USERNAME}</strong></span>
<span style="float:right;padding-right:10px;"><strong>{L_POSTS}</strong></span><br style="clear:both" />
<!-- BEGIN topposters -->
<span style="float:left;"><img src="{T_THEME_PATH}/images/portal/portal_user.png" width="16" height="16" alt="" /></span><span style="float:left; padding-left:5px; padding-top:2px;">{topposters.USERNAME_FULL}</span>
<span style="float:right;padding-right:10px; padding-top:2px;"><a href="{topposters.S_SEARCH_ACTION}">{topposters.POSTER_POSTS}</a></span><br style="clear:both" />
<!-- END topposters -->
</td>
</tr>
</table>
{$LR_BLOCK_F_L}{$LR_BLOCK_F_R}

View File

@@ -0,0 +1,81 @@
<!--version $Id: user_menu_side.html 632 2010-03-14 16:42:33Z marc1706 $ //-->
{$LR_BLOCK_H_L}<!-- IF $S_BLOCK_ICON --><img src="{$IMAGE_SRC}" width="16" height="16" alt="" />&nbsp;<!-- ENDIF -->{L_USER_MENU}{$LR_BLOCK_H_R}
<table class="tablebg" cellspacing="1" width="100%">
<tr class="row1">
<td>
<div align="center">
<a href="{U_VIEW_PROFILE}"><!-- IF B3P_USER_COLOR --><span style="color: {B3P_USER_COLOR}; font-weight: bold;"><!-- ELSE --><span><!-- ENDIF -->{USERNAME_FULL}</span></a><br />
<!-- IF B3P_AVATAR_IMG -->
<a href="{U_PROFILE}">{B3P_AVATAR_IMG}</a>
<!-- ELSEIF $NO_AVATAR_IMG -->
<a href="{U_PROFILE}"><img src="{T_THEME_PATH}{$NO_AVATAR_IMG}" alt="" /></a>
<!-- ENDIF -->
<!-- IF B3P_RANK_TITLE --><br /><span class="gensmall">{B3P_RANK_TITLE}</span><!-- ENDIF -->
<!-- IF B3P_RANK_IMG --><br />{B3P_RANK_IMG}<!-- ENDIF -->
</div>
</td>
</tr>
<!-- IF S_DISPLAY_SEARCH -->
<tr class="row1">
<td>
<a href="{U_NEW_POSTS}">{L_NEW_POSTS}</a>
</td>
</tr>
<tr class="row1">
<td>
<a href="{U_UNREAD_POSTS}">{L_UNREAD_POSTS}</a>
</td>
</tr>
<tr class="row1">
<td>
<a href="{U_SELF_POSTS}">{L_SELF_POSTS}</a>
</td>
</tr>
<!-- ENDIF -->
<!-- IF U_UM_BOOKMARKS -->
<tr class="row1">
<td>
<a href="{U_UM_BOOKMARKS}">{L_UM_BOOKMARKS}</a>
</td>
</tr>
<!-- ENDIF -->
<!-- IF S_DISPLAY_SUBSCRIPTIONS -->
<tr class="row1">
<td>
<a href="{U_UM_MAIN_SUBSCRIBED}">{L_UM_MAIN_SUBSCRIBED}</a>
</td>
</tr>
<!-- ENDIF -->
<!-- IF S_DISPLAY_PM -->
<tr class="row1">
<td>
<a href="{U_PRIVATEMSGS}">{PRIVATE_MESSAGE_INFO}</a>
</td>
</tr>
<!-- ENDIF -->
<tr class="row1">
<td>
<a href="{U_PROFILE}">{L_PROFILE}</a>
</td>
</tr>
<!-- IF U_MCP -->
<tr class="row1">
<td>
<a href="{U_MCP}">{L_MCP}</a>
</td>
</tr>
<!-- ENDIF -->
<!-- IF U_ACP -->
<tr class="row1">
<td>
<a href="{U_ACP}">{L_M_ACP}</a><br />
</td>
</tr>
<!-- ENDIF -->
<tr class="row1">
<td>
<a href="{U_LOGIN_LOGOUT}">{L_LOGIN_LOGOUT}</a>
</td>
</tr>
</table>
{$LR_BLOCK_F_L}{$LR_BLOCK_F_R}

View File

@@ -0,0 +1,12 @@
<!--version $Id: welcome_center.html 503 2009-04-20 18:34:29Z kevin74 $ //-->
{$C_BLOCK_H_L}{L_PORTAL_WELCOME}{$C_BLOCK_H_R}
<table class="tablebg" cellspacing="1" width="100%">
<tr class="row1">
<td style="padding:5px 5px 5px 5px;">
<div class="postbody">
{PORTAL_WELCOME_MSG}
</div>
</td>
</tr>
</table>
{$C_BLOCK_F_L}{$C_BLOCK_F_R}

View File

@@ -0,0 +1,20 @@
<!--version $Id: whois_online_center.html 656 2010-05-02 18:23:10Z marc1706 $ //-->
{$C_BLOCK_H_L}<!-- IF U_VIEWONLINE --><a href="{U_VIEWONLINE}">{L_WHO_IS_ONLINE}</a><!-- ELSE -->{L_WHO_IS_ONLINE}<!-- ENDIF -->{$C_BLOCK_H_R}
<table class="tablebg" cellspacing="1" width="100%">
<tr>
<!-- IF $WHOS_IMAGES -->
<!-- IF LEGEND -->
<td class="row1" rowspan="2" align="center" valign="middle"><img src="{T_THEME_PATH}{$WHOS_IMAGES}" alt="{L_WHO_IS_ONLINE}" /></td>
<!-- ELSE -->
<td class="row1" align="center" valign="middle"><img src="{T_THEME_PATH}{$WHOS_IMAGES}" alt="{L_WHO_IS_ONLINE}" /></td>
<!-- ENDIF -->
<!-- ENDIF -->
<td class="row1" width="100%"><span class="genmed">{TOTAL_USERS_ONLINE} ({L_ONLINE_EXPLAIN})<br />{RECORD_USERS}<br /><br />{LOGGED_IN_USER_LIST}</span></td>
</tr>
<!-- IF LEGEND -->
<tr>
<td class="row1"><b class="gensmall">{L_LEGEND}: {PORTAL_LEGEND}</b></td>
</tr>
<!-- ENDIF -->
</table>
{$C_BLOCK_F_L}{$C_BLOCK_F_R}

View File

@@ -0,0 +1,109 @@
<!-- DEFINE $S_IN_PORTAL = 1 -->
<!-- INCLUDE overall_header.html -->
<!-- INCLUDE portal/_block_config.html -->
<!--version $Id: portal_body.html 591 2009-12-11 23:48:49Z marc1706 $ //-->
<!-- IF PORTAL_VERSION_CHECK and U_ACP -->
<table class="tablebg" width="100%" cellspacing="1" cellpadding="0" style="margin-top: 5px;">
<tbody>
<tr>
<td class="row1">
<p class="breadcrumbs"><span style="color: red;">{PORTAL_VERSION_CHECK}</span></p>
</td>
</tr>
</tbody>
</table>
<br />
<!-- ENDIF -->
<table cellpadding="0" cellspacing="0" border="0" width="100%" align="center">
<!-- IF S_TOP_COLUMN -->
<tr>
<!-- [+] top module area -->
<td colspan="3">
<!-- BEGIN modules_top -->
<!-- DEFINE $TEMPLATE_FILE = '{modules_top.TEMPLATE_FILE}' -->
<!-- DEFINE $IMAGE_SRC = '{modules_top.IMAGE_SRC}' -->
<!-- DEFINE $CUSTOM_CODE = '{modules_top.CODE}' -->
<!-- DEFINE $CUSTOM_TITLE = '{modules_top.TITLE}' -->
<!-- DEFINE $MODULE_ID = '{modules_top.MODULE_ID}' -->
<!-- INCLUDE {$TEMPLATE_FILE} -->
<!-- END modules_top -->
</td>
<!-- [-] top module area -->
</tr>
<!-- ENDIF -->
<tr>
<!-- [+] left module area -->
<!-- IF S_LEFT_COLUMN -->
<td width="{S_PORTAL_LEFT_COLUMN}px" valign="top" style="padding-<!-- IF S_CONTENT_DIRECTION eq 'rtl' -->left<!-- ELSE -->right<!-- ENDIF -->:{$BLOCK_DISTANCE};">
<!-- BEGIN modules_left -->
<!-- DEFINE $TEMPLATE_FILE = '{modules_left.TEMPLATE_FILE}' -->
<!-- DEFINE $IMAGE_SRC = '{modules_left.IMAGE_SRC}' -->
<!-- DEFINE $CUSTOM_CODE = '{modules_left.CODE}' -->
<!-- DEFINE $CUSTOM_TITLE = '{modules_left.TITLE}' -->
<!-- DEFINE $MODULE_ID = '{modules_left.MODULE_ID}' -->
<!-- INCLUDE {$TEMPLATE_FILE} -->
<!-- END modules_left -->
</td>
<!-- ENDIF -->
<!-- [-] left module area -->
<!-- [+] center module area -->
<!-- IF S_CENTER_COLUMN -->
<td valign="top">
<!-- BEGIN modules_center -->
<!-- DEFINE $TEMPLATE_FILE = '{modules_center.TEMPLATE_FILE}' -->
<!-- DEFINE $IMAGE_SRC = '{modules_center.IMAGE_SRC}' -->
<!-- DEFINE $CUSTOM_CODE = '{modules_center.CODE}' -->
<!-- DEFINE $CUSTOM_TITLE = '{modules_center.TITLE}' -->
<!-- DEFINE $MODULE_ID = '{modules_center.MODULE_ID}' -->
<!-- INCLUDE {$TEMPLATE_FILE} -->
<!-- END modules_center -->
<!-- IF S_DISPLAY_JUMPBOX and S_IS_FIXXXXXXXXXXXXXXED -->
<br />
<!-- INCLUDE portal/modules/jumpbox.html -->
<!-- ENDIF -->
</td>
<!-- ENDIF -->
<!-- [-] center module area -->
<!-- [+] right module area -->
<!-- IF S_RIGHT_COLUMN -->
<td width="{S_PORTAL_RIGHT_COLUMN}px" valign="top" style="padding-<!-- IF S_CONTENT_DIRECTION eq 'rtl' -->right<!-- ELSE -->left<!-- ENDIF -->:{$BLOCK_DISTANCE};">
<!-- BEGIN modules_right -->
<!-- DEFINE $TEMPLATE_FILE = '{modules_right.TEMPLATE_FILE}' -->
<!-- DEFINE $IMAGE_SRC = '{modules_right.IMAGE_SRC}' -->
<!-- DEFINE $CUSTOM_CODE = '{modules_right.CODE}' -->
<!-- DEFINE $CUSTOM_TITLE = '{modules_right.TITLE}' -->
<!-- DEFINE $MODULE_ID = '{modules_right.MODULE_ID}' -->
<!-- INCLUDE {$TEMPLATE_FILE} -->
<!-- END modules_right -->
</td>
<!-- ENDIF -->
<!-- [-] right module area -->
</tr>
<!-- IF S_BOTTOM_COLUMN -->
<tr>
<!-- [+] bottom module area -->
<td colspan="3">
<!-- BEGIN modules_bottom -->
<!-- DEFINE $TEMPLATE_FILE = '{modules_bottom.TEMPLATE_FILE}' -->
<!-- DEFINE $IMAGE_SRC = '{modules_bottom.IMAGE_SRC}' -->
<!-- DEFINE $CUSTOM_CODE = '{modules_bottom.CODE}' -->
<!-- DEFINE $CUSTOM_TITLE = '{modules_bottom.TITLE}' -->
<!-- DEFINE $MODULE_ID = '{modules_bottom.MODULE_ID}' -->
<!-- INCLUDE {$TEMPLATE_FILE} -->
<!-- END modules_bottom -->
</td>
<!-- [-] bottom module area -->
</tr>
<!-- ENDIF -->
</table>
<!--// board3 Portal by www.board3.de //-->
<!-- please keep this credits visible, thank you! -->
<br />
<div class="copyright" align="center">Powered by <a href="http://www.board3.de/">Board3 Portal</a> &copy; 2009 - 2011 Board3 Group</div>
<br />
<!-- INCLUDE overall_footer.html -->

Binary file not shown.

After

Width:  |  Height:  |  Size: 744 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 676 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 144 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1003 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 964 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 738 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 453 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 895 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1002 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 855 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 813 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB