[ticket/701] Remove non-default style
B3P-701
@@ -1 +0,0 @@
|
|||||||
<!-- IF U_PORTAL --><span class="crumb"><a href="{U_PORTAL}" data-navbar-reference="portal">{L_PORTAL}</a></span><!-- ENDIF -->
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
<!-- IF U_PORTAL --><span class="crumb"><a href="{U_PORTAL}" data-navbar-reference="portal">{L_PORTAL}</a></span><!-- ENDIF -->
|
|
||||||
@@ -1,4 +0,0 @@
|
|||||||
<!-- IF T_EXT_THEME_PATH -->
|
|
||||||
<!-- INCLUDECSS ../theme/portal.css -->
|
|
||||||
<!-- INCLUDECSS ../theme/portal_responsive.css -->
|
|
||||||
<!-- ENDIF -->
|
|
||||||
@@ -1,35 +0,0 @@
|
|||||||
<!-- Config for the left and right blocks //-->
|
|
||||||
<!-- DEFINE $LR_BLOCK_H_L = '<div class="forabg"><div class="inner"><ul class="topiclist"><li class="header portal-header"><dl><dt style="white-space: nowrap; margin-bottom: 0px; margin-top: 0px;">' -->
|
|
||||||
<!-- DEFINE $LR_BLOCK_H_R = '</dt><dd></dd></dl></li></ul><ul class="topiclist portal-bg forums"><li><dl><dt></dt><dd class="portal-side-wrapper"><div class="portal-side">' -->
|
|
||||||
<!-- DEFINE $LR_BLOCK_F_L = '</div></dd></dl></li></ul>' -->
|
|
||||||
<!-- DEFINE $LR_BLOCK_F_R = '</div></div><br class="portal-clear" />' -->
|
|
||||||
|
|
||||||
<!-- Config for the center blocks //-->
|
|
||||||
<!-- DEFINE $C_BLOCK_H_L = '<div class="forabg"><div class="inner"><ul class="topiclist portal-bg"><li class="header"><dl class="icon"><dt>' -->
|
|
||||||
<!-- DEFINE $C_BLOCK_H_R = '</dt><dd></dd></dl></li></ul>' -->
|
|
||||||
<!-- DEFINE $C_BLOCK_F_L = ' ' -->
|
|
||||||
<!-- DEFINE $C_BLOCK_F_R = '</div></div><br class="portal-clear" />' -->
|
|
||||||
|
|
||||||
<!-- Config for compact blocks //-->
|
|
||||||
<!-- DEFINE $CC_BLOCK_H_L = '<div class="forabg"><div class="inner"><ul class="topiclist portal-bg"><li class="header"><dl class="icon">' -->
|
|
||||||
<!-- DEFINE $CC_BLOCK_H_R = '</dl></li></ul>' -->
|
|
||||||
|
|
||||||
<!-- Images-URL //-->
|
|
||||||
<!-- 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 -->
|
|
||||||
|
|
||||||
<!-- postbody top (default 1 by prosilver) 0=no 1=yes -->
|
|
||||||
<!-- DEFINE $S_POSTBODY_TOP = 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' -->
|
|
||||||
@@ -1,22 +0,0 @@
|
|||||||
/*! Copyright (c) 2008 Brandon Aaron (brandon.aaron@gmail.com || http://brandonaaron.net)
|
|
||||||
* Dual licensed under the MIT (http://www.opensource.org/licenses/mit-license.php)
|
|
||||||
* and GPL (http://www.opensource.org/licenses/gpl-license.php) licenses.
|
|
||||||
*/
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Gets the width of the OS scrollbar
|
|
||||||
*/
|
|
||||||
(function($) {
|
|
||||||
var scrollbarWidth = 0;
|
|
||||||
$.getScrollbarWidth = function() {
|
|
||||||
if ( !scrollbarWidth ) {
|
|
||||||
var $div = $('<div />')
|
|
||||||
.css({ width: 100, height: 100, overflow: 'auto', position: 'absolute', top: -1000, left: -1000 })
|
|
||||||
.prependTo('body').append('<div />').find('div')
|
|
||||||
.css({ width: '100%', height: 200 });
|
|
||||||
scrollbarWidth = 100 - $div.width();
|
|
||||||
$div.parent().remove();
|
|
||||||
}
|
|
||||||
return scrollbarWidth;
|
|
||||||
};
|
|
||||||
})(jQuery);
|
|
||||||
@@ -1,205 +0,0 @@
|
|||||||
/*
|
|
||||||
* jQuery Easing v1.3 - http://gsgd.co.uk/sandbox/jquery/easing/
|
|
||||||
*
|
|
||||||
* Uses the built in easing capabilities added In jQuery 1.1
|
|
||||||
* to offer multiple easing options
|
|
||||||
*
|
|
||||||
* TERMS OF USE - jQuery Easing
|
|
||||||
*
|
|
||||||
* Open source under the BSD License.
|
|
||||||
*
|
|
||||||
* Copyright © 2008 George McGinley Smith
|
|
||||||
* All rights reserved.
|
|
||||||
*
|
|
||||||
* Redistribution and use in source and binary forms, with or without modification,
|
|
||||||
* are permitted provided that the following conditions are met:
|
|
||||||
*
|
|
||||||
* Redistributions of source code must retain the above copyright notice, this list of
|
|
||||||
* conditions and the following disclaimer.
|
|
||||||
* Redistributions in binary form must reproduce the above copyright notice, this list
|
|
||||||
* of conditions and the following disclaimer in the documentation and/or other materials
|
|
||||||
* provided with the distribution.
|
|
||||||
*
|
|
||||||
* Neither the name of the author nor the names of contributors may be used to endorse
|
|
||||||
* or promote products derived from this software without specific prior written permission.
|
|
||||||
*
|
|
||||||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
|
|
||||||
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
|
||||||
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
|
||||||
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
|
|
||||||
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
|
|
||||||
* GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
|
|
||||||
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
|
||||||
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
|
|
||||||
* OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
// t: current time, b: begInnIng value, c: change In value, d: duration
|
|
||||||
jQuery.easing['jswing'] = jQuery.easing['swing'];
|
|
||||||
|
|
||||||
jQuery.extend( jQuery.easing,
|
|
||||||
{
|
|
||||||
def: 'easeOutQuad',
|
|
||||||
swing: function (x, t, b, c, d) {
|
|
||||||
//alert(jQuery.easing.default);
|
|
||||||
return jQuery.easing[jQuery.easing.def](x, t, b, c, d);
|
|
||||||
},
|
|
||||||
easeInQuad: function (x, t, b, c, d) {
|
|
||||||
return c*(t/=d)*t + b;
|
|
||||||
},
|
|
||||||
easeOutQuad: function (x, t, b, c, d) {
|
|
||||||
return -c *(t/=d)*(t-2) + b;
|
|
||||||
},
|
|
||||||
easeInOutQuad: function (x, t, b, c, d) {
|
|
||||||
if ((t/=d/2) < 1) return c/2*t*t + b;
|
|
||||||
return -c/2 * ((--t)*(t-2) - 1) + b;
|
|
||||||
},
|
|
||||||
easeInCubic: function (x, t, b, c, d) {
|
|
||||||
return c*(t/=d)*t*t + b;
|
|
||||||
},
|
|
||||||
easeOutCubic: function (x, t, b, c, d) {
|
|
||||||
return c*((t=t/d-1)*t*t + 1) + b;
|
|
||||||
},
|
|
||||||
easeInOutCubic: function (x, t, b, c, d) {
|
|
||||||
if ((t/=d/2) < 1) return c/2*t*t*t + b;
|
|
||||||
return c/2*((t-=2)*t*t + 2) + b;
|
|
||||||
},
|
|
||||||
easeInQuart: function (x, t, b, c, d) {
|
|
||||||
return c*(t/=d)*t*t*t + b;
|
|
||||||
},
|
|
||||||
easeOutQuart: function (x, t, b, c, d) {
|
|
||||||
return -c * ((t=t/d-1)*t*t*t - 1) + b;
|
|
||||||
},
|
|
||||||
easeInOutQuart: function (x, t, b, c, d) {
|
|
||||||
if ((t/=d/2) < 1) return c/2*t*t*t*t + b;
|
|
||||||
return -c/2 * ((t-=2)*t*t*t - 2) + b;
|
|
||||||
},
|
|
||||||
easeInQuint: function (x, t, b, c, d) {
|
|
||||||
return c*(t/=d)*t*t*t*t + b;
|
|
||||||
},
|
|
||||||
easeOutQuint: function (x, t, b, c, d) {
|
|
||||||
return c*((t=t/d-1)*t*t*t*t + 1) + b;
|
|
||||||
},
|
|
||||||
easeInOutQuint: function (x, t, b, c, d) {
|
|
||||||
if ((t/=d/2) < 1) return c/2*t*t*t*t*t + b;
|
|
||||||
return c/2*((t-=2)*t*t*t*t + 2) + b;
|
|
||||||
},
|
|
||||||
easeInSine: function (x, t, b, c, d) {
|
|
||||||
return -c * Math.cos(t/d * (Math.PI/2)) + c + b;
|
|
||||||
},
|
|
||||||
easeOutSine: function (x, t, b, c, d) {
|
|
||||||
return c * Math.sin(t/d * (Math.PI/2)) + b;
|
|
||||||
},
|
|
||||||
easeInOutSine: function (x, t, b, c, d) {
|
|
||||||
return -c/2 * (Math.cos(Math.PI*t/d) - 1) + b;
|
|
||||||
},
|
|
||||||
easeInExpo: function (x, t, b, c, d) {
|
|
||||||
return (t==0) ? b : c * Math.pow(2, 10 * (t/d - 1)) + b;
|
|
||||||
},
|
|
||||||
easeOutExpo: function (x, t, b, c, d) {
|
|
||||||
return (t==d) ? b+c : c * (-Math.pow(2, -10 * t/d) + 1) + b;
|
|
||||||
},
|
|
||||||
easeInOutExpo: function (x, t, b, c, d) {
|
|
||||||
if (t==0) return b;
|
|
||||||
if (t==d) return b+c;
|
|
||||||
if ((t/=d/2) < 1) return c/2 * Math.pow(2, 10 * (t - 1)) + b;
|
|
||||||
return c/2 * (-Math.pow(2, -10 * --t) + 2) + b;
|
|
||||||
},
|
|
||||||
easeInCirc: function (x, t, b, c, d) {
|
|
||||||
return -c * (Math.sqrt(1 - (t/=d)*t) - 1) + b;
|
|
||||||
},
|
|
||||||
easeOutCirc: function (x, t, b, c, d) {
|
|
||||||
return c * Math.sqrt(1 - (t=t/d-1)*t) + b;
|
|
||||||
},
|
|
||||||
easeInOutCirc: function (x, t, b, c, d) {
|
|
||||||
if ((t/=d/2) < 1) return -c/2 * (Math.sqrt(1 - t*t) - 1) + b;
|
|
||||||
return c/2 * (Math.sqrt(1 - (t-=2)*t) + 1) + b;
|
|
||||||
},
|
|
||||||
easeInElastic: function (x, t, b, c, d) {
|
|
||||||
var s=1.70158;var p=0;var a=c;
|
|
||||||
if (t==0) return b; if ((t/=d)==1) return b+c; if (!p) p=d*.3;
|
|
||||||
if (a < Math.abs(c)) { a=c; var s=p/4; }
|
|
||||||
else var s = p/(2*Math.PI) * Math.asin (c/a);
|
|
||||||
return -(a*Math.pow(2,10*(t-=1)) * Math.sin( (t*d-s)*(2*Math.PI)/p )) + b;
|
|
||||||
},
|
|
||||||
easeOutElastic: function (x, t, b, c, d) {
|
|
||||||
var s=1.70158;var p=0;var a=c;
|
|
||||||
if (t==0) return b; if ((t/=d)==1) return b+c; if (!p) p=d*.3;
|
|
||||||
if (a < Math.abs(c)) { a=c; var s=p/4; }
|
|
||||||
else var s = p/(2*Math.PI) * Math.asin (c/a);
|
|
||||||
return a*Math.pow(2,-10*t) * Math.sin( (t*d-s)*(2*Math.PI)/p ) + c + b;
|
|
||||||
},
|
|
||||||
easeInOutElastic: function (x, t, b, c, d) {
|
|
||||||
var s=1.70158;var p=0;var a=c;
|
|
||||||
if (t==0) return b; if ((t/=d/2)==2) return b+c; if (!p) p=d*(.3*1.5);
|
|
||||||
if (a < Math.abs(c)) { a=c; var s=p/4; }
|
|
||||||
else var s = p/(2*Math.PI) * Math.asin (c/a);
|
|
||||||
if (t < 1) return -.5*(a*Math.pow(2,10*(t-=1)) * Math.sin( (t*d-s)*(2*Math.PI)/p )) + b;
|
|
||||||
return a*Math.pow(2,-10*(t-=1)) * Math.sin( (t*d-s)*(2*Math.PI)/p )*.5 + c + b;
|
|
||||||
},
|
|
||||||
easeInBack: function (x, t, b, c, d, s) {
|
|
||||||
if (s == undefined) s = 1.70158;
|
|
||||||
return c*(t/=d)*t*((s+1)*t - s) + b;
|
|
||||||
},
|
|
||||||
easeOutBack: function (x, t, b, c, d, s) {
|
|
||||||
if (s == undefined) s = 1.70158;
|
|
||||||
return c*((t=t/d-1)*t*((s+1)*t + s) + 1) + b;
|
|
||||||
},
|
|
||||||
easeInOutBack: function (x, t, b, c, d, s) {
|
|
||||||
if (s == undefined) s = 1.70158;
|
|
||||||
if ((t/=d/2) < 1) return c/2*(t*t*(((s*=(1.525))+1)*t - s)) + b;
|
|
||||||
return c/2*((t-=2)*t*(((s*=(1.525))+1)*t + s) + 2) + b;
|
|
||||||
},
|
|
||||||
easeInBounce: function (x, t, b, c, d) {
|
|
||||||
return c - jQuery.easing.easeOutBounce (x, d-t, 0, c, d) + b;
|
|
||||||
},
|
|
||||||
easeOutBounce: function (x, t, b, c, d) {
|
|
||||||
if ((t/=d) < (1/2.75)) {
|
|
||||||
return c*(7.5625*t*t) + b;
|
|
||||||
} else if (t < (2/2.75)) {
|
|
||||||
return c*(7.5625*(t-=(1.5/2.75))*t + .75) + b;
|
|
||||||
} else if (t < (2.5/2.75)) {
|
|
||||||
return c*(7.5625*(t-=(2.25/2.75))*t + .9375) + b;
|
|
||||||
} else {
|
|
||||||
return c*(7.5625*(t-=(2.625/2.75))*t + .984375) + b;
|
|
||||||
}
|
|
||||||
},
|
|
||||||
easeInOutBounce: function (x, t, b, c, d) {
|
|
||||||
if (t < d/2) return jQuery.easing.easeInBounce (x, t*2, 0, c, d) * .5 + b;
|
|
||||||
return jQuery.easing.easeOutBounce (x, t*2-d, 0, c, d) * .5 + c*.5 + b;
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
/*
|
|
||||||
*
|
|
||||||
* TERMS OF USE - EASING EQUATIONS
|
|
||||||
*
|
|
||||||
* Open source under the BSD License.
|
|
||||||
*
|
|
||||||
* Copyright © 2001 Robert Penner
|
|
||||||
* All rights reserved.
|
|
||||||
*
|
|
||||||
* Redistribution and use in source and binary forms, with or without modification,
|
|
||||||
* are permitted provided that the following conditions are met:
|
|
||||||
*
|
|
||||||
* Redistributions of source code must retain the above copyright notice, this list of
|
|
||||||
* conditions and the following disclaimer.
|
|
||||||
* Redistributions in binary form must reproduce the above copyright notice, this list
|
|
||||||
* of conditions and the following disclaimer in the documentation and/or other materials
|
|
||||||
* provided with the distribution.
|
|
||||||
*
|
|
||||||
* Neither the name of the author nor the names of contributors may be used to endorse
|
|
||||||
* or promote products derived from this software without specific prior written permission.
|
|
||||||
*
|
|
||||||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
|
|
||||||
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
|
||||||
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
|
||||||
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
|
|
||||||
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
|
|
||||||
* GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
|
|
||||||
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
|
||||||
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
|
|
||||||
* OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
@@ -1,52 +0,0 @@
|
|||||||
/**
|
|
||||||
*
|
|
||||||
* @package Board3 Portal v2.1 - javascript code
|
|
||||||
* @copyright (c) 2014 Board3 Group ( www.board3.de )
|
|
||||||
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
(function($) { // Avoid conflicts with other libraries
|
|
||||||
|
|
||||||
"use strict";
|
|
||||||
|
|
||||||
var portal_right_width;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Correctly align the right column underneath the left column.
|
|
||||||
* This will make sure that the right column doesn't start before the end of
|
|
||||||
* the center column but rather right after the last module of the left column.
|
|
||||||
*/
|
|
||||||
phpbb.b3p_fix_right_column_margin = function() {
|
|
||||||
var width = $(window).width();
|
|
||||||
var $portal_right = $('#portal-right');
|
|
||||||
var $portal_left = $('#portal-left');
|
|
||||||
var $portal_center = $('#portal-center');
|
|
||||||
|
|
||||||
if (width <= (895 - $.getScrollbarWidth())) {
|
|
||||||
// Get correct margin-left for portal-right and add 10px for padding
|
|
||||||
if ($portal_left.width() > 0) {
|
|
||||||
$portal_right.css('margin-left', - ($portal_right.width() + 1));
|
|
||||||
$portal_right.css('margin-top', $portal_center.height() + 'px');
|
|
||||||
$portal_left.css('margin-top', $portal_center.height() + 'px');
|
|
||||||
} else {
|
|
||||||
$portal_right.css('margin-left', 0);
|
|
||||||
$portal_right.css('margin-top', 0);
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
$portal_right.css('margin-top', '0px');
|
|
||||||
$portal_right.css('margin-left', -portal_right_width);
|
|
||||||
$portal_right.width(portal_right_width);
|
|
||||||
$portal_left.css('margin-top', 0);
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
$(document).ready(function() {
|
|
||||||
portal_right_width = $('#portal-right').width();
|
|
||||||
phpbb.b3p_fix_right_column_margin();
|
|
||||||
$(window).resize(function() {
|
|
||||||
phpbb.b3p_fix_right_column_margin();
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
||||||
})(jQuery); // Avoid conflicts with other libraries
|
|
||||||
@@ -1,180 +0,0 @@
|
|||||||
/**
|
|
||||||
*
|
|
||||||
* @package Board3 Portal v2.1 - Clock
|
|
||||||
* @copyright (c) 2013 Board3 Group ( www.board3.de )
|
|
||||||
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
(function($) { // Avoid conflicts with other libraries
|
|
||||||
|
|
||||||
"use strict";
|
|
||||||
|
|
||||||
var hour_cur = 0;
|
|
||||||
var minL_cur = 0;
|
|
||||||
var minR_cur = 0;
|
|
||||||
var secL_cur = 0;
|
|
||||||
var secR_cur = 0;
|
|
||||||
|
|
||||||
phpbb.b3pFlipClock = function(identifierUp, identifierDown, val, type) {
|
|
||||||
var backIdUp = identifierUp.replace('-front-', '-back-');
|
|
||||||
var backIdDown = identifierDown.replace('-front-', '-back-');
|
|
||||||
var backPosition = $(backIdUp).css('background-position');
|
|
||||||
var backPositionLength;
|
|
||||||
var backY;
|
|
||||||
|
|
||||||
// Workaround for Internet Explorer bug
|
|
||||||
if (backPosition === undefined) {
|
|
||||||
backPosition = $(backIdUp).css('background-position-x') + ' ' + $(backIdUp).css('background-position-y');
|
|
||||||
}
|
|
||||||
|
|
||||||
backPositionLength = backPosition.length;
|
|
||||||
|
|
||||||
if (backPosition.substring(backPositionLength - 3, backPositionLength - 2) === '0') {
|
|
||||||
backY = '0px';
|
|
||||||
} else {
|
|
||||||
backY = backPosition.substring(backPositionLength - 5, backPositionLength);
|
|
||||||
}
|
|
||||||
|
|
||||||
backPosition = $(backIdUp).css('background-position');
|
|
||||||
$(identifierUp)
|
|
||||||
.css('background-position', backPosition)
|
|
||||||
.height('21px')
|
|
||||||
.css({'visibility': 'visible', 'display': 'inline-block' });
|
|
||||||
$(identifierDown)
|
|
||||||
.height('0px')
|
|
||||||
.css('visibility', 'visible');
|
|
||||||
|
|
||||||
// single digits will have digits 0 - 9, double 0 - 24
|
|
||||||
if (type === 'single') {
|
|
||||||
$(backIdUp).css('background-position', (val * -22) + 'px ' + backY);
|
|
||||||
} else if (type === 'double') {
|
|
||||||
if (val >= 12) {
|
|
||||||
backY = '-22px';
|
|
||||||
val = val - 12;
|
|
||||||
$(backIdUp).css('background-position', (val * -43) + 'px ' + backY);
|
|
||||||
val = val + 12;
|
|
||||||
} else {
|
|
||||||
if (val < 12 && backY !== '0px') {
|
|
||||||
backY = '0px';
|
|
||||||
}
|
|
||||||
$(backIdUp).css('background-position', (val * -43) + 'px ' + backY);
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
// now get the vertical offset of the bottom digit
|
|
||||||
backPosition = $(identifierDown).css('background-position');
|
|
||||||
|
|
||||||
// Workaround for Internet Explorer bug
|
|
||||||
if (backPosition === undefined) {
|
|
||||||
backPosition = $(identifierDown).css('background-position-x') + ' ' + $(identifierDown).css('background-position-y');
|
|
||||||
}
|
|
||||||
|
|
||||||
backPositionLength = backPosition.length;
|
|
||||||
|
|
||||||
if (backPosition.substring(backPositionLength - 3, backPositionLength - 2) === '0') {
|
|
||||||
backY = '0px';
|
|
||||||
} else {
|
|
||||||
backY = backPosition.substring(backPositionLength - 5, backPositionLength);
|
|
||||||
}
|
|
||||||
|
|
||||||
// single digits will have digits 0 - 9, double 0 - 24
|
|
||||||
if (type === 'single') {
|
|
||||||
$(identifierDown).css('background-position', (val * -22) + 'px ' + backY);
|
|
||||||
} else if (type === 'double') {
|
|
||||||
if (val >= 12) {
|
|
||||||
backY = '-65px';
|
|
||||||
val = val - 12;
|
|
||||||
$(identifierDown).css('background-position', (val * -43) + 'px ' + backY);
|
|
||||||
val = val + 12;
|
|
||||||
} else {
|
|
||||||
if (val < 12 && backY !== '-44px') {
|
|
||||||
backY = '-44px';
|
|
||||||
}
|
|
||||||
$(identifierDown).css('background-position', (val * -43) + 'px ' + backY);
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Animate the top number flipping
|
|
||||||
$(identifierUp).animate({
|
|
||||||
height: '0px',
|
|
||||||
'margin-top': '21px'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
'duration': 150,
|
|
||||||
defaultEasing: 'easeInOutSine',
|
|
||||||
'complete': function(){
|
|
||||||
// Now animate the bottom number flipping
|
|
||||||
$(identifierDown).animate(
|
|
||||||
{height: '20px'},
|
|
||||||
{
|
|
||||||
'duration': 150,
|
|
||||||
defaultEasing: 'easeInOutSine',
|
|
||||||
'complete': function(){
|
|
||||||
// For compatibility with IE8
|
|
||||||
if ($(identifierDown).css('background-position') !== undefined) {
|
|
||||||
$(backIdDown).css('background-position', $(identifierDown).css('background-position'));
|
|
||||||
} else {
|
|
||||||
$(backIdDown).css('background-position-x', $(identifierDown).css('background-position-x'));
|
|
||||||
$(backIdDown).css('background-position-y', $(identifierDown).css('background-position-y'));
|
|
||||||
}
|
|
||||||
$(identifierDown).css({
|
|
||||||
'visibility': 'hidden',
|
|
||||||
'display': 'inline-block'
|
|
||||||
});
|
|
||||||
$(identifierUp).css({
|
|
||||||
'visibility': 'hidden',
|
|
||||||
'display': 'inline-block',
|
|
||||||
'margin-top': '0px'
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
);
|
|
||||||
};
|
|
||||||
|
|
||||||
phpbb.b3pClock = function() {
|
|
||||||
var now = new Date();
|
|
||||||
var hour = now.getHours();
|
|
||||||
var minL = Math.floor(now.getMinutes() / 10);
|
|
||||||
var minR = now.getMinutes() % 10;
|
|
||||||
var secL = Math.floor(now.getSeconds() / 10);
|
|
||||||
var secR = now.getSeconds() % 10;
|
|
||||||
|
|
||||||
if (hour !== hour_cur) {
|
|
||||||
phpbb.b3pFlipClock('.portal-clock-front-hours-up', '.portal-clock-front-hours-down', hour, 'double');
|
|
||||||
hour_cur = hour;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (minR !== minR_cur) {
|
|
||||||
phpbb.b3pFlipClock('.portal-clock-front-minutes-up-right', '.portal-clock-front-minutes-down-right', minR, 'single');
|
|
||||||
minR_cur = minR;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (minL !== minL_cur) {
|
|
||||||
phpbb.b3pFlipClock('.portal-clock-front-minutes-up-left', '.portal-clock-front-minutes-down-left', minL, 'single');
|
|
||||||
minL_cur = minL;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (secR !== secR_cur) {
|
|
||||||
phpbb.b3pFlipClock('.portal-clock-front-seconds-up-right', '.portal-clock-front-seconds-down-right', secR, 'single');
|
|
||||||
secR_cur = secR;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (secL !== secL_cur) {
|
|
||||||
phpbb.b3pFlipClock('.portal-clock-front-seconds-up-left', '.portal-clock-front-seconds-down-left', secL, 'single');
|
|
||||||
secL_cur = secL;
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
$(document).ready(function() {
|
|
||||||
setInterval(phpbb.b3pClock, 1000);
|
|
||||||
});
|
|
||||||
|
|
||||||
})(jQuery); // Avoid conflicts with other libraries
|
|
||||||
@@ -1,7 +0,0 @@
|
|||||||
<html>
|
|
||||||
<head>
|
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-9">
|
|
||||||
</head>
|
|
||||||
<body bgcolor="#FFFFFF" text="#000000">
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
@@ -1,51 +0,0 @@
|
|||||||
{$C_BLOCK_H_L}{$TITLE}{$C_BLOCK_H_R}
|
|
||||||
<!-- IF $S_POSTBODY_TOP --><div class="postbody portal-module-postbody"><!-- ENDIF -->
|
|
||||||
<!-- BEGIN announcements -->
|
|
||||||
<!-- IF announcements.MODULE_ID eq $MODULE_ID -->
|
|
||||||
<!-- BEGIN center_row -->
|
|
||||||
<!-- IF announcements.center_row.S_NO_TOPICS -->
|
|
||||||
<div class="post bg2">
|
|
||||||
<div class="inner">
|
|
||||||
<span><strong>{L_NO_ANNOUNCEMENTS}</strong></span>
|
|
||||||
<!-- ELSE -->
|
|
||||||
<div class="post <!-- IF announcements.center_row.S_ROW_COUNT is odd -->bg1<!-- ELSE -->bg2<!-- ENDIF --> portal-no-margin">
|
|
||||||
<div class="inner">
|
|
||||||
<h4 class="first"><a <!-- IF announcements.center_row.S_FIRST_ROW -->id="a_{$MODULE_ID}" <!-- ENDIF -->name="a_{$MODULE_ID}_{announcements.center_row.A_ID}"></a><!-- IF announcements.center_row.S_UNREAD_INFO --><a href="{announcements.center_row.U_VIEW_UNREAD}">{NEWEST_POST_IMG}</a><!-- ELSE --><a href="{announcements.center_row.U_LAST_COMMENTS}">{READ_POST_IMG}</a><!-- ENDIF --> {announcements.center_row.ATTACH_ICON_IMG} <!-- IF announcements.center_row.S_POLL --> <strong>{L_VIEW_TOPIC_POLL}{L_COLON} </strong><!-- ENDIF --><!-- IF announcements.center_row.TOPIC_ICON_IMG --><img src="{T_ICONS_PATH}{announcements.center_row.TOPIC_ICON_IMG}" width="{announcements.center_row.TOPIC_ICON_IMG_WIDTH}" height="{announcements.center_row.TOPIC_ICON_IMG_HEIGHT}" alt="" /> <!-- ENDIF --><a href="{announcements.center_row.U_VIEW_COMMENTS}"><strong>{announcements.center_row.TITLE}</strong></a></h4>
|
|
||||||
<!-- IF announcements.center_row.PAGINATION --><strong class="pagination"><span>{announcements.center_row.PAGINATION}</span></strong><!-- ENDIF -->
|
|
||||||
<ul class="linklist">
|
|
||||||
<li>{L_POSTED} {L_POST_BY_AUTHOR}{L_COLON} {announcements.center_row.POSTER_FULL} » {announcements.center_row.TIME}</li>
|
|
||||||
<li class="rightside"><!-- IF announcements.center_row.FORUM_NAME -->{L_FORUM}{L_COLON} <strong><a href="{announcements.center_row.U_VIEWFORUM}">{announcements.center_row.FORUM_NAME}</a></strong><!-- ELSE -->{L_GLOBAL_ANNOUNCEMENT}<!-- ENDIF --></li>
|
|
||||||
</ul>
|
|
||||||
<!-- IF not $S_POSTBODY_TOP --><div class="postbody portal-module-postbody"><!-- ENDIF -->
|
|
||||||
<div class="content">
|
|
||||||
<br />{announcements.center_row.TEXT}
|
|
||||||
</div>
|
|
||||||
<!-- IF announcements.center_row.S_HAS_ATTACHMENTS -->
|
|
||||||
<dl class="attachbox">
|
|
||||||
<dt>{L_ATTACHMENTS}</dt>
|
|
||||||
<!-- BEGIN attachment -->
|
|
||||||
<dd>{announcements.center_row.attachment.DISPLAY_ATTACHMENT}</dd>
|
|
||||||
<!-- END attachment -->
|
|
||||||
</dl>
|
|
||||||
<!-- ENDIF -->
|
|
||||||
<br class="portal-clear" />
|
|
||||||
<span class="portal-title-span">{L_TOPIC_VIEWS}{L_COLON} {announcements.center_row.TOPIC_VIEWS} • <a href="{announcements.center_row.U_VIEW_COMMENTS}" title="{L_VIEW_COMMENTS}">{L_COMMENTS}{L_COLON} {announcements.center_row.REPLIES}</a> • <a href="{announcements.center_row.U_POST_COMMENT}">{L_POST_REPLY}</a></span>
|
|
||||||
<span class="portal-read-all-link">{announcements.center_row.OPEN}<a href="{announcements.center_row.U_READ_FULL}">{announcements.center_row.L_READ_FULL}</a>{announcements.center_row.CLOSE}</span>
|
|
||||||
<div class="back2top"><a href="#wrap" class="top portal-top" title="{L_BACK_TO_TOP}">{L_BACK_TO_TOP}</a></div>
|
|
||||||
<!-- IF announcements.center_row.S_NOT_LAST --><br class="portal-clear" /><!-- ENDIF -->
|
|
||||||
<!-- IF announcements.center_row.S_LAST_ROW and (announcements.AP_PAGINATION or announcements.TOTAL_ANNOUNCEMENTS) -->
|
|
||||||
<hr class="dashed" />
|
|
||||||
<div class="pagination">
|
|
||||||
{announcements.TOTAL_ANNOUNCEMENTS}
|
|
||||||
<!-- IF announcements.AP_PAGE_NUMBER --><!-- IF announcements.AP_PAGINATION --> • {announcements.AP_PAGE_NUMBER} • {announcements.AP_PAGINATION}<!-- ELSE --> • {announcements.AP_PAGE_NUMBER}<!-- ENDIF --><!-- ENDIF -->
|
|
||||||
</div>
|
|
||||||
<!-- ENDIF -->
|
|
||||||
<!-- IF not $S_POSTBODY_TOP --></div><!-- ENDIF -->
|
|
||||||
<!-- ENDIF -->
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<!-- END center_row -->
|
|
||||||
<!-- ENDIF -->
|
|
||||||
<!-- END announcements -->
|
|
||||||
<!-- IF $S_POSTBODY_TOP --></div><!-- ENDIF -->
|
|
||||||
{$C_BLOCK_F_L}{$C_BLOCK_F_R}
|
|
||||||
@@ -1,84 +0,0 @@
|
|||||||
<!-- BEGIN announcements -->
|
|
||||||
<!-- IF announcements.MODULE_ID eq $MODULE_ID -->
|
|
||||||
<!-- BEGIN center_row -->
|
|
||||||
<!-- IF announcements.center_row.S_NO_TOPICS -->
|
|
||||||
{$C_BLOCK_H_L}{$TITLE}{$C_BLOCK_H_R}
|
|
||||||
<div class="post bg2 portal-no-margin">
|
|
||||||
<div class="inner">
|
|
||||||
<span><strong>{L_NO_ANNOUNCEMENTS}</strong></span>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
{$C_BLOCK_F_L}{$C_BLOCK_F_R}
|
|
||||||
<!-- ELSE -->
|
|
||||||
<!-- IF announcements.center_row.S_FIRST_ROW -->
|
|
||||||
{$CC_BLOCK_H_L}
|
|
||||||
<dt id="a_{$MODULE_ID}">{$TITLE}</dt>
|
|
||||||
<!-- IF announcements.S_DISPLAY_ANNOUNCEMENTS_RVS -->
|
|
||||||
<dd class="posts responsive-portal-announcements">{L_REPLIES}</dd>
|
|
||||||
<dd class="views responsive-portal-announcements">{L_VIEWS}</dd>
|
|
||||||
<!-- ENDIF -->
|
|
||||||
<dd class="lastpost responsive-portal-announcements"><span>{L_LAST_POST}</span></dd>
|
|
||||||
{$CC_BLOCK_H_R}
|
|
||||||
<ul class="topiclist topics responsive-portal-announcements">
|
|
||||||
<!-- ENDIF -->
|
|
||||||
<li class="row<!-- IF announcements.center_row.S_ROW_COUNT is even --> bg1<!-- ELSE --> bg2<!-- ENDIF -->">
|
|
||||||
<dl class="icon {announcements.center_row.TOPIC_IMG_STYLE}">
|
|
||||||
<dt style="<!-- IF announcements.center_row.TOPIC_ICON_IMG -->background-image: url({T_ICONS_PATH}{announcements.center_row.TOPIC_ICON_IMG}); background-repeat: no-repeat;<!-- ENDIF -->" title="{announcements.center_row.TOPIC_FOLDER_IMG_ALT}">
|
|
||||||
<!-- IF announcements.center_row.S_UNREAD_TOPIC -->
|
|
||||||
<a href="{announcements.center_row.U_NEWEST_POST}">{NEWEST_POST_IMG}</a>
|
|
||||||
<!-- ENDIF -->
|
|
||||||
<div class="list-inner">
|
|
||||||
<!-- IF announcements.center_row.ATTACH_ICON_IMG -->{announcements.center_row.ATTACH_ICON_IMG} <!-- ENDIF -->
|
|
||||||
<!-- IF announcements.center_row.S_POLL --><strong>{L_VIEW_TOPIC_POLL}</strong><!-- ENDIF -->
|
|
||||||
<a href="{announcements.center_row.U_VIEW_COMMENTS}" title="{announcements.center_row.TITLE}" class="topictitle">{announcements.center_row.TITLE}</a>
|
|
||||||
<!-- IF U_VIEW_UNREAD_POST and not S_IS_BOT --> • <a href="{U_VIEW_UNREAD_POST}">{L_VIEW_UNREAD_POST}</a> • <!-- ENDIF -->
|
|
||||||
<!-- IF announcements.center_row.pagination -->
|
|
||||||
<div class="pagination">
|
|
||||||
<ul>
|
|
||||||
<!-- BEGIN pagination -->
|
|
||||||
<!-- IF announcements.center_row.pagination.S_IS_PREV -->
|
|
||||||
<!-- ELSEIF announcements.center_row.pagination.S_IS_CURRENT --><li><a href="{announcements.center_row.pagination.PAGE_URL}">{announcements.center_row.pagination.PAGE_NUMBER}</a></li>
|
|
||||||
<!-- ELSEIF announcements.center_row.pagination.S_IS_ELLIPSIS --><li class="ellipsis"><span>{L_ELLIPSIS}</span></li>
|
|
||||||
<!-- ELSEIF announcements.center_row.pagination.S_IS_NEXT -->
|
|
||||||
<!-- ELSE --><li><a href="{announcements.center_row.pagination.PAGE_URL}">{announcements.center_row.pagination.PAGE_NUMBER}</a></li>
|
|
||||||
<!-- ENDIF -->
|
|
||||||
<!-- END pagination -->
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
<!-- ENDIF -->
|
|
||||||
<br />{L_POSTED} {L_POST_BY_AUTHOR} {announcements.center_row.POSTER_FULL} » {announcements.center_row.TIME}
|
|
||||||
<!-- IF announcements.center_row.FORUM_NAME -->
|
|
||||||
<br />{L_FORUM}{L_COLON} <a href="{announcements.center_row.U_VIEWFORUM}" class="portal-forumtitle">{announcements.center_row.FORUM_NAME}</a>
|
|
||||||
<!-- ELSE -->
|
|
||||||
<br />{L_GLOBAL_ANNOUNCEMENT}
|
|
||||||
<!-- ENDIF -->
|
|
||||||
<!-- IF not announcements.S_DISPLAY_ANNOUNCEMENTS_RVS --><!-- IF announcements.center_row.FORUM_NAME -->• <!-- ENDIF -->{L_REPLIES}{L_COLON} <strong>{announcements.center_row.REPLIES}</strong> • {L_VIEWS}{L_COLON} <strong>{announcements.center_row.TOPIC_VIEWS}</strong><!-- ENDIF -->
|
|
||||||
</div>
|
|
||||||
</dt>
|
|
||||||
<!-- IF announcements.S_DISPLAY_ANNOUNCEMENTS_RVS -->
|
|
||||||
<dd class="posts">{announcements.center_row.REPLIES} <dfn>{L_REPLIES}</dfn></dd>
|
|
||||||
<dd class="views">{announcements.center_row.TOPIC_VIEWS} <dfn>{L_VIEWS}</dfn></dd>
|
|
||||||
<!-- ENDIF -->
|
|
||||||
<dd class="lastpost"><span><dfn>{L_LAST_POST}</dfn>{L_POST_BY_AUTHOR} {announcements.center_row.USERNAME_FULL_LAST} <!-- IF announcements.center_row.S_UNREAD_INFO --><a href="{announcements.center_row.U_VIEW_UNREAD}">{NEWEST_POST_IMG}</a><!-- ELSE --><a href="{announcements.center_row.U_LAST_COMMENTS}">{READ_POST_IMG}</a><!-- ENDIF --><br />
|
|
||||||
{announcements.center_row.LAST_POST_TIME}</span>
|
|
||||||
</dd>
|
|
||||||
</dl>
|
|
||||||
</li>
|
|
||||||
<!-- IF announcements.center_row.S_LAST_ROW -->
|
|
||||||
<!-- IF announcements.AP_PAGINATION or announcements.TOTAL_ANNOUNCEMENTS -->
|
|
||||||
<li class="row<!-- IF announcements.center_row.S_ROW_COUNT is even --> bg2<!-- ELSE --> bg1<!-- ENDIF --> portal-news-pagination">
|
|
||||||
<div class="topic-actions">
|
|
||||||
<div class="pagination">
|
|
||||||
{announcements.TOTAL_ANNOUNCEMENTS}
|
|
||||||
<!-- IF announcements.AP_PAGE_NUMBER --><!-- IF announcements.AP_PAGINATION --> • {announcements.AP_PAGE_NUMBER} • {announcements.AP_PAGINATION}<!-- ELSE --> • {announcements.AP_PAGE_NUMBER}<!-- ENDIF --><!-- ENDIF -->
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</li>
|
|
||||||
<!-- ENDIF -->
|
|
||||||
</ul>
|
|
||||||
{$C_BLOCK_F_L}{$C_BLOCK_F_R}
|
|
||||||
<!-- ENDIF -->
|
|
||||||
<!-- ENDIF -->
|
|
||||||
<!-- END center_row -->
|
|
||||||
<!-- ENDIF -->
|
|
||||||
<!-- END announcements -->
|
|
||||||
@@ -1,17 +0,0 @@
|
|||||||
{$C_BLOCK_H_L}{$TITLE}{$C_BLOCK_H_R}
|
|
||||||
<div class="panel bg1 portal-no-margin">
|
|
||||||
<div class="inner">
|
|
||||||
<!-- IF .attach_center -->
|
|
||||||
<span class="portal-title-span"><strong>{L_FILENAME}</strong></span><br />
|
|
||||||
<!-- BEGIN attach_center -->
|
|
||||||
<span class="portal-title-span imageset icon_topic_attach"> </span> <a class="portal-title-link" href="{attach_center.U_TOPIC}" title="{attach_center.REAL_FILENAME}"><strong>{attach_center.FILENAME}</strong></a><br class="portal-clear" />
|
|
||||||
<span class="portal-text-span">{L_FILESIZE}{L_COLON}</span><span class="portal-data-span portal-gensmall"><strong>{attach_center.FILESIZE}</strong></span><br class="portal-clear" />
|
|
||||||
<span class="portal-text-span">{L_DOWNLOADS}{L_COLON}</span><span class="portal-data-span portal-gensmall"><strong>{attach_center.DOWNLOAD_COUNT}</strong></span><br class="portal-clear" />
|
|
||||||
<!-- IF not attach_center.S_LAST_ROW --><hr class="dashed" /><!-- ENDIF -->
|
|
||||||
<!-- END attach_center -->
|
|
||||||
<!-- ELSE -->
|
|
||||||
<span class="portal-title-span portal-gensmall"><strong>{L_NO_ATTACHMENTS}</strong></span><br />
|
|
||||||
<!-- ENDIF -->
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
{$C_BLOCK_F_L}{$C_BLOCK_F_R}
|
|
||||||
@@ -1,17 +0,0 @@
|
|||||||
{$LR_BLOCK_H_L}<!-- IF $S_BLOCK_ICON --><!-- IF $FA_ENABLED -->
|
|
||||||
<i class="icon fa {$FA_ICON}" style="font-size: {$FA_SIZE}px;" aria-hidden="true"></i>
|
|
||||||
<!-- ELSE -->
|
|
||||||
<img src="{$IMAGE_SRC}" width="{$IMAGE_WIDTH}" height="{$IMAGE_HEIGHT}" alt="" />
|
|
||||||
<!-- ENDIF --><!-- ENDIF -->{$TITLE}{$LR_BLOCK_H_R}
|
|
||||||
<!-- IF .attach_side -->
|
|
||||||
<span class="portal-title-span"><strong>{L_FILENAME}</strong></span><br />
|
|
||||||
<!-- BEGIN attach_side -->
|
|
||||||
<span class="portal-title-span portal-gensmall imageset icon_topic_attach"> </span> <a class="portal-title-link" href="{attach_side.U_TOPIC}" title="{attach_side.REAL_FILENAME}"><strong>{attach_side.FILENAME}</strong></a><br class="portal-clear" />
|
|
||||||
<span class="portal-text-span">{L_FILESIZE}{L_COLON}</span><span class="portal-data-span portal-gensmall"><strong>{attach_side.FILESIZE}</strong></span><br class="portal-clear" />
|
|
||||||
<span class="portal-text-span">{L_DOWNLOADS}{L_COLON}</span><span class="portal-data-span portal-gensmall"><strong>{attach_side.DOWNLOAD_COUNT}</strong></span><br class="portal-clear" />
|
|
||||||
<!-- IF not attach_side.S_LAST_ROW --><hr class="dashed" /><!-- ENDIF -->
|
|
||||||
<!-- END attach_side -->
|
|
||||||
<!-- ELSE -->
|
|
||||||
<span class="portal-title-span portal-gensmall"><strong>{L_NO_ATTACHMENTS}</strong></span><br />
|
|
||||||
<!-- ENDIF -->
|
|
||||||
{$LR_BLOCK_F_L}{$LR_BLOCK_F_R}
|
|
||||||
@@ -1,38 +0,0 @@
|
|||||||
{$LR_BLOCK_H_L}<!-- IF $S_BLOCK_ICON --><!-- IF $FA_ENABLED -->
|
|
||||||
<i class="icon fa {$FA_ICON}" style="font-size: {$FA_SIZE}px;" aria-hidden="true"></i>
|
|
||||||
<!-- ELSE -->
|
|
||||||
<img src="{$IMAGE_SRC}" width="{$IMAGE_WIDTH}" height="{$IMAGE_HEIGHT}" alt="" />
|
|
||||||
<!-- ENDIF --><!-- ENDIF -->{$TITLE}{$LR_BLOCK_H_R}
|
|
||||||
<!-- IF BIRTHDAY_LIST -->
|
|
||||||
<strong>{L_CONGRATULATIONS}{L_COLON}</strong><br />
|
|
||||||
<!-- BEGIN board3_birthday_list -->
|
|
||||||
<span class="portal-user-icon"></span>
|
|
||||||
<span class="portal-user-span">
|
|
||||||
{board3_birthday_list.USER}
|
|
||||||
</span>
|
|
||||||
<span class="portal-user-annotation">
|
|
||||||
<!-- IF board3_birthday_list.AGE -->{board3_birthday_list.AGE}<!-- ENDIF -->
|
|
||||||
</span><br class="portal-clear" />
|
|
||||||
<!-- END board3_birthday_list -->
|
|
||||||
<!-- ELSE -->
|
|
||||||
{L_NO_BIRTHDAYS}
|
|
||||||
<!-- ENDIF -->
|
|
||||||
<!-- IF S_DISPLAY_BIRTHDAY_AHEAD_LIST -->
|
|
||||||
<hr class="dashed" />
|
|
||||||
<strong>{L_BIRTHDAYS_AHEAD}</strong>
|
|
||||||
<br />
|
|
||||||
<!-- IF BIRTHDAYS_AHEAD_LIST -->
|
|
||||||
<!-- BEGIN board3_birthday_ahead_list -->
|
|
||||||
<span class="portal-user-icon"></span>
|
|
||||||
<span class="portal-user-span">
|
|
||||||
<span title="{board3_birthday_ahead_list.DATE}">{board3_birthday_ahead_list.USER}</span>
|
|
||||||
</span>
|
|
||||||
<span class="portal-user-annotation">
|
|
||||||
<!-- IF board3_birthday_ahead_list.AGE -->{board3_birthday_ahead_list.AGE}<!-- ENDIF -->
|
|
||||||
</span><br class="portal-clear" />
|
|
||||||
<!-- END board3_birthday_ahead_list -->
|
|
||||||
<!-- ELSE -->
|
|
||||||
{L_NO_BIRTHDAYS_AHEAD}
|
|
||||||
<!-- ENDIF -->
|
|
||||||
<!-- ENDIF -->
|
|
||||||
{$LR_BLOCK_F_L}{$LR_BLOCK_F_R}
|
|
||||||
@@ -1,92 +0,0 @@
|
|||||||
<!-- BEGIN minical -->
|
|
||||||
<!-- IF minical.MODULE_ID eq $MODULE_ID -->
|
|
||||||
<a id="minical{minical.MODULE_ID}"></a>
|
|
||||||
{$LR_BLOCK_H_L}<!-- IF $S_BLOCK_ICON --><!-- IF $FA_ENABLED -->
|
|
||||||
<i class="icon fa {$FA_ICON}" style="font-size: {$FA_SIZE}px;" aria-hidden="true"></i>
|
|
||||||
<!-- ELSE -->
|
|
||||||
<img src="{$IMAGE_SRC}" width="{$IMAGE_WIDTH}" height="{$IMAGE_HEIGHT}" alt="" />
|
|
||||||
<!-- ENDIF --><!-- ENDIF -->{$TITLE}{$LR_BLOCK_H_R}
|
|
||||||
<table class="portal-module-postbody">
|
|
||||||
<tr>
|
|
||||||
<td class="portal-calendar-go-previous" colspan="2"><!-- IF S_CONTENT_DIRECTION eq 'rtl' -->{minical.U_NEXT_MONTH}<!-- ELSE -->{minical.U_PREV_MONTH}<!-- ENDIF --></td>
|
|
||||||
<td colspan="3" class="portal-calendar-current-month"><span class="genmed">{minical.L_MINI_CAL_MONTH}</span></td>
|
|
||||||
<td class="portal-calendar-go-next" colspan="2"><!-- IF S_CONTENT_DIRECTION eq 'rtl' -->{minical.U_PREV_MONTH}<!-- ELSE -->{minical.U_NEXT_MONTH}<!-- ENDIF --></td>
|
|
||||||
</tr>
|
|
||||||
<tr class="portal-calendar-days-title">
|
|
||||||
<!-- IF minical.S_SUNDAY_FIRST -->
|
|
||||||
<td><span class="gensmall">{minical.L_MINI_CAL_SUN}</span></td>
|
|
||||||
<!-- ENDIF -->
|
|
||||||
<td><span class="gensmall">{minical.L_MINI_CAL_MON}</span></td>
|
|
||||||
<td><span class="gensmall">{minical.L_MINI_CAL_TUE}</span></td>
|
|
||||||
<td><span class="gensmall">{minical.L_MINI_CAL_WED}</span></td>
|
|
||||||
<td><span class="gensmall">{minical.L_MINI_CAL_THU}</span></td>
|
|
||||||
<td><span class="gensmall">{minical.L_MINI_CAL_FRI}</span></td>
|
|
||||||
<td><span class="gensmall">{minical.L_MINI_CAL_SAT}</span></td>
|
|
||||||
<!-- IF not minical.S_SUNDAY_FIRST -->
|
|
||||||
<td><span class="gensmall">{minical.L_MINI_CAL_SUN}</span></td>
|
|
||||||
<!-- ENDIF -->
|
|
||||||
</tr>
|
|
||||||
<!-- BEGIN mini_cal_row -->
|
|
||||||
<!-- IF minical.mini_cal_row.MODULE_ID eq $MODULE_ID -->
|
|
||||||
<tr class="portal-calendar-days">
|
|
||||||
<!-- BEGIN mini_cal_days -->
|
|
||||||
<td><span class="gensmall">{minical.mini_cal_row.mini_cal_days.MINI_CAL_DAY}</span></td>
|
|
||||||
<!-- END mini_cal_days -->
|
|
||||||
</tr>
|
|
||||||
<!-- ENDIF -->
|
|
||||||
<!-- END mini_cal_row -->
|
|
||||||
</table>
|
|
||||||
<!-- IF minical.S_DISPLAY_EVENTS -->
|
|
||||||
<hr class="dashed" />
|
|
||||||
<div class="menutitle portal-calendar-events-heading">{L_CURRENT_EVENTS}{L_COLON}</div>
|
|
||||||
<ul class="portal-events">
|
|
||||||
<!-- BEGIN cur_events -->
|
|
||||||
|
|
||||||
<li class="row">
|
|
||||||
<dl class="icon">
|
|
||||||
<dt class="portal-calendar-event-listing">
|
|
||||||
<!-- IF minical.cur_events.EVENT_URL --><a href="{minical.cur_events.EVENT_URL}" title="{minical.cur_events.EVENT_TITLE}" <!-- IF minical.cur_events.EVENT_URL_NEW_WINDOW -->onclick="window.open('{minical.cur_events.EVENT_URL}'); return false;"<!-- ENDIF -->><!-- ENDIF -->
|
|
||||||
<span class="portal-calendar-event-title">{minical.cur_events.EVENT_TITLE}{L_COLON}</span><br />
|
|
||||||
<!-- IF minical.cur_events.ALL_DAY -->{L_EVENT_START}{L_COLON} {minical.cur_events.START_TIME}<br />{L_EVENT_ALL_DAY}<br />
|
|
||||||
<!-- ELSEIF not minical.cur_events.ALL_DAY and minical.cur_events.END_TIME -->{L_EVENT_START}{L_COLON} {minical.cur_events.START_TIME}<br />{L_EVENT_END}{L_COLON} {minical.cur_events.END_TIME}<br />
|
|
||||||
<!-- ELSE -->{L_EVENT_ALL_DAY}<br />
|
|
||||||
<!-- ENDIF -->
|
|
||||||
<!-- IF minical.cur_events.EVENT_DESC --><span class="portal-calendar-event-description">{minical.cur_events.EVENT_DESC}</span><!-- ENDIF -->
|
|
||||||
<!-- IF minical.cur_events.EVENT_URL --></a><!-- ENDIF -->
|
|
||||||
</dt>
|
|
||||||
</dl>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<!-- BEGINELSE -->
|
|
||||||
<li class="calendar-info"><span class="gensmall portal-title-span"><strong>{L_NO_CUR_EVENTS}</strong></span><br /></li>
|
|
||||||
<!-- END cur_events -->
|
|
||||||
</ul>
|
|
||||||
<hr class="portal-calendar-divider" />
|
|
||||||
<div class="menutitle portal-calendar-events-heading">{L_UPCOMING_EVENTS}{L_COLON}</div>
|
|
||||||
<ul class="portal-events">
|
|
||||||
<!-- BEGIN upcoming_events -->
|
|
||||||
|
|
||||||
<li class="row">
|
|
||||||
<dl class="icon">
|
|
||||||
<dt class="portal-calendar-event-listing">
|
|
||||||
<!-- IF minical.upcoming_events.EVENT_URL --><a href="{minical.upcoming_events.EVENT_URL}" title="{minical.upcoming_events.EVENT_TITLE}" <!-- IF minical.upcoming_events.EVENT_URL_NEW_WINDOW -->onclick="window.open('{minical.upcoming_events.EVENT_URL}'); return false;"<!-- ENDIF -->><!-- ENDIF -->
|
|
||||||
<span class="portal-calendar-event-title">{minical.upcoming_events.EVENT_TITLE}{L_COLON}</span><br />
|
|
||||||
<!-- IF not minical.upcoming_events.ALL_DAY and not minical.upcoming_events.END_TIME -->{L_EVENT_TIME}{L_COLON} {minical.upcoming_events.START_TIME}<br />
|
|
||||||
<!-- ELSEIF not minical.upcoming_events.ALL_DAY and minical.upcoming_events.END_TIME -->{L_EVENT_START}{L_COLON} {minical.upcoming_events.START_TIME}<br />{L_EVENT_END}{L_COLON} {minical.upcoming_events.END_TIME}<br />
|
|
||||||
<!-- ELSE -->{L_EVENT_TIME}{L_COLON} {minical.upcoming_events.START_TIME}<br />{L_EVENT_ALL_DAY}<br />
|
|
||||||
<!-- ENDIF -->
|
|
||||||
<!-- IF minical.upcoming_events.EVENT_DESC --><span class="portal-calendar-event-description">{minical.upcoming_events.EVENT_DESC}</span><br /><!-- ENDIF -->
|
|
||||||
<!-- IF minical.upcoming_events.EVENT_URL --></a><!-- ENDIF -->
|
|
||||||
</dt>
|
|
||||||
</dl>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<!-- BEGINELSE -->
|
|
||||||
<li class="calendar-info"><span class="gensmall portal-title-span"><strong>{L_NO_UPCOMING_EVENTS}</strong></span><br /></li>
|
|
||||||
<!-- END upcoming_events -->
|
|
||||||
</ul>
|
|
||||||
<br />
|
|
||||||
<!-- ENDIF -->
|
|
||||||
{$LR_BLOCK_F_L}{$LR_BLOCK_F_R}
|
|
||||||
<!-- ENDIF -->
|
|
||||||
<!-- END minical -->
|
|
||||||
@@ -1,46 +0,0 @@
|
|||||||
{$LR_BLOCK_H_L}<!-- IF $S_BLOCK_ICON --><!-- IF $FA_ENABLED -->
|
|
||||||
<i class="icon fa {$FA_ICON}" style="font-size: {$FA_SIZE}px;" aria-hidden="true"></i>
|
|
||||||
<!-- ELSE -->
|
|
||||||
<img src="{$IMAGE_SRC}" width="{$IMAGE_WIDTH}" height="{$IMAGE_HEIGHT}" alt="" />
|
|
||||||
<!-- ENDIF --><!-- ENDIF -->{$TITLE}{$LR_BLOCK_H_R}
|
|
||||||
<!-- IF not B3P_CLOCK_SRC -->
|
|
||||||
<div class="portal-clock-wrapper">
|
|
||||||
<div class="portal-clock">
|
|
||||||
<div class="portal-clock-back">
|
|
||||||
<div class="portal-clock-back-upper">
|
|
||||||
<div class="portal-clock-spacer-up"></div><div class="portal-clock-back-hours-up"></div>
|
|
||||||
<div class="portal-clock-back-minutes-up-left" ></div><div class="portal-clock-back-minutes-up-right"></div>
|
|
||||||
<div class="portal-clock-back-seconds-up-left"></div><div class="portal-clock-back-seconds-up-right"></div>
|
|
||||||
</div>
|
|
||||||
<div class="portal-clock-back-lower">
|
|
||||||
<div class="portal-clock-spacer-down"></div><div class="portal-clock-back-hours-down"></div>
|
|
||||||
<div class="portal-clock-back-minutes-down-left"></div><div class="portal-clock-back-minutes-down-right"></div>
|
|
||||||
<div class="portal-clock-back-seconds-down-left"></div><div class="portal-clock-back-seconds-down-right"></div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="portal-clock-front">
|
|
||||||
<div class="portal-clock-front-upper">
|
|
||||||
<div class="portal-clock-spacer-up"></div><div class="portal-clock-front-hours-up"></div>
|
|
||||||
<div class="portal-clock-front-minutes-up-left"></div><div class="portal-clock-front-minutes-up-right"></div>
|
|
||||||
<div class="portal-clock-front-seconds-up-left"></div><div class="portal-clock-front-seconds-up-right"></div>
|
|
||||||
</div>
|
|
||||||
<div class="portal-clock-front-lower">
|
|
||||||
<div class="portal-clock-spacer-down"></div><div class="portal-clock-front-hours-down"></div>
|
|
||||||
<div class="portal-clock-front-minutes-down-left"></div><div class="portal-clock-front-minutes-down-right"></div>
|
|
||||||
<div class="portal-clock-front-seconds-down-left"></div><div class="portal-clock-front-seconds-down-right"></div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<!-- INCLUDEJS portal/assets/jquery_easing_1_3.js -->
|
|
||||||
<!-- INCLUDEJS portal/assets/portal_clock.js -->
|
|
||||||
<!-- ELSE -->
|
|
||||||
<div style="text-align: center;">
|
|
||||||
<br />
|
|
||||||
<object type="application/x-shockwave-flash" data="{T_THEME_PATH}/images/portal/{B3P_CLOCK_SRC}" width="140">
|
|
||||||
<param name="wmode" value="transparent" />
|
|
||||||
<param name="movie" value="{T_THEME_PATH}/images/portal/{B3P_CLOCK_SRC}" />
|
|
||||||
</object>
|
|
||||||
</div>
|
|
||||||
<!-- ENDIF -->
|
|
||||||
{$LR_BLOCK_F_L}{$LR_BLOCK_F_R}
|
|
||||||
@@ -1,9 +0,0 @@
|
|||||||
{$C_BLOCK_H_L}{$TITLE}{$C_BLOCK_H_R}
|
|
||||||
<div class="panel bg1 portal-no-margin">
|
|
||||||
<div class="inner">
|
|
||||||
<div class="postbody portal-module-postbody">
|
|
||||||
<div class="content portal-module-content">{$CUSTOM_CODE}</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
{$C_BLOCK_F_L}{$C_BLOCK_F_R}
|
|
||||||
@@ -1,11 +0,0 @@
|
|||||||
{$LR_BLOCK_H_L}<!-- IF $S_BLOCK_ICON --><!-- IF $FA_ENABLED -->
|
|
||||||
<i class="icon fa {$FA_ICON}" style="font-size: {$FA_SIZE}px;" aria-hidden="true"></i>
|
|
||||||
<!-- ELSE -->
|
|
||||||
<img src="{$IMAGE_SRC}" width="{$IMAGE_WIDTH}" height="{$IMAGE_HEIGHT}" alt="" />
|
|
||||||
<!-- ENDIF --><!-- ENDIF -->{$TITLE}{$LR_BLOCK_H_R}
|
|
||||||
<div class="inner">
|
|
||||||
<div class="postbody portal-module-postbody">
|
|
||||||
<div class="content portal-module-content">{$CUSTOM_CODE}</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
{$LR_BLOCK_F_L}{$LR_BLOCK_F_R}
|
|
||||||
@@ -1,51 +0,0 @@
|
|||||||
{$C_BLOCK_H_L}{$TITLE}{$C_BLOCK_H_R}
|
|
||||||
<ul class="topiclist bg1">
|
|
||||||
<li><dl><dt></dt>
|
|
||||||
<dd class="portal-donation-center-content portal-responsive-show">
|
|
||||||
<div>
|
|
||||||
<strong>{SITENAME}</strong> {L_DONATION_TEXT}
|
|
||||||
<br />
|
|
||||||
<div class="portal-paypal-icon"> </div>
|
|
||||||
<form action="https://www.paypal.com/cgi-bin/webscr" method="post" class="portal-donation-form">
|
|
||||||
<div>
|
|
||||||
<input type="hidden" name="cmd" value="_xclick" />
|
|
||||||
<input type="hidden" name="business" value="{PAY_ACC_CENTER}" />
|
|
||||||
<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" />
|
|
||||||
<!-- IF PAY_CUSTOM_CENTER -->
|
|
||||||
<input type="hidden" name="custom" value="{PAY_CUSTOM_CENTER}" />
|
|
||||||
<!-- ENDIF -->
|
|
||||||
<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" />
|
|
||||||
</div>
|
|
||||||
</form>
|
|
||||||
<br />
|
|
||||||
<strong>{L_PAY_MSG}</strong>
|
|
||||||
</div>
|
|
||||||
</dd>
|
|
||||||
</dl></li>
|
|
||||||
</ul>
|
|
||||||
{$C_BLOCK_F_L}{$C_BLOCK_F_R}
|
|
||||||
@@ -1,42 +0,0 @@
|
|||||||
{$LR_BLOCK_H_L}<!-- IF $S_BLOCK_ICON --><!-- IF $FA_ENABLED -->
|
|
||||||
<i class="icon fa {$FA_ICON}" style="font-size: {$FA_SIZE}px;" aria-hidden="true"></i>
|
|
||||||
<!-- ELSE -->
|
|
||||||
<img src="{$IMAGE_SRC}" width="{$IMAGE_WIDTH}" height="{$IMAGE_HEIGHT}" alt="" />
|
|
||||||
<!-- ENDIF --><!-- ENDIF -->{$TITLE}{$LR_BLOCK_H_R}
|
|
||||||
<div class="portal-centered-content">
|
|
||||||
<form action="https://www.paypal.com/cgi-bin/webscr" method="post">
|
|
||||||
<div>
|
|
||||||
<input type="hidden" name="cmd" value="_xclick" />
|
|
||||||
<input type="hidden" name="business" value="{PAY_ACC_SIDE}" />
|
|
||||||
<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" />
|
|
||||||
<!-- IF PAY_CUSTOM_SIDE -->
|
|
||||||
<input type="hidden" name="custom" value="{PAY_CUSTOM_SIDE}">
|
|
||||||
<!-- ENDIF -->
|
|
||||||
<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" />
|
|
||||||
</div>
|
|
||||||
</form>
|
|
||||||
</div>
|
|
||||||
{$LR_BLOCK_F_L}{$LR_BLOCK_F_R}
|
|
||||||
@@ -1,12 +0,0 @@
|
|||||||
<!-- IF S_DISPLAY_SEARCH or (S_USER_LOGGED_IN and not S_IS_BOT) -->
|
|
||||||
<ul class="linklist">
|
|
||||||
<!-- IF S_DISPLAY_SEARCH -->
|
|
||||||
<li><a href="{U_SEARCH_UNANSWERED}">{L_SEARCH_UNANSWERED}</a><!-- IF S_USER_LOGGED_IN --> • <a href="{U_SEARCH_UNREAD}">{L_SEARCH_UNREAD}</a> • <a href="{U_SEARCH_NEW}">{L_SEARCH_NEW}</a><!-- ENDIF --> • <a href="{U_SEARCH_ACTIVE_TOPICS}">{L_SEARCH_ACTIVE_TOPICS}</a></li>
|
|
||||||
<!-- ENDIF -->
|
|
||||||
<!-- IF not S_IS_BOT and U_MARK_FORUMS --><li class="rightside"><a href="{U_MARK_FORUMS}" accesskey="m">{L_MARK_FORUMS_READ}</a></li><!-- ENDIF -->
|
|
||||||
</ul>
|
|
||||||
<!-- ENDIF -->
|
|
||||||
<div id="portal-forumlist">
|
|
||||||
<!-- INCLUDE forumlist_body.html -->
|
|
||||||
</div>
|
|
||||||
<br />
|
|
||||||
@@ -1,29 +0,0 @@
|
|||||||
{$LR_BLOCK_H_L}<!-- IF $S_BLOCK_ICON --><!-- IF $FA_ENABLED -->
|
|
||||||
<i class="icon fa {$FA_ICON}" style="font-size: {$FA_SIZE}px;" aria-hidden="true"></i>
|
|
||||||
<!-- ELSE -->
|
|
||||||
<img src="{$IMAGE_SRC}" width="{$IMAGE_WIDTH}" height="{$IMAGE_HEIGHT}" alt="" />
|
|
||||||
<!-- ENDIF --><!-- ENDIF -->{$TITLE}{$LR_BLOCK_H_R}
|
|
||||||
<strong style="color:green<!-- IF S_CONTENT_DIRECTION eq 'rtl' -->; float: right;<!-- ENDIF -->">{L_FRIENDS_ONLINE}</strong><br />
|
|
||||||
<!-- BEGIN b3p_friends_online -->
|
|
||||||
<!-- IF $FA_ENABLED -->
|
|
||||||
<span class="portal-user-span"><i class="icon fa fa-user"></i> {b3p_friends_online.USERNAME_FULL}</span><br class="portal-clear" />
|
|
||||||
<!-- ELSE -->
|
|
||||||
<span class="portal-user-icon"></span><span class="portal-user-span">{b3p_friends_online.USERNAME_FULL}</span><br class="portal-clear" />
|
|
||||||
<!-- ENDIF -->
|
|
||||||
<!-- BEGINELSE -->
|
|
||||||
<span class="portal-user-span">{L_NO_FRIENDS_ONLINE}</span>
|
|
||||||
<br class="portal-clear" />
|
|
||||||
<!-- END b3p_friends_online -->
|
|
||||||
<br class="portal-clear" />
|
|
||||||
<strong style="color:red<!-- IF S_CONTENT_DIRECTION eq 'rtl' -->; float: right;<!-- ENDIF -->">{L_FRIENDS_OFFLINE}</strong><br />
|
|
||||||
<!-- BEGIN b3p_friends_offline -->
|
|
||||||
<!-- IF $FA_ENABLED -->
|
|
||||||
<span class="portal-user-span"><i class="icon fa fa-user"></i> {b3p_friends_offline.USERNAME_FULL}</span><br class="portal-clear" />
|
|
||||||
<!-- ELSE -->
|
|
||||||
<span class="portal-user-icon"></span><span class="portal-user-span">{b3p_friends_offline.USERNAME_FULL}</span><br class="portal-clear" />
|
|
||||||
<!-- ENDIF -->
|
|
||||||
<!-- BEGINELSE -->
|
|
||||||
<span class="portal-user-span">{L_NO_FRIENDS_OFFLINE}</span>
|
|
||||||
<!-- END b3p_friends_offline -->
|
|
||||||
<br />
|
|
||||||
{$LR_BLOCK_F_L}{$LR_BLOCK_F_R}
|
|
||||||
@@ -1,7 +0,0 @@
|
|||||||
<html>
|
|
||||||
<head>
|
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-9">
|
|
||||||
</head>
|
|
||||||
<body bgcolor="#FFFFFF" text="#000000">
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
@@ -1,20 +0,0 @@
|
|||||||
<!-- IF S_DISPLAY_JUMPBOX -->
|
|
||||||
<form method="post" id="jumpbox" action="{S_JUMPBOX_ACTION}" onsubmit="if(document.jumpbox.f.value == -1){return false;}">
|
|
||||||
|
|
||||||
<!-- IF $CUSTOM_FIELDSET_CLASS -->
|
|
||||||
<fieldset class="{$CUSTOM_FIELDSET_CLASS}">
|
|
||||||
<!-- ELSE -->
|
|
||||||
<fieldset class="jumpbox">
|
|
||||||
<!-- ENDIF -->
|
|
||||||
<label for="f" accesskey="j"><!-- IF S_IN_MCP and S_MERGE_SELECT -->{L_SELECT_TOPICS_FROM}<!-- ELSEIF S_IN_MCP -->{L_MODERATE_FORUM}<!-- ELSE -->{L_JUMP_TO}<!-- ENDIF -->:</label>
|
|
||||||
<select name="f" id="f" onchange="if(this.options[this.selectedIndex].value != -1){ document.forms['jumpbox'].submit() }">
|
|
||||||
<!-- BEGIN jumpbox_forums -->
|
|
||||||
<!-- IF jumpbox_forums.S_FORUM_COUNT == 1 --><option value="-1">------------------</option><!-- ENDIF -->
|
|
||||||
<option value="{jumpbox_forums.FORUM_ID}"{jumpbox_forums.SELECTED}><!-- BEGIN level --> <!-- END level -->{jumpbox_forums.FORUM_NAME}</option>
|
|
||||||
<!-- END jumpbox_forums -->
|
|
||||||
</select>
|
|
||||||
<input type="submit" value="{L_GO}" class="button2" />
|
|
||||||
</fieldset>
|
|
||||||
</form>
|
|
||||||
<br />
|
|
||||||
<!-- ENDIF -->
|
|
||||||
@@ -1,10 +0,0 @@
|
|||||||
{$LR_BLOCK_H_L}<!-- IF $S_BLOCK_ICON --><!-- IF $FA_ENABLED -->
|
|
||||||
<i class="icon fa {$FA_ICON}" style="font-size: {$FA_SIZE}px;" aria-hidden="true"></i>
|
|
||||||
<!-- ELSE -->
|
|
||||||
<img src="{$IMAGE_SRC}" width="{$IMAGE_WIDTH}" height="{$IMAGE_HEIGHT}" alt="" />
|
|
||||||
<!-- ENDIF --><!-- ENDIF -->{$TITLE}{$LR_BLOCK_H_R}
|
|
||||||
<!-- 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 -->
|
|
||||||
{$LR_BLOCK_F_L}{$LR_BLOCK_F_R}
|
|
||||||
@@ -1,16 +0,0 @@
|
|||||||
{$LR_BLOCK_H_L}<!-- IF $S_BLOCK_ICON --><!-- IF $FA_ENABLED -->
|
|
||||||
<i class="icon fa {$FA_ICON}" style="font-size: {$FA_SIZE}px;" aria-hidden="true"></i>
|
|
||||||
<!-- ELSE -->
|
|
||||||
<img src="{$IMAGE_SRC}" width="{$IMAGE_WIDTH}" height="{$IMAGE_HEIGHT}" alt="" />
|
|
||||||
<!-- ENDIF --><!-- ENDIF -->{$TITLE}{$LR_BLOCK_H_R}
|
|
||||||
<span class="portal-user-span"><strong>{L_USERNAME}</strong></span>
|
|
||||||
<span class="portal-user-annotation"><strong>{L_JOINED}</strong></span><br class="portal-clear" />
|
|
||||||
<!-- BEGIN latest_members -->
|
|
||||||
<!-- IF $FA_ENABLED -->
|
|
||||||
<span class="portal-user-span"><i class="icon fa fa-user"></i> {latest_members.USERNAME_FULL}</span>
|
|
||||||
<!-- ELSE -->
|
|
||||||
<span class="portal-user-icon"></span><span class="portal-user-span">{latest_members.USERNAME_FULL}</span>
|
|
||||||
<!-- ENDIF -->
|
|
||||||
<span class="portal-user-annotation">{latest_members.JOINED}</span><br class="portal-clear" />
|
|
||||||
<!-- END latest_members -->
|
|
||||||
{$LR_BLOCK_F_L}{$LR_BLOCK_F_R}
|
|
||||||
@@ -1,19 +0,0 @@
|
|||||||
{$LR_BLOCK_H_L}<!-- IF $S_BLOCK_ICON --><!-- IF $FA_ENABLED -->
|
|
||||||
<i class="icon fa {$FA_ICON}" style="font-size: {$FA_SIZE}px;" aria-hidden="true"></i>
|
|
||||||
<!-- ELSE -->
|
|
||||||
<img src="{$IMAGE_SRC}" width="{$IMAGE_WIDTH}" height="{$IMAGE_HEIGHT}" alt="" />
|
|
||||||
<!-- ENDIF --><!-- ENDIF -->{$TITLE}{$LR_BLOCK_H_R}
|
|
||||||
<!-- BEGIN group -->
|
|
||||||
<strong class="portal-user-span"><a href="{group.U_GROUP}" style="color: #{group.GROUP_COLOUR};" class="username-coloured">{group.GROUP_NAME}</a></strong><br class="portal-clear" />
|
|
||||||
<!-- BEGIN member -->
|
|
||||||
<!-- IF $FA_ENABLED -->
|
|
||||||
<span class="portal-user-icon"></span><span class="portal-user-span"><strong><i class="icon fa fa-user"></i> {group.member.USERNAME_FULL}</strong></span><br class="portal-clear" />
|
|
||||||
<!-- ELSE -->
|
|
||||||
<span class="portal-user-icon"></span><span class="portal-user-span"><strong>{group.member.USERNAME_FULL}</strong></span><br class="portal-clear" />
|
|
||||||
<!-- ENDIF -->
|
|
||||||
<!-- END member -->
|
|
||||||
<br class="portal-clear" />
|
|
||||||
<!-- BEGINELSE -->
|
|
||||||
{L_NO_GROUPS_P}
|
|
||||||
<!-- END group -->
|
|
||||||
{$LR_BLOCK_F_L}{$LR_BLOCK_F_R}
|
|
||||||
@@ -1,35 +0,0 @@
|
|||||||
{$LR_BLOCK_H_L}<!-- IF $S_BLOCK_ICON --><!-- IF $FA_ENABLED -->
|
|
||||||
<i class="icon fa {$FA_ICON}" style="font-size: {$FA_SIZE}px;" aria-hidden="true"></i>
|
|
||||||
<!-- ELSE -->
|
|
||||||
<img src="{$IMAGE_SRC}" width="{$IMAGE_WIDTH}" height="{$IMAGE_HEIGHT}" alt="" />
|
|
||||||
<!-- ENDIF --><!-- ENDIF -->{$TITLE}{$LR_BLOCK_H_R}
|
|
||||||
<!-- IF $FA_ENABLED -->
|
|
||||||
<strong class="portal-user-span">{L_ADMINISTRATORS}</strong><br class="portal-clear" />
|
|
||||||
<!-- BEGIN b3p_admins -->
|
|
||||||
<span class="portal-user-span"><strong><i class="icon fa fa-user"></i> {b3p_admins.USERNAME_FULL}</strong></span><br class="portal-clear" />
|
|
||||||
<!-- BEGINELSE -->
|
|
||||||
{L_NO_ADMINISTRATORS_P}<br /><br />
|
|
||||||
<!-- END b3p_admins -->
|
|
||||||
<br class="portal-clear" />
|
|
||||||
<strong class="portal-user-span">{L_MODERATORS}</strong><br class="portal-clear" />
|
|
||||||
<!-- BEGIN b3p_moderators -->
|
|
||||||
<i class="icon fa fa-user"></i><span class="portal-user-span"><strong><i class="icon fa fa-user"></i> {b3p_moderators.USERNAME_FULL}</strong></span><br class="portal-clear" />
|
|
||||||
<!-- BEGINELSE -->
|
|
||||||
{L_NO_MODERATORS_P}
|
|
||||||
<!-- END b3p_moderators -->
|
|
||||||
<!-- ELSE -->
|
|
||||||
<strong class="portal-user-span">{L_ADMINISTRATORS}</strong><br class="portal-clear" />
|
|
||||||
<!-- BEGIN b3p_admins -->
|
|
||||||
<span class="portal-user-icon"></span><span class="portal-user-span"><strong>{b3p_admins.USERNAME_FULL}</strong></span><br class="portal-clear" />
|
|
||||||
<!-- BEGINELSE -->
|
|
||||||
{L_NO_ADMINISTRATORS_P}<br /><br />
|
|
||||||
<!-- END b3p_admins -->
|
|
||||||
<br class="portal-clear" />
|
|
||||||
<strong class="portal-user-span">{L_MODERATORS}</strong><br class="portal-clear" />
|
|
||||||
<!-- BEGIN b3p_moderators -->
|
|
||||||
<span class="portal-user-icon"></span><span class="portal-user-span"><strong>{b3p_moderators.USERNAME_FULL}</strong></span><br class="portal-clear" />
|
|
||||||
<!-- BEGINELSE -->
|
|
||||||
{L_NO_MODERATORS_P}
|
|
||||||
<!-- END b3p_moderators -->
|
|
||||||
<!-- ENDIF -->
|
|
||||||
{$LR_BLOCK_F_L}{$LR_BLOCK_F_R}
|
|
||||||
@@ -1,8 +0,0 @@
|
|||||||
{$LR_BLOCK_H_L}<!-- IF $S_BLOCK_ICON --><!-- IF $FA_ENABLED -->
|
|
||||||
<i class="icon fa {$FA_ICON}" style="font-size: {$FA_SIZE}px;" aria-hidden="true"></i>
|
|
||||||
<!-- ELSE -->
|
|
||||||
<img src="{$IMAGE_SRC}" width="{$IMAGE_WIDTH}" height="{$IMAGE_HEIGHT}" alt="" />
|
|
||||||
<!-- ENDIF --><!-- ENDIF -->{$TITLE}{$LR_BLOCK_H_R}
|
|
||||||
{LINK_US_TXT}<br /><br />
|
|
||||||
<input type="text" tabindex="9" value="{U_LINK_US}" class="inputbox autowidth portal-input" onclick="this.focus();this.select();" readonly="readonly" /><br />
|
|
||||||
{$LR_BLOCK_F_L}{$LR_BLOCK_F_R}
|
|
||||||
@@ -1,23 +0,0 @@
|
|||||||
<!-- BEGIN portal_links -->
|
|
||||||
<!-- IF portal_links.MODULE_ID eq $MODULE_ID -->
|
|
||||||
{$LR_BLOCK_H_L}<!-- IF $S_BLOCK_ICON --><!-- IF $FA_ENABLED -->
|
|
||||||
<i class="icon fa {$FA_ICON}" style="font-size: {$FA_SIZE}px;" aria-hidden="true"></i>
|
|
||||||
<!-- ELSE -->
|
|
||||||
<img src="{$IMAGE_SRC}" width="{$IMAGE_WIDTH}" height="{$IMAGE_HEIGHT}" alt="" />
|
|
||||||
<!-- ENDIF --><!-- ENDIF -->{$TITLE}{$LR_BLOCK_H_R}
|
|
||||||
<div class="portal-navigation">
|
|
||||||
<ul>
|
|
||||||
<!-- BEGIN links -->
|
|
||||||
<!-- IF $FA_ENABLED -->
|
|
||||||
<li><a class="fa-icon" href="{portal_links.links.LINK_URL}" title="{portal_links.links.LINK_TITLE}" <!-- IF portal_links.links.NEW_WINDOW -->onclick="window.open('{portal_links.links.LINK_URL}'); return false;"<!-- ENDIF -->><i class="icon fa fa-arrow-circle-o-right" aria-hidden="true"></i> {portal_links.links.LINK_TITLE}</a></li>
|
|
||||||
<!-- ELSE -->
|
|
||||||
<li><a href="{portal_links.links.LINK_URL}" title="{portal_links.links.LINK_TITLE}" <!-- IF portal_links.links.NEW_WINDOW -->onclick="window.open('{portal_links.links.LINK_URL}'); return false;"<!-- ENDIF -->>{portal_links.links.LINK_TITLE}</a></li>
|
|
||||||
<!-- ENDIF -->
|
|
||||||
<!-- BEGINELSE -->
|
|
||||||
<span class="portal-title-span gensmall"><strong>{L_LINKS_NO_LINKS}</strong></span><br />
|
|
||||||
<!-- END links -->
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
{$LR_BLOCK_F_L}{$LR_BLOCK_F_R}
|
|
||||||
<!-- ENDIF -->
|
|
||||||
<!-- END portal_links -->
|
|
||||||
@@ -1,26 +0,0 @@
|
|||||||
<form action="{S_LOGIN_ACTION}" method="post" id="portal-login-box">
|
|
||||||
<div>
|
|
||||||
{$LR_BLOCK_H_L}<a href="{U_LOGIN_LOGOUT}"><!-- IF $S_BLOCK_ICON --><!-- IF $FA_ENABLED -->
|
|
||||||
<i class="icon fa {$FA_ICON}" style="font-size: {$FA_SIZE}px;" aria-hidden="true"></i>
|
|
||||||
<!-- ELSE -->
|
|
||||||
<img src="{$IMAGE_SRC}" width="{$IMAGE_WIDTH}" height="{$IMAGE_HEIGHT}" alt="" />
|
|
||||||
<!-- ENDIF --><!-- ENDIF -->{$TITLE}</a>{$LR_BLOCK_H_R}
|
|
||||||
<span class="genmed">{L_USERNAME}{L_COLON}</span><br />
|
|
||||||
<input type="text" tabindex="1" name="username" id="username" value="" class="inputbox autowidth portal-input" /><br /><br />
|
|
||||||
<span class="genmed">{L_PASSWORD}{L_COLON}</span><br />
|
|
||||||
<input type="password" tabindex="2" id="password" name="password" class="inputbox autowidth portal-input" />
|
|
||||||
<!-- 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 -->
|
|
||||||
<!-- IF S_SHOW_REGISTER and S_REGISTER_ENABLED -->
|
|
||||||
<br /><a href="{U_REGISTER}">{L_UM_REGISTER_NOW}</a><br />
|
|
||||||
<!-- ENDIF -->
|
|
||||||
<br />
|
|
||||||
<input type="hidden" name="redirect" value="{U_PORTAL_REDIRECT}" />
|
|
||||||
<input type="submit" name="login" tabindex="5" value="{L_LOGIN}" class="button1" />
|
|
||||||
{$LR_BLOCK_F_L}{$LR_BLOCK_F_R}
|
|
||||||
</div>
|
|
||||||
</form>
|
|
||||||
@@ -1,29 +0,0 @@
|
|||||||
<!-- BEGIN portal_menu -->
|
|
||||||
<!-- IF portal_menu.MODULE_ID eq $MODULE_ID -->
|
|
||||||
{$LR_BLOCK_H_L}<!-- IF $S_BLOCK_ICON --><!-- IF $FA_ENABLED -->
|
|
||||||
<i class="icon fa {$FA_ICON}" style="font-size: {$FA_SIZE}px;" aria-hidden="true"></i>
|
|
||||||
<!-- ELSE -->
|
|
||||||
<img src="{$IMAGE_SRC}" width="{$IMAGE_WIDTH}" height="{$IMAGE_HEIGHT}" alt="" />
|
|
||||||
<!-- ENDIF --><!-- ENDIF -->{$TITLE}{$LR_BLOCK_H_R}
|
|
||||||
<div class="portal-navigation">
|
|
||||||
<!-- BEGIN category -->
|
|
||||||
<div class="menutitle">{portal_menu.category.CAT_TITLE}</div>
|
|
||||||
<ul>
|
|
||||||
<!-- BEGIN links -->
|
|
||||||
<!-- IF $FA_ENABLED -->
|
|
||||||
<li><a class="fa-icon" href="{portal_menu.category.links.LINK_URL}" <!-- IF portal_menu.category.links.NEW_WINDOW -->onclick="window.open('{portal_menu.category.links.LINK_URL}'); return false;"<!-- ENDIF -->><i class="icon fa fa-arrow-circle-o-right" aria-hidden="true"></i> {portal_menu.category.links.LINK_TITLE}</a></li>
|
|
||||||
<!-- ELSE -->
|
|
||||||
<li><a href="{portal_menu.category.links.LINK_URL}" <!-- IF portal_menu.category.links.NEW_WINDOW -->onclick="window.open('{portal_menu.category.links.LINK_URL}'); return false;"<!-- ENDIF -->>{portal_menu.category.links.LINK_TITLE}</a></li>
|
|
||||||
<!-- ENDIF -->
|
|
||||||
<!-- END links -->
|
|
||||||
</ul>
|
|
||||||
<hr class="dashed" />
|
|
||||||
<!-- BEGINELSE -->
|
|
||||||
<ul>
|
|
||||||
<span class="portal-title-span gensmall"><strong>{L_MENU_NO_LINKS}</strong></span><br />
|
|
||||||
</ul>
|
|
||||||
<!-- END category -->
|
|
||||||
</div>
|
|
||||||
{$LR_BLOCK_F_L}{$LR_BLOCK_F_R}
|
|
||||||
<!-- ENDIF -->
|
|
||||||
<!-- END portal_menu -->
|
|
||||||
@@ -1,58 +0,0 @@
|
|||||||
{$C_BLOCK_H_L}{$TITLE}{$C_BLOCK_H_R}
|
|
||||||
<!-- IF $S_POSTBODY_TOP --><div class="postbody portal-module-postbody"><!-- ENDIF -->
|
|
||||||
<!-- BEGIN news -->
|
|
||||||
<!-- IF news.MODULE_ID eq $MODULE_ID -->
|
|
||||||
<!-- BEGIN news_row -->
|
|
||||||
<!-- IF news.news_row.S_FIRST_ROW --><a id="n_{$MODULE_ID}"></a><!-- ENDIF -->
|
|
||||||
<!-- IF news.news_row.S_NO_TOPICS -->
|
|
||||||
<div class="post bg2">
|
|
||||||
<div class="inner">
|
|
||||||
<span><strong>{L_NO_NEWS}</strong></span>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<!-- ELSE -->
|
|
||||||
<div class="post <!-- IF news.news_row.S_ROW_COUNT is odd -->bg1<!-- ELSE -->bg2<!-- ENDIF -->">
|
|
||||||
<div class="inner">
|
|
||||||
<h4 class="first"><a id="n_{$MODULE_ID}_{news.news_row.N_ID}"></a><!-- IF news.news_row.S_UNREAD_INFO --><a href="{news.news_row.U_VIEW_UNREAD}">{NEWEST_POST_IMG}</a><!-- ELSE --><a href="{news.news_row.U_LAST_COMMENTS}">{READ_POST_IMG}</a><!-- ENDIF --> {news.news_row.ATTACH_ICON_IMG} <!-- IF news.news_row.S_POLL --><strong>{L_VIEW_TOPIC_POLL}</strong><!-- ENDIF --><!-- IF news.news_row.TOPIC_ICON_IMG --><img src="{T_ICONS_PATH}{news.news_row.TOPIC_ICON_IMG}" width="{news.news_row.TOPIC_ICON_IMG_WIDTH}" height="{news.news_row.TOPIC_ICON_IMG_HEIGHT}" alt="" /> <!-- ENDIF --><a href="{news.news_row.U_VIEW_COMMENTS}"><strong>{news.news_row.TITLE}</strong></a></h4>
|
|
||||||
<!-- IF news.news_row.PAGINATION --><strong class="pagination"><span>{news.news_row.PAGINATION}</span></strong><!-- ENDIF -->
|
|
||||||
<ul class="linklist">
|
|
||||||
<li>{news.POSTED_BY_TEXT} {L_POST_BY_AUTHOR}{L_COLON} {news.news_row.POSTER_FULL} » {news.news_row.TIME}</li>
|
|
||||||
<li class="rightside">{L_FORUM}{L_COLON} <strong><a href="{news.news_row.U_VIEWFORUM}">{news.news_row.FORUM_NAME}</a></strong></li>
|
|
||||||
</ul>
|
|
||||||
<!-- IF not $S_POSTBODY_TOP --><div class="postbody portal-module-postbody"><!-- ENDIF -->
|
|
||||||
<div class="content">
|
|
||||||
<br />{news.news_row.TEXT}
|
|
||||||
</div>
|
|
||||||
<!-- IF news.news_row.S_HAS_ATTACHMENTS -->
|
|
||||||
<dl class="attachbox">
|
|
||||||
<dt>{L_ATTACHMENTS}</dt>
|
|
||||||
<!-- BEGIN attachment -->
|
|
||||||
<dd>{news.news_row.attachment.DISPLAY_ATTACHMENT}</dd>
|
|
||||||
<!-- END attachment -->
|
|
||||||
</dl>
|
|
||||||
<!-- ENDIF -->
|
|
||||||
<br class="portal-clear" />
|
|
||||||
<span class="portal-title-span">{L_TOPIC_VIEWS}{L_COLON} {news.news_row.TOPIC_VIEWS} • <a href="{news.news_row.U_VIEW_COMMENTS}" title="{L_VIEW_COMMENTS}">{L_COMMENTS}{L_COLON} {news.news_row.REPLIES}</a> • <a href="{news.news_row.U_POST_COMMENT}">{L_PORTAL_POST_REPLY}</a></span>
|
|
||||||
<span class="portal-read-all-link">{news.news_row.OPEN}<a href="{news.news_row.U_READ_FULL}">{news.news_row.L_READ_FULL}</a>{news.news_row.CLOSE}</span>
|
|
||||||
<div class="back2top"><a href="#wrap" class="top" title="{L_BACK_TO_TOP}">{L_BACK_TO_TOP}</a></div>
|
|
||||||
<!-- IF news.news_row.S_NOT_LAST --><br class="portal-clear" /><!-- ENDIF -->
|
|
||||||
<!-- IF news.news_row.S_LAST_ROW -->
|
|
||||||
<!-- IF not news.news_row.S_NO_TOPICS -->
|
|
||||||
<!-- IF news.NP_PAGINATION or news.TOTAL_NEWS -->
|
|
||||||
<hr class="dashed" />
|
|
||||||
<div class="pagination">
|
|
||||||
{news.TOTAL_NEWS}
|
|
||||||
<!-- IF news.NP_PAGE_NUMBER --><!-- IF news.NP_PAGINATION --> • {news.NP_PAGE_NUMBER} • {news.NP_PAGINATION}<!-- ELSE --> • {news.NP_PAGE_NUMBER}<!-- ENDIF --><!-- ENDIF -->
|
|
||||||
</div>
|
|
||||||
<!-- ENDIF -->
|
|
||||||
<!-- ENDIF -->
|
|
||||||
<!-- ENDIF -->
|
|
||||||
<!-- IF not $S_POSTBODY_TOP --></div><!-- ENDIF -->
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<!-- ENDIF -->
|
|
||||||
<!-- END news_row -->
|
|
||||||
<!-- ENDIF -->
|
|
||||||
<!-- END news -->
|
|
||||||
<!-- IF $S_POSTBODY_TOP --></div><!-- ENDIF -->
|
|
||||||
{$C_BLOCK_F_L}{$C_BLOCK_F_R}
|
|
||||||
@@ -1,80 +0,0 @@
|
|||||||
<!-- BEGIN news -->
|
|
||||||
<!-- IF news.MODULE_ID eq $MODULE_ID -->
|
|
||||||
<!-- BEGIN news_row -->
|
|
||||||
<!-- IF news.news_row.S_NO_TOPICS -->
|
|
||||||
{$C_BLOCK_H_L}{$TITLE}{$C_BLOCK_H_R}
|
|
||||||
<div class="post bg2 portal-no-margin">
|
|
||||||
<div class="inner">
|
|
||||||
<span><strong>{L_NO_NEWS}</strong></span>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
{$C_BLOCK_F_L}{$C_BLOCK_F_R}
|
|
||||||
<!-- ELSE -->
|
|
||||||
<!-- IF news.news_row.S_FIRST_ROW -->
|
|
||||||
{$CC_BLOCK_H_L}
|
|
||||||
<dt id="n_{$MODULE_ID}">{$TITLE}</dt>
|
|
||||||
<!-- IF news.S_DISPLAY_NEWS_RVS -->
|
|
||||||
<dd class="posts responsive-portal-news">{L_REPLIES}</dd>
|
|
||||||
<dd class="views responsive-portal-news">{L_VIEWS}</dd>
|
|
||||||
<!-- ENDIF -->
|
|
||||||
<dd class="lastpost responsive-portal-news"><span>{L_LAST_POST}</span></dd>
|
|
||||||
{$CC_BLOCK_H_R}
|
|
||||||
<ul class="topiclist topics responsive-portal-news">
|
|
||||||
<!-- ENDIF -->
|
|
||||||
<li class="row<!-- IF news.news_row.S_ROW_COUNT is even --> bg1<!-- ELSE --> bg2<!-- ENDIF -->">
|
|
||||||
<dl class="icon {news.news_row.TOPIC_IMG_STYLE}">
|
|
||||||
<dt <!-- IF news.news_row.TOPIC_ICON_IMG -->style="background-image: url({T_ICONS_PATH}{news.news_row.TOPIC_ICON_IMG}); background-repeat: no-repeat;"<!-- ENDIF --> title="{news.news_row.TOPIC_FOLDER_IMG_ALT}">
|
|
||||||
<!-- IF news.news_row.S_UNREAD_TOPIC -->
|
|
||||||
<a href="{news.news_row.U_NEWEST_POST}">{NEWEST_POST_IMG}</a>
|
|
||||||
<!-- ENDIF -->
|
|
||||||
<div class="list-inner">
|
|
||||||
<!-- IF news.news_row.ATTACH_ICON_IMG -->{news.news_row.ATTACH_ICON_IMG} <!-- ENDIF -->
|
|
||||||
<a href="{news.news_row.U_VIEW_COMMENTS}" title="{news.news_row.TITLE}" class="topictitle">{news.news_row.TITLE}</a><!-- IF U_VIEW_UNREAD_POST and not S_IS_BOT --> • <a href="{U_VIEW_UNREAD_POST}">{L_VIEW_UNREAD_POST}</a> • <!-- ENDIF -->
|
|
||||||
<!-- IF news.news_row.pagination -->
|
|
||||||
<div class="pagination">
|
|
||||||
<ul>
|
|
||||||
<!-- BEGIN pagination -->
|
|
||||||
<!-- IF news.news_row.pagination.S_IS_PREV -->
|
|
||||||
<!-- ELSEIF news.news_row.pagination.S_IS_CURRENT --><li><a href="{news.news_row.pagination.PAGE_URL}">{news.news_row.pagination.PAGE_NUMBER}</a></li>
|
|
||||||
<!-- ELSEIF news.news_row.pagination.S_IS_ELLIPSIS --><li class="ellipsis"><span>{L_ELLIPSIS}</span></li>
|
|
||||||
<!-- ELSEIF news.news_row.pagination.S_IS_NEXT -->
|
|
||||||
<!-- ELSE --><li><a href="{news.news_row.pagination.PAGE_URL}">{news.news_row.pagination.PAGE_NUMBER}</a></li>
|
|
||||||
<!-- ENDIF -->
|
|
||||||
<!-- END pagination -->
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
<!-- ENDIF -->
|
|
||||||
<br />{L_POSTED} {L_POST_BY_AUTHOR} {news.news_row.POSTER_FULL} » {news.news_row.TIME}
|
|
||||||
<!-- IF news.news_row.FORUM_NAME -->
|
|
||||||
<br />{L_FORUM}{L_COLON} <a href="{news.news_row.U_VIEWFORUM}" class="portal-forumtitle">{news.news_row.FORUM_NAME}</a>
|
|
||||||
<!-- ENDIF -->
|
|
||||||
<!-- IF not news.S_DISPLAY_NEWS_RVS --><!-- IF news.news_row.FORUM_NAME -->• <!-- ENDIF -->{L_REPLIES}{L_COLON} <strong>{news.news_row.REPLIES}</strong> • {L_VIEWS}{L_COLON} <strong>{news.news_row.TOPIC_VIEWS}</strong><!-- ENDIF -->
|
|
||||||
</div> <!-- \END <div class="list-inner"> -->
|
|
||||||
</dt>
|
|
||||||
<!-- IF news.S_DISPLAY_NEWS_RVS -->
|
|
||||||
<dd class="posts" data-skip-responsive="true">{news.news_row.REPLIES} <dfn>{L_REPLIES}</dfn></dd>
|
|
||||||
<dd class="views" data-skip-responsive="true">{news.news_row.TOPIC_VIEWS} <dfn>{L_VIEWS}</dfn></dd>
|
|
||||||
<!-- ENDIF -->
|
|
||||||
<dd class="lastpost"><span><dfn>{L_LAST_POST}</dfn>{L_POST_BY_AUTHOR} {news.news_row.USERNAME_FULL_LAST} <!-- IF news.news_row.S_UNREAD_INFO --><a href="{news.news_row.U_VIEW_UNREAD}">{NEWEST_POST_IMG}</a><!-- ELSE --><a href="{news.news_row.U_LAST_COMMENTS}">{READ_POST_IMG}</a><!-- ENDIF --><br />
|
|
||||||
{news.news_row.LAST_POST_TIME}</span>
|
|
||||||
</dd>
|
|
||||||
</dl>
|
|
||||||
</li>
|
|
||||||
<!-- IF news.news_row.S_LAST_ROW -->
|
|
||||||
<!-- IF news.NP_PAGINATION or news.TOTAL_NEWS -->
|
|
||||||
<li class="row<!-- IF news.news_row.S_ROW_COUNT is even --> bg2<!-- ELSE --> bg1<!-- ENDIF --> portal-news-pagination">
|
|
||||||
<div class="topic-actions">
|
|
||||||
<div class="pagination">
|
|
||||||
{news.TOTAL_NEWS}
|
|
||||||
<!-- IF news.NP_PAGE_NUMBER --><!-- IF news.NP_PAGINATION --> • {news.NP_PAGE_NUMBER} • {news.NP_PAGINATION}<!-- ELSE --> • {news.NP_PAGE_NUMBER}<!-- ENDIF --><!-- ENDIF -->
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</li>
|
|
||||||
<!-- ENDIF -->
|
|
||||||
</ul>
|
|
||||||
{$C_BLOCK_F_L}{$C_BLOCK_F_R}
|
|
||||||
<!-- ENDIF -->
|
|
||||||
<!-- ENDIF -->
|
|
||||||
<!-- END news_row -->
|
|
||||||
<!-- ENDIF -->
|
|
||||||
<!-- END news -->
|
|
||||||
@@ -1,64 +0,0 @@
|
|||||||
{$C_BLOCK_H_L}{$TITLE}{$C_BLOCK_H_R}
|
|
||||||
<!-- IF S_HAS_POLL -->
|
|
||||||
<div id="viewpoll" class="panel bg1 portal-no-margin">
|
|
||||||
<div class="inner">
|
|
||||||
<!-- BEGIN poll -->
|
|
||||||
<!-- IF poll.S_CAN_VOTE --><form method="post" action="{poll.S_POLL_ACTION}"><!-- ENDIF -->
|
|
||||||
<div class="content">
|
|
||||||
<h2>{poll.POLL_QUESTION}</h2>
|
|
||||||
<p class="author">{poll.L_POLL_LENGTH}<!-- IF poll.S_CAN_VOTE and poll.L_POLL_LENGTH --><br /><!-- ENDIF --><!-- IF poll.S_CAN_VOTE -->{poll.L_MAX_VOTES}<!-- ENDIF --></p>
|
|
||||||
|
|
||||||
<fieldset class="polls">
|
|
||||||
<!-- IF poll.S_POLL_HAS_OPTIONS -->
|
|
||||||
<!-- BEGIN poll_option -->
|
|
||||||
<dl class="<!-- IF poll.poll_option.POLL_OPTION_VOTED -->voted<!-- ENDIF --> portal-responsive-poll"<!-- IF poll.poll_option.POLL_OPTION_VOTED --> title="{L_POLL_VOTED_OPTION}"<!-- ENDIF -->>
|
|
||||||
<dt><!-- IF poll.S_CAN_VOTE --><label for="poll_{poll.TOPIC_ID}_vote_{poll.poll_option.POLL_OPTION_ID}">{poll.poll_option.POLL_OPTION_CAPTION}</label><!-- ELSE -->{poll.poll_option.POLL_OPTION_CAPTION}<!-- ENDIF --></dt>
|
|
||||||
<!-- IF poll.S_CAN_VOTE --><dd><!-- IF poll.S_IS_MULTI_CHOICE --><input type="checkbox" name="vote_id[]" id="poll_{poll.TOPIC_ID}_vote_{poll.poll_option.POLL_OPTION_ID}" value="{poll.poll_option.POLL_OPTION_ID}"<!-- IF poll.poll_option.POLL_OPTION_VOTED --> checked="checked"<!-- ENDIF --> /><!-- ELSE --><input type="radio" name="vote_id[]" id="poll_{poll.TOPIC_ID}_vote_{poll.poll_option.POLL_OPTION_ID}" value="{poll.poll_option.POLL_OPTION_ID}"<!-- IF poll.poll_option.POLL_OPTION_VOTED --> checked="checked"<!-- ENDIF --> /><!-- ENDIF --></dd><!-- ENDIF -->
|
|
||||||
<!-- IF poll.S_DISPLAY_RESULTS --><dd class="resultbar"><div class="<!-- IF poll.poll_option.POLL_OPTION_PCT < 20 -->pollbar1<!-- ELSEIF poll.poll_option.POLL_OPTION_PCT < 40 -->pollbar2<!-- ELSEIF poll.poll_option.POLL_OPTION_PCT < 60 -->pollbar3<!-- ELSEIF poll.poll_option.POLL_OPTION_PCT < 80 -->pollbar4<!-- ELSE -->pollbar5<!-- ENDIF -->" style="width:{poll.poll_option.POLL_OPTION_PERCENT};">{poll.poll_option.POLL_OPTION_RESULT}</div></dd>
|
|
||||||
<dd><!-- IF poll.poll_option.POLL_OPTION_RESULT == 0 -->{L_NO_VOTES}<!-- ELSE -->{poll.poll_option.POLL_OPTION_PERCENT}<!-- ENDIF --></dd><!-- ENDIF -->
|
|
||||||
</dl>
|
|
||||||
<!-- END poll_option -->
|
|
||||||
<!-- ELSE -->
|
|
||||||
{L_NO_OPTIONS}
|
|
||||||
<!-- ENDIF -->
|
|
||||||
|
|
||||||
<!-- IF poll.S_DISPLAY_RESULTS -->
|
|
||||||
<dl>
|
|
||||||
<dt> </dt>
|
|
||||||
<dd class="resultbar"><p class="portal-poll-subtext">{L_TOTAL_VOTES} : {poll.TOTAL_VOTES}</p></dd>
|
|
||||||
</dl>
|
|
||||||
<!-- ENDIF -->
|
|
||||||
|
|
||||||
<!-- IF poll.S_CAN_VOTE -->
|
|
||||||
<dl class="portal-poll-vote">
|
|
||||||
<dt> </dt>
|
|
||||||
<dd class="resultbar"><input type="submit" name="update" value="{L_SUBMIT_VOTE}" class="button1" /></dd>
|
|
||||||
</dl>
|
|
||||||
<!-- ENDIF -->
|
|
||||||
|
|
||||||
<!-- IF not poll.S_DISPLAY_RESULTS -->
|
|
||||||
<dl class="portal-poll-vote">
|
|
||||||
<dt> </dt>
|
|
||||||
<dd class="resultbar"><p class="portal-poll-subtext"><a href="{poll.U_VIEW_RESULTS}">{L_VIEW_RESULTS}</a></p></dd>
|
|
||||||
</dl>
|
|
||||||
<!-- ENDIF -->
|
|
||||||
|
|
||||||
<dl class="portal-poll-vote">
|
|
||||||
<dt> </dt>
|
|
||||||
<dd class="resultbar"><p class="portal-poll-subtext"><a href="{poll.U_VIEW_TOPIC}">{L_VIEW_TOPIC}</a></p></dd>
|
|
||||||
</dl>
|
|
||||||
</fieldset>
|
|
||||||
</div>
|
|
||||||
<!-- IF poll.S_CAN_VOTE -->{poll.S_HIDDEN_FIELDS}<!-- ENDIF -->
|
|
||||||
<!-- IF poll.S_CAN_VOTE --></form><!-- ENDIF -->
|
|
||||||
<!-- END poll -->
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<!-- ELSE -->
|
|
||||||
<div class="panel bg1 portal-no-margin">
|
|
||||||
<div class="inner">
|
|
||||||
<span><strong>{L_NO_POLL}</strong></span>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<!-- ENDIF -->
|
|
||||||
{$C_BLOCK_F_L}{$C_BLOCK_F_R}
|
|
||||||
@@ -1,61 +0,0 @@
|
|||||||
{$LR_BLOCK_H_L}<!-- IF $S_BLOCK_ICON --><!-- IF $FA_ENABLED -->
|
|
||||||
<i class="icon fa {$FA_ICON}" style="font-size: {$FA_SIZE}px;" aria-hidden="true"></i>
|
|
||||||
<!-- ELSE -->
|
|
||||||
<img src="{$IMAGE_SRC}" width="{$IMAGE_WIDTH}" height="{$IMAGE_HEIGHT}" alt="" />
|
|
||||||
<!-- ENDIF --><!-- ENDIF -->{$TITLE}{$LR_BLOCK_H_R}
|
|
||||||
<!-- IF S_HAS_POLL -->
|
|
||||||
<div id="viewpoll" class="inner">
|
|
||||||
<!-- BEGIN poll_side -->
|
|
||||||
<!-- IF poll_side.S_CAN_VOTE --><form method="post" action="{poll_side.S_POLL_ACTION}"><!-- ENDIF -->
|
|
||||||
<div class="content">
|
|
||||||
<h2>{poll_side.POLL_QUESTION}</h2>
|
|
||||||
<p class="author portal-module-postbody">{poll_side.L_POLL_LENGTH}<!-- IF poll_side.S_CAN_VOTE and poll_side.L_POLL_LENGTH --><br /><!-- ENDIF --><!-- IF poll_side.S_CAN_VOTE -->{poll_side.L_MAX_VOTES}<!-- ENDIF --></p>
|
|
||||||
|
|
||||||
<fieldset class="polls">
|
|
||||||
<!-- IF poll_side.S_POLL_HAS_OPTIONS -->
|
|
||||||
<!-- BEGIN poll_option -->
|
|
||||||
<dl class="<!-- IF poll_side.poll_option.POLL_OPTION_VOTED -->voted<!-- ENDIF --> portal-poll-side-option"<!-- IF poll_side.poll_option.POLL_OPTION_VOTED --> title="{L_POLL_VOTED_OPTION}"<!-- ENDIF -->>
|
|
||||||
<dt><!-- IF poll_side.S_CAN_VOTE --><label for="poll_side_{poll_side.TOPIC_ID}_vote_{poll_side.poll_option.POLL_OPTION_ID}">{poll_side.poll_option.POLL_OPTION_CAPTION}</label><!-- ELSE -->{poll_side.poll_option.POLL_OPTION_CAPTION}<!-- ENDIF --></dt><dd><br /></dd>
|
|
||||||
<!-- IF poll_side.S_CAN_VOTE --><dt class="portal-poll-side-checkbox"><!-- IF poll_side.S_IS_MULTI_CHOICE --><input type="checkbox" name="vote_id[]" id="poll_side_{poll_side.TOPIC_ID}_vote_{poll_side.poll_option.POLL_OPTION_ID}" value="{poll_side.poll_option.POLL_OPTION_ID}"<!-- IF poll_side.poll_option.POLL_OPTION_VOTED --> checked="checked"<!-- ENDIF --> /><!-- ELSE --><input type="radio" name="vote_id[]" id="poll_side_{poll_side.TOPIC_ID}_vote_{poll_side.poll_option.POLL_OPTION_ID}" value="{poll_side.poll_option.POLL_OPTION_ID}"<!-- IF poll_side.poll_option.POLL_OPTION_VOTED --> checked="checked"<!-- ENDIF --> /><!-- ENDIF --></dt><!-- ENDIF -->
|
|
||||||
<!-- IF poll_side.S_DISPLAY_RESULTS --> <dd class="portal-poll-side-option-info"><!-- IF poll_side.poll_option.POLL_OPTION_RESULT == 0 -->{L_NO_VOTES}<!-- ELSE -->{poll_side.poll_option.POLL_OPTION_PERCENT}<!-- ENDIF --></dd><!-- ENDIF -->
|
|
||||||
</dl>
|
|
||||||
<!-- END poll_option -->
|
|
||||||
<!-- ELSE -->
|
|
||||||
{L_NO_OPTIONS}
|
|
||||||
<!-- ENDIF -->
|
|
||||||
|
|
||||||
<!-- IF poll_side.S_DISPLAY_RESULTS -->
|
|
||||||
<dl>
|
|
||||||
<dd class="resultbar"><p class="portal-poll-subtext">{L_TOTAL_VOTES} : {poll_side.TOTAL_VOTES}</p></dd>
|
|
||||||
</dl>
|
|
||||||
<!-- ENDIF -->
|
|
||||||
|
|
||||||
<!-- IF poll_side.S_CAN_VOTE -->
|
|
||||||
<dl class="portal-poll-vote">
|
|
||||||
<dd class="resultbar"><input type="submit" name="update" value="{L_SUBMIT_VOTE}" class="button1" /></dd>
|
|
||||||
</dl>
|
|
||||||
<!-- ENDIF -->
|
|
||||||
|
|
||||||
<!-- IF not poll_side.S_DISPLAY_RESULTS -->
|
|
||||||
<dl class="portal-poll-vote">
|
|
||||||
<dd class="resultbar"><p class="portal-poll-subtext"><a href="{poll_side.U_VIEW_RESULTS}">{L_VIEW_RESULTS}</a></p></dd>
|
|
||||||
</dl>
|
|
||||||
<!-- ENDIF -->
|
|
||||||
|
|
||||||
<dl class="portal-poll-vote">
|
|
||||||
<dd class="resultbar"><p class="portal-poll-subtext"><a href="{poll_side.U_VIEW_TOPIC}">{L_VIEW_TOPIC}</a></p></dd>
|
|
||||||
</dl>
|
|
||||||
</fieldset>
|
|
||||||
</div>
|
|
||||||
<!-- IF poll_side.S_CAN_VOTE -->{poll_side.S_HIDDEN_FIELDS}<!-- ENDIF -->
|
|
||||||
<!-- IF poll_side.S_CAN_VOTE --></form><!-- ENDIF -->
|
|
||||||
<!-- END poll_side -->
|
|
||||||
</div>
|
|
||||||
<!-- ELSE -->
|
|
||||||
<div class="panel bg1 portal-no-margin">
|
|
||||||
<div class="inner">
|
|
||||||
<span><strong>{L_NO_POLL}</strong></span>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<!-- ENDIF -->
|
|
||||||
{$LR_BLOCK_F_L}{$LR_BLOCK_F_R}
|
|
||||||
@@ -1,25 +0,0 @@
|
|||||||
{$LR_BLOCK_H_L}<!-- IF $S_BLOCK_ICON --><!-- IF $FA_ENABLED -->
|
|
||||||
<i class="icon fa {$FA_ICON}" style="font-size: {$FA_SIZE}px;" aria-hidden="true"></i>
|
|
||||||
<!-- ELSE -->
|
|
||||||
<img src="{$IMAGE_SRC}" width="{$IMAGE_WIDTH}" height="{$IMAGE_HEIGHT}" alt="" />
|
|
||||||
<!-- ENDIF --><!-- ENDIF -->{$TITLE}{$LR_BLOCK_H_R}
|
|
||||||
<!-- BEGIN random_member -->
|
|
||||||
<div class="portal-centered-content"><span class="portal-random-member-name">{random_member.USERNAME_FULL}</span><br class="portal-clear" />
|
|
||||||
<!-- IF random_member.AVATAR_IMG --><a href="{random_member.U_VIEW_PROFILE}">{random_member.AVATAR_IMG}</a><br class="portal-clear" /><!-- ENDIF -->
|
|
||||||
<!-- IF random_member.RANK_TITLE --><span class="gensmall">{random_member.RANK_TITLE}</span><br class="portal-clear" /><!-- ENDIF -->
|
|
||||||
<!-- IF random_member.RANK_IMG -->{random_member.RANK_IMG}<br class="portal-clear" /><!-- ENDIF -->
|
|
||||||
</div>
|
|
||||||
<br class="portal-clear" />
|
|
||||||
<span class="portal-title-span"><strong>{L_RND_JOIN}{L_COLON}</strong></span><span class="portal-data-span">{random_member.JOINED}</span><br class="portal-clear" />
|
|
||||||
<span class="portal-title-span"><strong>{L_RND_POSTS}{L_COLON}</strong></span><span class="portal-data-span">{random_member.USER_POSTS}</span><br class="portal-clear" />
|
|
||||||
<!-- IF random_member.USER_OCC -->
|
|
||||||
<span class="portal-title-span"><strong>{L_RND_OCC}{L_COLON}</strong></span><span class="portal-data-span"> {random_member.USER_OCC}</span><br class="portal-clear" />
|
|
||||||
<!-- ENDIF -->
|
|
||||||
<!-- IF random_member.USER_FROM -->
|
|
||||||
<span class="portal-title-span"><strong>{L_RND_FROM}{L_COLON}</strong></span><span class="portal-data-span"> {random_member.USER_FROM}</span><br class="portal-clear" />
|
|
||||||
<!-- ENDIF -->
|
|
||||||
<!-- IF random_member.U_WWW -->
|
|
||||||
<span class="portal-title-span"><a href="{random_member.U_WWW}" title="{random_member.U_WWW}"><strong>{L_RND_WWW}</strong></a></span><br class="portal-clear" />
|
|
||||||
<!-- ENDIF -->
|
|
||||||
<!-- END random_member -->
|
|
||||||
{$LR_BLOCK_F_L}{$LR_BLOCK_F_R}
|
|
||||||
@@ -1,82 +0,0 @@
|
|||||||
<!-- IF .latest_announcements or .latest_hot_topics or .latest_topics -->
|
|
||||||
{$C_BLOCK_H_L}{$TITLE}{$C_BLOCK_H_R}
|
|
||||||
<div class="panel bg1 portal-no-margin">
|
|
||||||
<div class="inner">
|
|
||||||
<div class="portal-navigation">
|
|
||||||
<ul class="topiclist bg1">
|
|
||||||
<li><dl><dt></dt>
|
|
||||||
<dd class="portal-responsive-show portal-module-postbody portal-whois-online-content">
|
|
||||||
<table class="portal-module-postbody">
|
|
||||||
<tr class="menutitle">
|
|
||||||
<!-- IF .latest_announcements --><td class="portal-responsive-hide"><strong>{L_PORTAL_RECENT_ANN}</strong></td><!-- ENDIF -->
|
|
||||||
<!-- IF .latest_hot_topics --><td class="portal-responsive-hide"><strong>{L_PORTAL_RECENT_HOT_TOPIC}</strong></td><!-- ENDIF -->
|
|
||||||
<!-- IF .latest_topics --><td><strong>{L_PORTAL_RECENT_TOPIC}</strong></td><!-- ENDIF -->
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<!-- IF $FA_ENABLED -->
|
|
||||||
<!-- IF .latest_announcements -->
|
|
||||||
<td class="row1 portal-responsive-hide portal-recent-column">
|
|
||||||
<span class="gensmall">
|
|
||||||
<!-- BEGIN latest_announcements -->
|
|
||||||
<a class="fa-icon" href="{latest_announcements.U_VIEW_TOPIC}" title="{latest_announcements.FULL_TITLE}"><i class="icon fa fa-arrow-circle-o-right" aria-hidden="true"></i> {latest_announcements.TITLE}</a>
|
|
||||||
<!-- END latest_announcements -->
|
|
||||||
</span>
|
|
||||||
</td>
|
|
||||||
<!-- ENDIF -->
|
|
||||||
<!-- IF .latest_hot_topics -->
|
|
||||||
<td class="row1 portal-responsive-hide portal-recent-column">
|
|
||||||
<span class="gensmall">
|
|
||||||
<!-- BEGIN latest_hot_topics -->
|
|
||||||
<a class="fa-icon" href="{latest_hot_topics.U_VIEW_TOPIC}" title="{latest_hot_topics.FULL_TITLE}"><i class="icon fa fa-arrow-circle-o-right" aria-hidden="true"></i> {latest_hot_topics.TITLE}</a>
|
|
||||||
<!-- END latest_hot_topics -->
|
|
||||||
</span>
|
|
||||||
</td>
|
|
||||||
<!-- ENDIF -->
|
|
||||||
<!-- IF .latest_topics -->
|
|
||||||
<td class="row1 portal-recent-column">
|
|
||||||
<span class="gensmall">
|
|
||||||
<!-- BEGIN latest_topics -->
|
|
||||||
<a class="fa-icon" href="{latest_topics.U_VIEW_TOPIC}" title="{latest_topics.FULL_TITLE}"><i class="icon fa fa-arrow-circle-o-right" aria-hidden="true"></i> {latest_topics.TITLE}</a>
|
|
||||||
<!-- END latest_topics -->
|
|
||||||
</span>
|
|
||||||
</td>
|
|
||||||
<!-- ENDIF -->
|
|
||||||
<!-- ELSE -->
|
|
||||||
<!-- IF .latest_announcements -->
|
|
||||||
<td class="row1 portal-responsive-hide portal-recent-column">
|
|
||||||
<span class="gensmall">
|
|
||||||
<!-- BEGIN latest_announcements -->
|
|
||||||
<a href="{latest_announcements.U_VIEW_TOPIC}" title="{latest_announcements.FULL_TITLE}">{latest_announcements.TITLE}</a>
|
|
||||||
<!-- END latest_announcements -->
|
|
||||||
</span>
|
|
||||||
</td>
|
|
||||||
<!-- ENDIF -->
|
|
||||||
<!-- IF .latest_hot_topics -->
|
|
||||||
<td class="row1 portal-responsive-hide portal-recent-column">
|
|
||||||
<span class="gensmall">
|
|
||||||
<!-- BEGIN latest_hot_topics -->
|
|
||||||
<a href="{latest_hot_topics.U_VIEW_TOPIC}" title="{latest_hot_topics.FULL_TITLE}">{latest_hot_topics.TITLE}</a>
|
|
||||||
<!-- END latest_hot_topics -->
|
|
||||||
</span>
|
|
||||||
</td>
|
|
||||||
<!-- ENDIF -->
|
|
||||||
<!-- IF .latest_topics -->
|
|
||||||
<td class="row1 portal-recent-column">
|
|
||||||
<span class="gensmall">
|
|
||||||
<!-- BEGIN latest_topics -->
|
|
||||||
<a href="{latest_topics.U_VIEW_TOPIC}" title="{latest_topics.FULL_TITLE}">{latest_topics.TITLE}</a>
|
|
||||||
<!-- END latest_topics -->
|
|
||||||
</span>
|
|
||||||
</td>
|
|
||||||
<!-- ENDIF -->
|
|
||||||
<!-- ENDIF -->
|
|
||||||
</tr>
|
|
||||||
</table>
|
|
||||||
</dd>
|
|
||||||
</dl></li>
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
{$C_BLOCK_F_L}{$C_BLOCK_F_R}
|
|
||||||
<!-- ENDIF -->
|
|
||||||
@@ -1,80 +0,0 @@
|
|||||||
<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 --><!-- IF $FA_ENABLED -->
|
|
||||||
<i class="icon fa {$FA_ICON}" style="font-size: {$FA_SIZE}px;" aria-hidden="true"></i>
|
|
||||||
<!-- ELSE -->
|
|
||||||
<img src="{$IMAGE_SRC}" width="{$IMAGE_WIDTH}" height="{$IMAGE_HEIGHT}" alt="" />
|
|
||||||
<!-- ENDIF --><!-- ENDIF -->{$TITLE}{$LR_BLOCK_H_R}
|
|
||||||
<form id="qsearch_form" method="post" action="{U_SEARCH}" onsubmit="return qsearch_onSubmit();">
|
|
||||||
<p>
|
|
||||||
<input type="text" tabindex="6" name="keywords" id="searchfield" maxlength="40" title="{L_SEARCH_KEYWORDS}" class="inputbox search autowidth portal-input" 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 class="portal-search">
|
|
||||||
<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>
|
|
||||||
<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>
|
|
||||||
<p><a href="{U_SEARCH}">{L_PORTAL_SEARCH_ADV}</a></p>
|
|
||||||
{$LR_BLOCK_F_L}{$LR_BLOCK_F_R}
|
|
||||||
@@ -1,24 +0,0 @@
|
|||||||
{$LR_BLOCK_H_L}<!-- IF $S_BLOCK_ICON --><!-- IF $FA_ENABLED -->
|
|
||||||
<i class="icon fa {$FA_ICON}" style="font-size: {$FA_SIZE}px;" aria-hidden="true"></i>
|
|
||||||
<!-- ELSE -->
|
|
||||||
<img src="{$IMAGE_SRC}" width="{$IMAGE_WIDTH}" height="{$IMAGE_HEIGHT}" alt="" />
|
|
||||||
<!-- ENDIF --><!-- ENDIF -->{$TITLE}{$LR_BLOCK_H_R}
|
|
||||||
<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 class="dashed" />
|
|
||||||
{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 class="dashed" />
|
|
||||||
|
|
||||||
{B3_TOTAL_USERS}<br />
|
|
||||||
{B3_NEWEST_USER}
|
|
||||||
{$LR_BLOCK_F_L}{$LR_BLOCK_F_R}
|
|
||||||
@@ -1,12 +0,0 @@
|
|||||||
<!-- IF S_STYLE_OPTIONS -->
|
|
||||||
{$LR_BLOCK_H_L}<!-- IF $S_BLOCK_ICON --><!-- IF $FA_ENABLED -->
|
|
||||||
<i class="icon fa {$FA_ICON}" style="font-size: {$FA_SIZE}px;" aria-hidden="true"></i>
|
|
||||||
<!-- ELSE -->
|
|
||||||
<img src="{$IMAGE_SRC}" width="{$IMAGE_WIDTH}" height="{$IMAGE_HEIGHT}" alt="" />
|
|
||||||
<!-- ENDIF --><!-- ENDIF -->{$TITLE}{$LR_BLOCK_H_R}
|
|
||||||
<select class="portal-stylechanger-select" name="demo" id="demo" onchange="document.location.href = this.options[this.selectedIndex].value;">
|
|
||||||
{STYLE_SELECT}
|
|
||||||
</select>
|
|
||||||
<br />
|
|
||||||
{$LR_BLOCK_F_L}{$LR_BLOCK_F_R}
|
|
||||||
<!-- ENDIF -->
|
|
||||||
@@ -1,16 +0,0 @@
|
|||||||
{$LR_BLOCK_H_L}<!-- IF $S_BLOCK_ICON --><!-- IF $FA_ENABLED -->
|
|
||||||
<i class="icon fa {$FA_ICON}" style="font-size: {$FA_SIZE}px;" aria-hidden="true"></i>
|
|
||||||
<!-- ELSE -->
|
|
||||||
<img src="{$IMAGE_SRC}" width="{$IMAGE_WIDTH}" height="{$IMAGE_HEIGHT}" alt="" />
|
|
||||||
<!-- ENDIF --><!-- ENDIF -->{$TITLE}{$LR_BLOCK_H_R}
|
|
||||||
<span class="portal-user-span"><strong>{L_USERNAME}</strong></span>
|
|
||||||
<span class="portal-user-annotation"><strong>{L_POSTS}</strong></span><br class="portal-clear" />
|
|
||||||
<!-- BEGIN topposters -->
|
|
||||||
<!-- IF $FA_ENABLED -->
|
|
||||||
<span class="portal-user-span"><i class="icon fa fa-user"></i> {topposters.USERNAME_FULL}</span>
|
|
||||||
<!-- ELSE -->
|
|
||||||
<span class="portal-user-icon"></span><span class="portal-user-span">{topposters.USERNAME_FULL}</span>
|
|
||||||
<!-- ENDIF -->
|
|
||||||
<span class="portal-user-annotation"><a href="{topposters.S_SEARCH_ACTION}">{topposters.POSTER_POSTS}</a></span><br class="portal-clear" />
|
|
||||||
<!-- END topposters -->
|
|
||||||
{$LR_BLOCK_F_L}{$LR_BLOCK_F_R}
|
|
||||||
@@ -1,79 +0,0 @@
|
|||||||
{$LR_BLOCK_H_L}<!-- IF $S_BLOCK_ICON --><!-- IF $FA_ENABLED -->
|
|
||||||
<i class="icon fa {$FA_ICON}" style="font-size: {$FA_SIZE}px;" aria-hidden="true"></i>
|
|
||||||
<!-- ELSE -->
|
|
||||||
<img src="{$IMAGE_SRC}" width="{$IMAGE_WIDTH}" height="{$IMAGE_HEIGHT}" alt="" />
|
|
||||||
<!-- ENDIF --><!-- ENDIF -->{$TITLE}{$LR_BLOCK_H_R}
|
|
||||||
<div class="portal-centered-content">
|
|
||||||
{USERNAME_FULL}<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>
|
|
||||||
<hr class="dashed" />
|
|
||||||
<div class="portal-navigation">
|
|
||||||
<div class="menutitle">{L_M_MENU}</div>
|
|
||||||
<ul>
|
|
||||||
<!-- IF $FA_ENABLED -->
|
|
||||||
<!-- IF S_DISPLAY_SEARCH -->
|
|
||||||
<li><a class="fa-icon" href="{U_NEW_POSTS}"><i class="icon fa fa-arrow-circle-o-right" aria-hidden="true"></i> {L_NEW_POSTS}</a></li>
|
|
||||||
<li><a class="fa-icon" href="{U_UNREAD_POSTS}"><i class="icon fa fa-arrow-circle-o-right" aria-hidden="true"></i> {L_UNREAD_POSTS}</a></li>
|
|
||||||
<li><a class="fa-icon" href="{U_SELF_POSTS}"><i class="icon fa fa-arrow-circle-o-right" aria-hidden="true"></i> {L_SELF_POSTS}</a></li>
|
|
||||||
<!-- ENDIF -->
|
|
||||||
<!-- IF U_UM_BOOKMARKS -->
|
|
||||||
<li><a class="fa-icon" href="{U_UM_BOOKMARKS}"><i class="icon fa fa-arrow-circle-o-right" aria-hidden="true"></i> {L_UM_BOOKMARKS}</a></li>
|
|
||||||
<!-- ENDIF -->
|
|
||||||
<!-- IF S_DISPLAY_SUBSCRIPTIONS -->
|
|
||||||
<li><a class="fa-icon" href="{U_UM_MAIN_SUBSCRIBED}"><i class="icon fa fa-arrow-circle-o-right" aria-hidden="true"></i> {L_UM_MAIN_SUBSCRIBED}</a></li>
|
|
||||||
<!-- ENDIF -->
|
|
||||||
<!-- IF S_NOTIFICATIONS_DISPLAY -->
|
|
||||||
<li data-skip-responsive="true">
|
|
||||||
<a class="fa-icon" href="{U_VIEW_ALL_NOTIFICATIONS}"><i class="icon fa fa-arrow-circle-o-right" aria-hidden="true"></i> <span>{L_NOTIFICATIONS} [</span><strong>{NOTIFICATIONS_COUNT}</strong><span>]</span></a>
|
|
||||||
</li>
|
|
||||||
<!-- ENDIF -->
|
|
||||||
<!-- IF S_DISPLAY_PM -->
|
|
||||||
<li><a class="fa-icon" href="{U_PRIVATEMSGS}"><i class="icon fa fa-arrow-circle-o-right" aria-hidden="true"></i> <span>{L_PRIVATE_MESSAGES} [</span><strong>{PRIVATE_MESSAGE_COUNT}</strong><span>]</span></a></li>
|
|
||||||
<!-- ENDIF -->
|
|
||||||
<li><a class="fa-icon" href="{U_PROFILE}"><i class="icon fa fa-arrow-circle-o-right" aria-hidden="true"></i> {L_PROFILE}</a></li>
|
|
||||||
<!-- IF U_UM_MCP -->
|
|
||||||
<li><a class="fa-icon" href="{U_UM_MCP}"><i class="icon fa fa-arrow-circle-o-right" aria-hidden="true"></i> {L_MCP}</a></li>
|
|
||||||
<!-- ENDIF -->
|
|
||||||
<!-- IF U_ACP -->
|
|
||||||
<li><a class="fa-icon" href="{U_ACP}"><i class="icon fa fa-arrow-circle-o-right" aria-hidden="true"></i> {L_M_ACP}</a></li>
|
|
||||||
<!-- ENDIF -->
|
|
||||||
<li><a class="fa-icon" href="{U_LOGIN_LOGOUT}"><i class="icon fa fa-arrow-circle-o-right" aria-hidden="true"></i> {L_LOGIN_LOGOUT}</a></li>
|
|
||||||
<!-- ELSE -->
|
|
||||||
<!-- IF S_DISPLAY_SEARCH -->
|
|
||||||
<li><a href="{U_NEW_POSTS}">{L_NEW_POSTS}</a></li>
|
|
||||||
<li><a href="{U_UNREAD_POSTS}">{L_UNREAD_POSTS}</a></li>
|
|
||||||
<li><a href="{U_SELF_POSTS}">{L_SELF_POSTS}</a></li>
|
|
||||||
<!-- ENDIF -->
|
|
||||||
<!-- IF U_UM_BOOKMARKS -->
|
|
||||||
<li><a href="{U_UM_BOOKMARKS}">{L_UM_BOOKMARKS}</a></li>
|
|
||||||
<!-- ENDIF -->
|
|
||||||
<!-- IF S_DISPLAY_SUBSCRIPTIONS -->
|
|
||||||
<li><a href="{U_UM_MAIN_SUBSCRIBED}">{L_UM_MAIN_SUBSCRIBED}</a></li>
|
|
||||||
<!-- ENDIF -->
|
|
||||||
<!-- IF S_NOTIFICATIONS_DISPLAY -->
|
|
||||||
<li data-skip-responsive="true">
|
|
||||||
<a href="{U_VIEW_ALL_NOTIFICATIONS}"><span>{L_NOTIFICATIONS} [</span><strong>{NOTIFICATIONS_COUNT}</strong><span>]</span></a>
|
|
||||||
</li>
|
|
||||||
<!-- ENDIF -->
|
|
||||||
<!-- IF S_DISPLAY_PM -->
|
|
||||||
<li><a href="{U_PRIVATEMSGS}"><span>{L_PRIVATE_MESSAGES} [</span><strong>{PRIVATE_MESSAGE_COUNT}</strong><span>]</span></a></li>
|
|
||||||
<!-- ENDIF -->
|
|
||||||
<li><a href="{U_PROFILE}">{L_PROFILE}</a></li>
|
|
||||||
<!-- IF U_UM_MCP -->
|
|
||||||
<li><a href="{U_UM_MCP}">{L_MCP}</a></li>
|
|
||||||
<!-- ENDIF -->
|
|
||||||
<!-- IF U_ACP -->
|
|
||||||
<li><a href="{U_ACP}">{L_M_ACP}</a></li>
|
|
||||||
<!-- ENDIF -->
|
|
||||||
<li><a href="{U_LOGIN_LOGOUT}">{L_LOGIN_LOGOUT}</a></li>
|
|
||||||
<!-- ENDIF -->
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
{$LR_BLOCK_F_L}{$LR_BLOCK_F_R}
|
|
||||||
@@ -1,9 +0,0 @@
|
|||||||
{$C_BLOCK_H_L}{$TITLE}{$C_BLOCK_H_R}
|
|
||||||
<div class="panel bg1 portal-no-margin">
|
|
||||||
<div class="inner">
|
|
||||||
<div class="postbody portal-postbody portal-module-postbody">
|
|
||||||
<div class="content portal-module-content">{PORTAL_WELCOME_MSG}</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
{$C_BLOCK_F_L}{$C_BLOCK_F_R}
|
|
||||||
@@ -1,10 +0,0 @@
|
|||||||
{$C_BLOCK_H_L}<!-- IF U_VIEWONLINE --><a href="{U_VIEWONLINE}">{$TITLE}</a><!-- ELSE -->{$TITLE}<!-- ENDIF -->{$C_BLOCK_H_R}
|
|
||||||
<ul class="topiclist bg1">
|
|
||||||
<li><dl><dt></dt>
|
|
||||||
<dd class="portal-whois-online-content portal-responsive-show">
|
|
||||||
<p>{TOTAL_USERS_ONLINE} ({L_ONLINE_EXPLAIN})<br />{RECORD_USERS}<br /> <br />{LOGGED_IN_USER_LIST}
|
|
||||||
<!-- IF PORTAL_LEGEND --><br /><em>{L_LEGEND}{L_COLON} {PORTAL_LEGEND}</em><!-- ENDIF --></p>
|
|
||||||
</dd>
|
|
||||||
</dl></li>
|
|
||||||
</ul>
|
|
||||||
{$C_BLOCK_F_L}{$C_BLOCK_F_R}
|
|
||||||
@@ -1,9 +0,0 @@
|
|||||||
{$LR_BLOCK_H_L}<!-- IF $S_BLOCK_ICON --><!-- IF $FA_ENABLED -->
|
|
||||||
<i class="icon fa {$FA_ICON}" style="font-size: {$FA_SIZE}px;" aria-hidden="true"></i>
|
|
||||||
<!-- ELSE -->
|
|
||||||
<img src="{$IMAGE_SRC}" width="{$IMAGE_WIDTH}" height="{$IMAGE_HEIGHT}" alt="" />
|
|
||||||
<!-- ENDIF --><!-- ENDIF --><!-- IF U_VIEWONLINE --><a href="{U_VIEWONLINE}">{$TITLE}</a><!-- ELSE -->{$TITLE}<!-- ENDIF -->{$LR_BLOCK_H_R}
|
|
||||||
<div class="portal-whois-online-content">
|
|
||||||
<p>{TOTAL_USERS_ONLINE}<br /> <br />{LOGGED_IN_USER_LIST}</p>
|
|
||||||
</div>
|
|
||||||
{$LR_BLOCK_F_L}{$LR_BLOCK_F_R}
|
|
||||||
@@ -1,133 +0,0 @@
|
|||||||
<!-- DEFINE $S_IN_PORTAL = 1 -->
|
|
||||||
<!-- INCLUDE overall_header.html -->
|
|
||||||
<!-- INCLUDE portal/_block_config.html -->
|
|
||||||
|
|
||||||
<!-- IF PORTAL_VERSION_CHECK and U_ACP -->
|
|
||||||
<div id="portal_version_check" class="rules">
|
|
||||||
<div class="inner"><span class="corners-top"><span></span></span>
|
|
||||||
<strong>{L_INFORMATION}{L_COLON}</strong> {PORTAL_VERSION_CHECK}
|
|
||||||
<span class="corners-bottom"><span></span></span></div>
|
|
||||||
</div>
|
|
||||||
<!-- ENDIF -->
|
|
||||||
|
|
||||||
<div id="portal-body">
|
|
||||||
<!-- IF S_TOP_COLUMN -->
|
|
||||||
<div id="portal-top">
|
|
||||||
<!-- [+] top module area -->
|
|
||||||
<ul>
|
|
||||||
<li>
|
|
||||||
<!-- BEGIN modules_top -->
|
|
||||||
<!-- DEFINE $TEMPLATE_FILE = '{modules_top.TEMPLATE_FILE}' -->
|
|
||||||
<!-- DEFINE $IMAGE_SRC = '{modules_top.IMAGE_SRC}' -->
|
|
||||||
<!-- DEFINE $IMAGE_WIDTH = '{modules_top.IMAGE_WIDTH}' -->
|
|
||||||
<!-- DEFINE $IMAGE_HEIGHT = '{modules_top.IMAGE_HEIGHT}' -->
|
|
||||||
<!-- DEFINE $CUSTOM_CODE = '{modules_top.CODE}' -->
|
|
||||||
<!-- DEFINE $TITLE = '{modules_top.TITLE}' -->
|
|
||||||
<!-- DEFINE $MODULE_ID = '{modules_top.MODULE_ID}' -->
|
|
||||||
<!-- DEFINE $FA_ICON = '{modules_top.FA_ICON}' -->
|
|
||||||
<!-- DEFINE $FA_SIZE = '{modules_top.FA_SIZE}' -->
|
|
||||||
<!-- DEFINE $FA_ENABLED = '{modules_top.FA_ENABLED}' -->
|
|
||||||
<!-- INCLUDE {$TEMPLATE_FILE} -->
|
|
||||||
<!-- END modules_top -->
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
<!-- [-] top module area -->
|
|
||||||
</div>
|
|
||||||
<!-- ENDIF -->
|
|
||||||
<!-- [+] center module area -->
|
|
||||||
<!-- IF S_CENTER_COLUMN -->
|
|
||||||
<div id="portal-center-wrapper">
|
|
||||||
<div id="portal-center" style="margin: 0 <!-- IF S_RIGHT_COLUMN -->{S_PORTAL_RIGHT_COLUMN}px<!-- ELSE -->-{$BLOCK_DISTANCE}<!-- ENDIF --> 0 <!-- IF S_LEFT_COLUMN -->{S_PORTAL_LEFT_COLUMN}px<!-- ELSE -->-{$BLOCK_DISTANCE}<!-- ENDIF -->; padding: 0 {$BLOCK_DISTANCE};">
|
|
||||||
<!-- BEGIN modules_center -->
|
|
||||||
<!-- DEFINE $TEMPLATE_FILE = '{modules_center.TEMPLATE_FILE}' -->
|
|
||||||
<!-- DEFINE $IMAGE_SRC = '{modules_center.IMAGE_SRC}' -->
|
|
||||||
<!-- DEFINE $IMAGE_WIDTH = '{modules_center.IMAGE_WIDTH}' -->
|
|
||||||
<!-- DEFINE $IMAGE_HEIGHT = '{modules_center.IMAGE_HEIGHT}' -->
|
|
||||||
<!-- DEFINE $CUSTOM_CODE = '{modules_center.CODE}' -->
|
|
||||||
<!-- DEFINE $TITLE = '{modules_center.TITLE}' -->
|
|
||||||
<!-- DEFINE $MODULE_ID = '{modules_center.MODULE_ID}' -->
|
|
||||||
<!-- DEFINE $FA_ICON = '{modules_center.FA_ICON}' -->
|
|
||||||
<!-- DEFINE $FA_SIZE = '{modules_center.FA_SIZE}' -->
|
|
||||||
<!-- DEFINE $FA_ENABLED = '{modules_center.FA_ENABLED}' -->
|
|
||||||
<!-- INCLUDE {$TEMPLATE_FILE} -->
|
|
||||||
<!-- END modules_center -->
|
|
||||||
<!-- IF S_DISPLAY_JUMPBOX and B3P_DISPLAY_JUMPBOX -->
|
|
||||||
<br />
|
|
||||||
<!-- INCLUDE portal/modules/jumpbox.html -->
|
|
||||||
<!-- ENDIF -->
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<!-- ENDIF -->
|
|
||||||
<!-- [-] center module area -->
|
|
||||||
<!-- [+] left module area -->
|
|
||||||
<!-- IF S_LEFT_COLUMN -->
|
|
||||||
<div id="portal-left" style="width: {S_PORTAL_LEFT_COLUMN}px;">
|
|
||||||
<!-- BEGIN modules_left -->
|
|
||||||
<!-- DEFINE $TEMPLATE_FILE = '{modules_left.TEMPLATE_FILE}' -->
|
|
||||||
<!-- DEFINE $IMAGE_SRC = '{modules_left.IMAGE_SRC}' -->
|
|
||||||
<!-- DEFINE $IMAGE_WIDTH = '{modules_left.IMAGE_WIDTH}' -->
|
|
||||||
<!-- DEFINE $IMAGE_HEIGHT = '{modules_left.IMAGE_HEIGHT}' -->
|
|
||||||
<!-- DEFINE $CUSTOM_CODE = '{modules_left.CODE}' -->
|
|
||||||
<!-- DEFINE $TITLE = '{modules_left.TITLE}' -->
|
|
||||||
<!-- DEFINE $MODULE_ID = '{modules_left.MODULE_ID}' -->
|
|
||||||
<!-- DEFINE $FA_ICON = '{modules_left.FA_ICON}' -->
|
|
||||||
<!-- DEFINE $FA_SIZE = '{modules_left.FA_SIZE}' -->
|
|
||||||
<!-- DEFINE $FA_ENABLED = '{modules_left.FA_ENABLED}' -->
|
|
||||||
<!-- INCLUDE {$TEMPLATE_FILE} -->
|
|
||||||
<!-- END modules_left -->
|
|
||||||
</div>
|
|
||||||
<!-- ENDIF -->
|
|
||||||
<!-- [-] left module area -->
|
|
||||||
|
|
||||||
<!-- [+] right module area -->
|
|
||||||
<!-- IF S_RIGHT_COLUMN -->
|
|
||||||
<div id="portal-right" style="width: {S_PORTAL_RIGHT_COLUMN}px; margin-<!-- IF S_CONTENT_DIRECTION eq 'rtl' -->right<!-- ELSE -->left<!-- ENDIF -->: -{S_PORTAL_RIGHT_COLUMN}px;">
|
|
||||||
<!-- BEGIN modules_right -->
|
|
||||||
<!-- DEFINE $TEMPLATE_FILE = '{modules_right.TEMPLATE_FILE}' -->
|
|
||||||
<!-- DEFINE $IMAGE_SRC = '{modules_right.IMAGE_SRC}' -->
|
|
||||||
<!-- DEFINE $IMAGE_WIDTH = '{modules_right.IMAGE_WIDTH}' -->
|
|
||||||
<!-- DEFINE $IMAGE_HEIGHT = '{modules_right.IMAGE_HEIGHT}' -->
|
|
||||||
<!-- DEFINE $CUSTOM_CODE = '{modules_right.CODE}' -->
|
|
||||||
<!-- DEFINE $TITLE = '{modules_right.TITLE}' -->
|
|
||||||
<!-- DEFINE $MODULE_ID = '{modules_right.MODULE_ID}' -->
|
|
||||||
<!-- DEFINE $FA_ICON = '{modules_right.FA_ICON}' -->
|
|
||||||
<!-- DEFINE $FA_SIZE = '{modules_right.FA_SIZE}' -->
|
|
||||||
<!-- DEFINE $FA_ENABLED = '{modules_right.FA_ENABLED}' -->
|
|
||||||
<!-- INCLUDE {$TEMPLATE_FILE} -->
|
|
||||||
<!-- END modules_right -->
|
|
||||||
</div>
|
|
||||||
<!-- ENDIF -->
|
|
||||||
<!-- [-] right module area -->
|
|
||||||
<br class="portal-clear" />
|
|
||||||
<!-- IF S_BOTTOM_COLUMN -->
|
|
||||||
<div id="portal-bottom">
|
|
||||||
<!-- [+] bottom module area -->
|
|
||||||
<ul>
|
|
||||||
<li>
|
|
||||||
<!-- BEGIN modules_bottom -->
|
|
||||||
<!-- DEFINE $TEMPLATE_FILE = '{modules_bottom.TEMPLATE_FILE}' -->
|
|
||||||
<!-- DEFINE $IMAGE_SRC = '{modules_bottom.IMAGE_SRC}' -->
|
|
||||||
<!-- DEFINE $IMAGE_WIDTH = '{modules_bottom.IMAGE_WIDTH}' -->
|
|
||||||
<!-- DEFINE $IMAGE_HEIGHT = '{modules_bottom.IMAGE_HEIGHT}' -->
|
|
||||||
<!-- DEFINE $CUSTOM_CODE = '{modules_bottom.CODE}' -->
|
|
||||||
<!-- DEFINE $TITLE = '{modules_bottom.TITLE}' -->
|
|
||||||
<!-- DEFINE $MODULE_ID = '{modules_bottom.MODULE_ID}' -->
|
|
||||||
<!-- DEFINE $FA_ICON = '{modules_bottom.FA_ICON}' -->
|
|
||||||
<!-- DEFINE $FA_SIZE = '{modules_bottom.FA_SIZE}' -->
|
|
||||||
<!-- DEFINE $FA_ENABLED = '{modules_bottom.FA_ENABLED}' -->
|
|
||||||
<!-- INCLUDE {$TEMPLATE_FILE} -->
|
|
||||||
<!-- END modules_bottom -->
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
<!-- [-] bottom module area -->
|
|
||||||
</div>
|
|
||||||
<!-- ENDIF -->
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<!--// board3 Portal by www.board3.de //-->
|
|
||||||
<div class="copyright">Powered by <a href="http://www.board3.de/">Board3 Portal</a> © 2009 - 2015 Board3 Group</div>
|
|
||||||
|
|
||||||
<!-- INCLUDEJS portal/assets/jquery.getscrollbarwidth.js -->
|
|
||||||
<!-- INCLUDEJS portal/assets/portal.js -->
|
|
||||||
|
|
||||||
<!-- INCLUDE overall_footer.html -->
|
|
||||||
|
Before Width: | Height: | Size: 102 B |
|
Before Width: | Height: | Size: 103 B |
|
Before Width: | Height: | Size: 744 B |
|
Before Width: | Height: | Size: 676 B |
|
Before Width: | Height: | Size: 144 B |
|
Before Width: | Height: | Size: 2.9 KiB |
|
Before Width: | Height: | Size: 1003 B |
|
Before Width: | Height: | Size: 1.1 KiB |
|
Before Width: | Height: | Size: 964 B |
|
Before Width: | Height: | Size: 1.1 KiB |
|
Before Width: | Height: | Size: 1.1 KiB |
|
Before Width: | Height: | Size: 9.5 KiB |
|
Before Width: | Height: | Size: 7.2 KiB |
|
Before Width: | Height: | Size: 1.1 KiB |
|
Before Width: | Height: | Size: 738 B |
|
Before Width: | Height: | Size: 696 B |
|
Before Width: | Height: | Size: 895 B |
|
Before Width: | Height: | Size: 1.1 KiB |
|
Before Width: | Height: | Size: 1.1 KiB |
|
Before Width: | Height: | Size: 855 B |
|
Before Width: | Height: | Size: 879 B |
|
Before Width: | Height: | Size: 1.1 KiB |
|
Before Width: | Height: | Size: 813 B |
|
Before Width: | Height: | Size: 1.1 KiB |
|
Before Width: | Height: | Size: 1.1 KiB |
|
Before Width: | Height: | Size: 1.0 KiB |
|
Before Width: | Height: | Size: 1.1 KiB |
|
Before Width: | Height: | Size: 1.1 KiB |
|
Before Width: | Height: | Size: 148 B |
|
Before Width: | Height: | Size: 148 B |
@@ -1,647 +0,0 @@
|
|||||||
/* main menu, user menu and the links */
|
|
||||||
|
|
||||||
.portal-navigation{
|
|
||||||
width: auto;
|
|
||||||
}
|
|
||||||
|
|
||||||
.portal-navigation ul{
|
|
||||||
list-style-type: none;
|
|
||||||
margin: 0;
|
|
||||||
padding: 0;
|
|
||||||
margin-bottom: 8px; /*bottom spacing between each UL and rest of content*/
|
|
||||||
}
|
|
||||||
|
|
||||||
.portal-navigation ul li{
|
|
||||||
padding-bottom: 2px; /*bottom spacing between menu items*/
|
|
||||||
}
|
|
||||||
|
|
||||||
.portal-navigation ul li a{
|
|
||||||
background-image: url("./images/portal/arrowbullet.gif");
|
|
||||||
background-repeat: no-repeat;
|
|
||||||
background-position: center left; /*custom bullet list image*/
|
|
||||||
display: block;
|
|
||||||
padding: 2px 0;
|
|
||||||
padding-left: 19px; /*link text is indented 19px*/
|
|
||||||
font-weight: bold;
|
|
||||||
font-size: 90%;
|
|
||||||
}
|
|
||||||
|
|
||||||
.portal-navigation div.menutitle{
|
|
||||||
padding: 1px 0;
|
|
||||||
font: bold 90% 'Trebuchet MS', 'Lucida Grande', Arial, sans-serif;
|
|
||||||
font-size: 12px;
|
|
||||||
text-decoration: underline;
|
|
||||||
}
|
|
||||||
|
|
||||||
.portal-navigation tr.menutitle{
|
|
||||||
font: bold 90% 'Trebuchet MS', 'Lucida Grande', Arial, sans-serif;
|
|
||||||
font-size: 12px;
|
|
||||||
text-decoration: underline;
|
|
||||||
}
|
|
||||||
|
|
||||||
.rtl .portal-navigation .menutitle {
|
|
||||||
text-align: right;
|
|
||||||
}
|
|
||||||
|
|
||||||
.calendar-info {
|
|
||||||
list-style-type: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.portal-events li.row
|
|
||||||
{
|
|
||||||
border-top: 0px;
|
|
||||||
list-style-type: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.portal-user-icon {
|
|
||||||
background-image: url("./images/portal/portal_user.png");
|
|
||||||
padding-left: 16px;
|
|
||||||
padding-top: 16px;
|
|
||||||
float: left;
|
|
||||||
margin-bottom: 2px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.rtl .portal-user-icon {
|
|
||||||
float: right;
|
|
||||||
}
|
|
||||||
|
|
||||||
.portal-user-span {
|
|
||||||
float: left;
|
|
||||||
padding-left: 5px;
|
|
||||||
padding-top: 2px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.rtl .portal-user-span {
|
|
||||||
float: right;
|
|
||||||
padding: 2px 5px 0 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.portal-user-annotation {
|
|
||||||
float: right;
|
|
||||||
padding-top: 2px;
|
|
||||||
padding-right: 10px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.rtl .portal-user-annotation {
|
|
||||||
float: left;
|
|
||||||
padding-right: 0px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.portal-title-span {
|
|
||||||
float: left;
|
|
||||||
}
|
|
||||||
|
|
||||||
.rtl .portal-title-span {
|
|
||||||
float: right;
|
|
||||||
}
|
|
||||||
|
|
||||||
.rtl .portal-title-link {
|
|
||||||
float: right;
|
|
||||||
padding-right: 2px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.portal-text-span {
|
|
||||||
float: left;
|
|
||||||
padding-right: 10px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.rtl .portal-text-span {
|
|
||||||
float: right;
|
|
||||||
padding-right: 0px;
|
|
||||||
padding-left: 10px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.portal-data-span {
|
|
||||||
float: right;
|
|
||||||
padding-right: 10px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.rtl .portal-data-span {
|
|
||||||
float: left;
|
|
||||||
padding-right: 0px;
|
|
||||||
padding-left: 10px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.portal-module-content {
|
|
||||||
min-height: 1em;
|
|
||||||
}
|
|
||||||
|
|
||||||
.portal-stylechanger-select {
|
|
||||||
width: 150px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.portal-whois-online-content {
|
|
||||||
border-left: 0 !important;
|
|
||||||
}
|
|
||||||
.portal-whois-online-content p {
|
|
||||||
margin: 0 5px 0 5px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.portal-donation-center-content {
|
|
||||||
border-left: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.portal-donation-center-content > div {
|
|
||||||
text-align: left;
|
|
||||||
margin: 5px 5px 5px 5px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.portal-donation-form {
|
|
||||||
padding-top: 15px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.portal-centered-content {
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
.portal-read-all-link {
|
|
||||||
float: right;
|
|
||||||
margin: 0 0 5px 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.portal-module-postbody .post:not(:last-child) {
|
|
||||||
margin-bottom: 1px;
|
|
||||||
}
|
|
||||||
|
|
||||||
a.portal-forumtitle {
|
|
||||||
font-weight: bold;
|
|
||||||
}
|
|
||||||
|
|
||||||
.portal-random-member-name {
|
|
||||||
font-size: 12px;
|
|
||||||
padding-top: 1px;
|
|
||||||
margin-bottom: 5px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.portal-recent-column {
|
|
||||||
width: 33%;
|
|
||||||
vertical-align: top;
|
|
||||||
}
|
|
||||||
|
|
||||||
.portal-paypal-icon {
|
|
||||||
background-image: url("./images/portal/paypal.gif");
|
|
||||||
background-repeat: no-repeat;
|
|
||||||
padding-left: 73px;
|
|
||||||
padding-top: 44px;
|
|
||||||
float: left;
|
|
||||||
margin: 5px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.portal-poll-subtext {
|
|
||||||
font-size: 1.0em !important;
|
|
||||||
width: 10em;
|
|
||||||
}
|
|
||||||
|
|
||||||
.portal-poll-vote {
|
|
||||||
border-top: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.portal-poll-side-option dt {
|
|
||||||
width: 30% !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.portal-poll-side-option dt:first-child {
|
|
||||||
width: 60% !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.portal-poll-side-option-info {
|
|
||||||
width: 30% !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.portal-poll-side-checkbox {
|
|
||||||
float: right;
|
|
||||||
}
|
|
||||||
|
|
||||||
.portal-poll-side-checkbox input {
|
|
||||||
vertical-align: top;
|
|
||||||
margin-top: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Calendar CSS rules
|
|
||||||
*/
|
|
||||||
.portal-calendar-go-previous {
|
|
||||||
text-align: left;
|
|
||||||
}
|
|
||||||
|
|
||||||
.portal-calendar-current-month {
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
.portal-calendar-go-next {
|
|
||||||
text-align: right;
|
|
||||||
}
|
|
||||||
|
|
||||||
.portal-calendar-days-title td, .portal-calendar-days td {
|
|
||||||
width: 14%;
|
|
||||||
}
|
|
||||||
|
|
||||||
.portal-calendar-days-title span {
|
|
||||||
font-weight: bold;
|
|
||||||
}
|
|
||||||
|
|
||||||
.portal-calendar-days td {
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
.portal-calendar-events-heading {
|
|
||||||
font-weight: bold;
|
|
||||||
font-size: 12px;
|
|
||||||
text-decoration: underline;
|
|
||||||
}
|
|
||||||
|
|
||||||
.portal-calendar-event-listing {
|
|
||||||
width: 100%;
|
|
||||||
padding-left: 0;
|
|
||||||
padding-bottom: 5px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.portal-calendar-event-title {
|
|
||||||
font-weight: bold;
|
|
||||||
}
|
|
||||||
|
|
||||||
.portal-calendar-event-description {
|
|
||||||
font-style: italic;
|
|
||||||
}
|
|
||||||
|
|
||||||
.portal-calendar-divider {
|
|
||||||
margin: 5px 0;
|
|
||||||
border-top: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Replacement for table layout
|
|
||||||
*/
|
|
||||||
#portal-left, #portal-right {
|
|
||||||
position: relative;
|
|
||||||
float: left;
|
|
||||||
}
|
|
||||||
|
|
||||||
.rtl #portal-left, .rtl #portal-right {
|
|
||||||
float: right;
|
|
||||||
}
|
|
||||||
|
|
||||||
#portal-center-wrapper {
|
|
||||||
width: 100%;
|
|
||||||
float: left;
|
|
||||||
display: block;
|
|
||||||
}
|
|
||||||
|
|
||||||
.rtl #portal-center-wrapper {
|
|
||||||
float: right;
|
|
||||||
}
|
|
||||||
|
|
||||||
#portal-column-area {
|
|
||||||
width: 100%;
|
|
||||||
margin: 0 auto;
|
|
||||||
}
|
|
||||||
|
|
||||||
#portal-left {
|
|
||||||
margin-left: -100%;
|
|
||||||
}
|
|
||||||
|
|
||||||
.rtl #portal-left {
|
|
||||||
margin-right: -100%;
|
|
||||||
margin-left: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
|
||||||
* top spacing between portal body table and headerbar spacing is usually 10px
|
|
||||||
*/
|
|
||||||
#portal-body {
|
|
||||||
padding-top: 10px;
|
|
||||||
width: 100%;
|
|
||||||
}
|
|
||||||
|
|
||||||
.portal-side {
|
|
||||||
text-align: left;
|
|
||||||
margin: 5px 5px 5px 5px
|
|
||||||
}
|
|
||||||
|
|
||||||
.rtl .portal-side {
|
|
||||||
text-align: right;
|
|
||||||
}
|
|
||||||
|
|
||||||
.portal-side-wrapper {
|
|
||||||
border-left: 0 !important;
|
|
||||||
width: 100%;
|
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
|
||||||
* This is needed in order to have the same spacing between blocks
|
|
||||||
* as we have between the top blocks and the headerbar
|
|
||||||
*/
|
|
||||||
#portal-body .forabg {
|
|
||||||
margin-bottom: 0px;
|
|
||||||
}
|
|
||||||
|
|
||||||
#portal-body td {
|
|
||||||
vertical-align: top;
|
|
||||||
}
|
|
||||||
|
|
||||||
#portal-body .row .pagination {
|
|
||||||
padding: 1px 0 1px 12px;
|
|
||||||
}
|
|
||||||
|
|
||||||
#portal-body #viewpoll {
|
|
||||||
margin-left: 0px;
|
|
||||||
margin-right: 0px;
|
|
||||||
}
|
|
||||||
#portal-body li {
|
|
||||||
list-style-type: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.portal-news-pagination {
|
|
||||||
height: 2em;
|
|
||||||
}
|
|
||||||
|
|
||||||
.portal-news-pagination .pagination {
|
|
||||||
font-size: 1.1em;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* margin spacing as in default prosilver for the forumlist
|
|
||||||
*/
|
|
||||||
#portal-forumlist .forabg {
|
|
||||||
margin-bottom: 4px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.portal-no-margin {
|
|
||||||
margin: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.portal-clear {
|
|
||||||
clear: both;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* RTL language fixes */
|
|
||||||
.rtl .portal-navigation ul li a{
|
|
||||||
background-image: url("./images/portal/arrowbullet_rtl.gif");
|
|
||||||
background-position: center right; /* custom bullet list image */
|
|
||||||
padding-right: 19px; /* link text is indented 19px */
|
|
||||||
text-align: right;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Portal clock
|
|
||||||
-------------------------------------- */
|
|
||||||
.portal-clock-wrapper {
|
|
||||||
text-align: center;
|
|
||||||
min-height: 5em;
|
|
||||||
margin: 0 10%;
|
|
||||||
/* set a fixed height to get rid of the trembling clock in IE9 */
|
|
||||||
height: 50px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.rtl .portal-clock-wrapper {
|
|
||||||
/* Arabic clocks are ltr */
|
|
||||||
direction: ltr;
|
|
||||||
}
|
|
||||||
|
|
||||||
.portal-clock {
|
|
||||||
position: relative;
|
|
||||||
width: 100%;
|
|
||||||
margin-top: 10px;
|
|
||||||
margin-bottom: 10px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.portal-clock-spacer-up {
|
|
||||||
content: url("./images/portal/spacer_up.png");
|
|
||||||
}
|
|
||||||
|
|
||||||
.portal-clock-spacer-down {
|
|
||||||
content: url("./images/portal/spacer_down.png");
|
|
||||||
}
|
|
||||||
|
|
||||||
.portal-clock * img {
|
|
||||||
float: left;
|
|
||||||
}
|
|
||||||
|
|
||||||
.portal-clock-front, .portal-clock-back {
|
|
||||||
position: absolute;
|
|
||||||
top: 0px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.portal-clock-front-upper div {
|
|
||||||
height: 21px;
|
|
||||||
position: absolute;
|
|
||||||
vertical-align: bottom;
|
|
||||||
visibility: hidden;
|
|
||||||
}
|
|
||||||
|
|
||||||
.portal-clock-front-lower div {
|
|
||||||
height: 20px;
|
|
||||||
position: absolute;
|
|
||||||
vertical-align: top;
|
|
||||||
visibility: hidden;
|
|
||||||
}
|
|
||||||
|
|
||||||
.portal-clock-back-upper div {
|
|
||||||
position: absolute;
|
|
||||||
vertical-align: bottom;
|
|
||||||
}
|
|
||||||
|
|
||||||
.portal-clock-back-lower div {
|
|
||||||
position: absolute;
|
|
||||||
vertical-align: top;
|
|
||||||
}
|
|
||||||
|
|
||||||
.portal-clock-back-seconds-up-left, .portal-clock-back-seconds-up-right,
|
|
||||||
.portal-clock-front-minutes-up-left, .portal-clock-front-minutes-up-right,
|
|
||||||
.portal-clock-back-minutes-up-left, .portal-clock-back-minutes-up-right,
|
|
||||||
.portal-clock-front-seconds-up-left, .portal-clock-front-seconds-up-right,
|
|
||||||
.portal-clock-back-minutes-down-left, .portal-clock-back-minutes-down-right,
|
|
||||||
.portal-clock-back-seconds-down-left, .portal-clock-back-seconds-down-right,
|
|
||||||
.portal-clock-front-minutes-down-left, .portal-clock-front-minutes-down-right,
|
|
||||||
.portal-clock-front-seconds-down-left, .portal-clock-front-seconds-down-right {
|
|
||||||
width: 21px;
|
|
||||||
height: 21px;
|
|
||||||
background-position: 0 0;
|
|
||||||
background: url(./images/portal/portal_clock_single.png) no-repeat;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Minutes start
|
|
||||||
-------------------------------------- */
|
|
||||||
.portal-clock-back-minutes-up-left{
|
|
||||||
background-position: 0 0;
|
|
||||||
margin: 0 0 0 43px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.portal-clock-back-minutes-up-right {
|
|
||||||
background-position: 0 -43px;
|
|
||||||
margin: 0 0 0 64px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.portal-clock-front-minutes-up-left {
|
|
||||||
background-position: 0 0;
|
|
||||||
margin: 0 0 0 43px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.portal-clock-front-minutes-up-right {
|
|
||||||
background-position: 0 -43px;
|
|
||||||
margin: 0 0 0 63px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.portal-clock-back-minutes-down-left{
|
|
||||||
background-position: 0 -22px;
|
|
||||||
margin: 21px 0 0 43px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.portal-clock-back-minutes-down-right {
|
|
||||||
background-position: 0 -65px;
|
|
||||||
margin: 21px 0 0 64px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.portal-clock-front-minutes-down-left {
|
|
||||||
background-position: 0 -22px;
|
|
||||||
margin: 21px 0 0 42px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.portal-clock-front-minutes-down-right {
|
|
||||||
background-position: 0 -65px;
|
|
||||||
margin: 21px 0 0 63px;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Seconds start
|
|
||||||
---------------------------------------- */
|
|
||||||
.portal-clock-back-seconds-up-left{
|
|
||||||
background-position: 0 0;
|
|
||||||
margin: 0 0 0 85px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.portal-clock-back-seconds-up-right {
|
|
||||||
background-position: 0 -43px;
|
|
||||||
margin: 0 0 0 106px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.portal-clock-front-seconds-up-left {
|
|
||||||
background-position: 0 0;
|
|
||||||
margin: 0 0 0 84px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.portal-clock-front-seconds-up-right {
|
|
||||||
background-position: 0 -43px;
|
|
||||||
margin: 0 0 0 105px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.portal-clock-back-seconds-down-left{
|
|
||||||
background-position: 0 -22px;
|
|
||||||
margin: 21px 0 0 85px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.portal-clock-back-seconds-down-right {
|
|
||||||
background-position: 0 -65px;
|
|
||||||
margin: 21px 0 0 106px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.portal-clock-front-seconds-down-left {
|
|
||||||
background-position: 0 -22px;
|
|
||||||
margin: 21px 0 0 84px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.portal-clock-front-seconds-down-right {
|
|
||||||
background-position: 0 -65px;
|
|
||||||
margin: 21px 0 0 105px;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Hours start
|
|
||||||
---------------------------------------- */
|
|
||||||
.portal-clock-back-hours-up, .portal-clock-front-hours-up {
|
|
||||||
width: 42px;
|
|
||||||
height: 21px;
|
|
||||||
background: url(./images/portal/portal_clock_double.png) no-repeat;
|
|
||||||
background-position: 0 0;
|
|
||||||
vertical-align: bottom;
|
|
||||||
display: inline-block;
|
|
||||||
margin: 0 0 0 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.portal-clock-back-hours-down, .portal-clock-front-hours-down {
|
|
||||||
width: 42px;
|
|
||||||
height: 20px;
|
|
||||||
background: url(./images/portal/portal_clock_double.png) no-repeat;
|
|
||||||
background-position: 0 -44px;
|
|
||||||
vertical-align: top;
|
|
||||||
display: inline-block;
|
|
||||||
margin: 21px 0 0 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
@media all\0 {
|
|
||||||
.portal-clock-back-hours-down, .portal-clock-front-hours-down {
|
|
||||||
margin-left: -1px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Changed */
|
|
||||||
.portal-module-postbody {
|
|
||||||
width: 100%;
|
|
||||||
min-height: 1em;
|
|
||||||
background-color: rgb(255, 255, 255);
|
|
||||||
}
|
|
||||||
|
|
||||||
/* New */
|
|
||||||
a.portal-top {
|
|
||||||
width: auto;
|
|
||||||
margin-top: 10px;
|
|
||||||
margin-right: -10px;
|
|
||||||
}
|
|
||||||
|
|
||||||
div.bg1, div.bg2, ul.bg1, ul.bg2 {
|
|
||||||
background-color: rgb(255, 255, 255);
|
|
||||||
padding: 5px;
|
|
||||||
}
|
|
||||||
|
|
||||||
div.portal-postbody {
|
|
||||||
border: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
input.portal-input {
|
|
||||||
width: 100% !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
li.portal-header dt {
|
|
||||||
padding-left: 10px;
|
|
||||||
color: rgb(255, 255, 255);
|
|
||||||
}
|
|
||||||
|
|
||||||
p.portal-search select {
|
|
||||||
width: 75% !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
p.portal-search input.button2 {
|
|
||||||
width: 22% !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
ul.portal-bg {
|
|
||||||
background-color: rgb(255, 255, 255);
|
|
||||||
}
|
|
||||||
|
|
||||||
div.topic-actions {
|
|
||||||
background-color: #DDD;
|
|
||||||
margin-top: 10px;
|
|
||||||
}
|
|
||||||
|
|
||||||
div.topic-actions div.pagination {
|
|
||||||
height: 38px;
|
|
||||||
line-height: 38px;
|
|
||||||
vertical-align: middle;
|
|
||||||
margin: 0px;
|
|
||||||
}
|
|
||||||
|
|
||||||
div.topic-actions div.pagination a {
|
|
||||||
width: 22px;
|
|
||||||
height: 22px;
|
|
||||||
line-height: 20px;
|
|
||||||
text-align: center;
|
|
||||||
margin-top: 8px;
|
|
||||||
padding: 0px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.portal-navigation ul li a.fa-icon {
|
|
||||||
display: block;
|
|
||||||
padding: 2px 0;
|
|
||||||
padding-left: 19px;
|
|
||||||
font-weight: bold;
|
|
||||||
font-size: 90%;
|
|
||||||
background: none;
|
|
||||||
padding-left: 0;
|
|
||||||
}
|
|
||||||
@@ -1,69 +0,0 @@
|
|||||||
@media only screen and (max-width: 1040px), only screen and (max-device-width: 1040px)
|
|
||||||
{
|
|
||||||
.responsive-portal-announcements dd.views { display: none !important; }
|
|
||||||
dd.responsive-portal-announcements { display: none !important; }
|
|
||||||
|
|
||||||
.responsive-portal-announcements dd.posts, .responsive-portal-announcements dd.views {
|
|
||||||
display: none !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
dt#a { width: 125% !important; }
|
|
||||||
.responsive-portal-announcements dt { width: 130% !important; }
|
|
||||||
dd.responsive-portal-news { display: none !important; }
|
|
||||||
|
|
||||||
.responsive-portal-news dd.posts, .responsive-portal-news dd.views {
|
|
||||||
display: none !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.responsive-portal-news dt { width: 130% !important; }
|
|
||||||
dt#n { width: 125% !important; }
|
|
||||||
.topiclist .topics, .topiclist .posts { display: none !important; }
|
|
||||||
#portal-forumlist dl.icon dt { width: 125% !important; }
|
|
||||||
}
|
|
||||||
|
|
||||||
@media only screen and (max-width: 895px), only screen and (max-device-width: 895px)
|
|
||||||
{
|
|
||||||
div#portal-right { width: 49% !important; }
|
|
||||||
div#portal-left { width: 50% !important; }
|
|
||||||
div#portal-center {
|
|
||||||
margin-right: 0 !important;
|
|
||||||
margin-left: 0 !important;
|
|
||||||
padding-right: 0 !important;
|
|
||||||
padding-left: 0 !important;
|
|
||||||
}
|
|
||||||
.responsive-portal-news dt { width: 100% !important; }
|
|
||||||
.responsive-portal-announcements dt { width: 100% !important; }
|
|
||||||
}
|
|
||||||
|
|
||||||
@media only screen and (max-width: 700px), only screen and (max-device-width: 700px)
|
|
||||||
{
|
|
||||||
.responsive-portal-news dd.lastpost, .responsive-portal-announcements dd.lastpost { display: none !important; }
|
|
||||||
.responsive-portal-news dt .list-inner, .responsive-portal-announcements dt .list-inner { margin-right: 0px !important; }
|
|
||||||
.responsive-portal-news dt, .responsive-portal-announcements dt { width: 100% !important; }
|
|
||||||
dt#n, dt#a { width: 100% !important; }
|
|
||||||
|
|
||||||
.portal-responsive-poll .resultbar {
|
|
||||||
display: none !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.portal-responsive-poll dt { width: 45% !important; }
|
|
||||||
.portal-responsive-poll dd {
|
|
||||||
width: 45% !important;
|
|
||||||
float: right !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
#portal-forumlist dl.icon dt { width: 100% !important; }
|
|
||||||
#portal-left ul.topiclist dd, #portal-right ul.topiclist dd { display: block !important; }
|
|
||||||
.portal-responsive-show { display: block !important; }
|
|
||||||
.portal-responsive-hide { display: none !important; }
|
|
||||||
#portal-body { padding-top: 0px !important; }
|
|
||||||
#portal-right > .portal-clear, #portal-body > .portal-clear, #portal-left > .portal-clear,
|
|
||||||
#portal-center > .portal-clear, #portal-login-box .portal-clear { display: none !important; }
|
|
||||||
#portal-right { width: 50% !important; }
|
|
||||||
#portal-left { width: 50% !important; }
|
|
||||||
#portal-center {
|
|
||||||
margin-left: 0 !important;
|
|
||||||
margin-right: 0 !important;
|
|
||||||
padding-left: 0 !important;
|
|
||||||
}
|
|
||||||
}
|
|
||||||