first commit
61
templates/beez3/component.php
Normal file
@ -0,0 +1,61 @@
|
||||
<?php
|
||||
/**
|
||||
* @package Joomla.Site
|
||||
* @subpackage Templates.beez3
|
||||
*
|
||||
* @copyright Copyright (C) 2005 - 2013 Open Source Matters, Inc. All rights reserved.
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
$doc = JFactory::getDocument();
|
||||
$color = $this->params->get('templatecolor');
|
||||
|
||||
$doc->addStyleSheet($this->baseurl.'/templates/system/css/system.css');
|
||||
$doc->addStyleSheet($this->baseurl.'/templates/'.$this->template.'/css/template.css', $type = 'text/css', $media = 'screen,projection');
|
||||
$doc->addStyleSheet($this->baseurl.'/templates/'.$this->template.'/css/position.css', $type = 'text/css', $media = 'screen,projection');
|
||||
$doc->addStyleSheet($this->baseurl.'/templates/'.$this->template.'/css/layout.css', $type = 'text/css', $media = 'screen,projection');
|
||||
$doc->addStyleSheet($this->baseurl.'/templates/'.$this->template.'/css/print.css', $type = 'text/css', $media = 'print');
|
||||
|
||||
$files = JHtml::_('stylesheet', 'templates/'.$this->template.'/css/general.css', null, false, true);
|
||||
if ($files):
|
||||
if (!is_array($files)):
|
||||
$files = array($files);
|
||||
endif;
|
||||
foreach ($files as $file) :
|
||||
$doc->addStyleSheet($file);
|
||||
endforeach;
|
||||
endif;
|
||||
|
||||
$doc->addStyleSheet('templates/'.$this->template.'/css/'.htmlspecialchars($color).'.css');
|
||||
if ($this->direction == 'rtl')
|
||||
{
|
||||
$doc->addStyleSheet($this->baseurl.'/templates/'.$this->template.'/css/template_rtl.css');
|
||||
if (file_exists(JPATH_SITE . '/templates/' . $this->template . '/css/' . $color . '_rtl.css'))
|
||||
{
|
||||
$doc->addStyleSheet($this->baseurl.'/templates/'.$this->template.'/css/'.htmlspecialchars($color).'_rtl.css');
|
||||
}
|
||||
}
|
||||
?>
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $this->language; ?>" lang="<?php echo $this->language; ?>" dir="<?php echo $this->direction; ?>">
|
||||
<head>
|
||||
<jdoc:include type="head" />
|
||||
|
||||
<!--[if lte IE 6]>
|
||||
<link href="<?php echo $this->baseurl ?>/templates/<?php echo $this->template; ?>/css/ieonly.css" rel="stylesheet" type="text/css" />
|
||||
<![endif]-->
|
||||
<!--[if lt IE 9]>
|
||||
<script src="<?php echo $this->baseurl ?>/media/jui/js/html5.js"></script>
|
||||
<![endif]-->
|
||||
</head>
|
||||
<body class="contentpane">
|
||||
<div id="all">
|
||||
<div id="main">
|
||||
<jdoc:include type="message" />
|
||||
<jdoc:include type="component" />
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
335
templates/beez3/css/general.css
Normal file
@ -0,0 +1,335 @@
|
||||
/* not ready */
|
||||
|
||||
/* -- form validation */
|
||||
.invalid { border-color: #B94A48;background:#F2DEDE}
|
||||
label.invalid , label.required span{ color: #B94A48; background:none
|
||||
}
|
||||
|
||||
/* -- Joomla edit buttons Frontendediting*/
|
||||
#editor-xtd-buttons {
|
||||
padding: 0px;
|
||||
}
|
||||
.edit tr:hover td {background:#eee}
|
||||
.button2-left,
|
||||
.button2-right,
|
||||
.button2-left div,
|
||||
.button2-right div {
|
||||
float: left;
|
||||
}
|
||||
|
||||
.button2-left a,
|
||||
.button2-right a,
|
||||
.button2-left span,
|
||||
.button2-right span {
|
||||
display: block;
|
||||
float: left;
|
||||
color: #666;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.button2-left span,
|
||||
.button2-right span {
|
||||
cursor: default;
|
||||
color: #999;
|
||||
}
|
||||
|
||||
.button2-left .page a,
|
||||
.button2-right .page a,
|
||||
.button2-left .page span,
|
||||
.button2-right .page span {
|
||||
padding: 0 6px;
|
||||
}
|
||||
|
||||
.page span {
|
||||
color: #000;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
|
||||
.button2-left,
|
||||
.button2-right {
|
||||
|
||||
float: left;
|
||||
margin-left: 5px;
|
||||
}
|
||||
|
||||
|
||||
.edit .formelm-buttons {text-align:right}
|
||||
.edit .formelm-buttons button {background:#D9EDF7; color:#095197;}
|
||||
.edit .formelm-buttons button:hover {color:#D9EDF7; background:#095197;}
|
||||
.modal-button:link,
|
||||
.modal-button:visited,
|
||||
.button2-left .readmore a:link,
|
||||
.button2-left .readmore a:visited,
|
||||
.button2-left .blank a:link,
|
||||
.button2-left .blank a:visited
|
||||
{ background-color: #D9EDF7;
|
||||
|
||||
color:#095197;border:solid 1px #BCE8F1; border-top:0; border-radius:0 0 3px 3px; text-decoration:none; padding:3px}
|
||||
.button2-left a:hover,
|
||||
.button2-left .blank a:hover,
|
||||
.button2-left .readmore a:hover,
|
||||
.button2-right a:hover {
|
||||
text-decoration: none;
|
||||
color: #fff;
|
||||
background:#095197;
|
||||
}
|
||||
.pull-right {
|
||||
float: right;
|
||||
}
|
||||
.pull-left {
|
||||
float: left;
|
||||
}
|
||||
.btn-toolbar .btn {
|
||||
-moz-border-bottom-colors: none;
|
||||
-moz-border-left-colors: none;
|
||||
-moz-border-right-colors: none;
|
||||
-moz-border-top-colors: none;
|
||||
background-color: #D9EDF7;
|
||||
border-image: none;
|
||||
border-radius: 0 0 3px 3px;
|
||||
color: #095197;
|
||||
padding: 3px;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
div.toggle-editor {
|
||||
|
||||
}
|
||||
/* Caption fixes */
|
||||
.img_caption .left {
|
||||
float: left;
|
||||
margin-right: 1em;
|
||||
}
|
||||
|
||||
.img_caption .right {
|
||||
float: right;
|
||||
margin-left: 1em;
|
||||
}
|
||||
|
||||
.img_caption .left p {
|
||||
clear: left;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.img_caption .right p {
|
||||
clear: right;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.img_caption {
|
||||
text-align: center!important;
|
||||
}
|
||||
|
||||
.img_caption.none {
|
||||
margin-left:auto;
|
||||
margin-right:auto;
|
||||
}
|
||||
|
||||
|
||||
/* Calendar */
|
||||
#jform_publish_down_img {
|
||||
width: 18px;
|
||||
height: 18px;
|
||||
margin-left: 3px;
|
||||
background: url(../images/system/calendar.png) no-repeat;
|
||||
cursor: pointer;
|
||||
vertical-align: middle;
|
||||
}
|
||||
#jform_publish_up_img {
|
||||
width: 18px;
|
||||
height: 18px;
|
||||
margin-left: 3px;
|
||||
background: url(../images/system/calendar.png) no-repeat;
|
||||
cursor: pointer;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
|
||||
/* System Messages */
|
||||
|
||||
.error
|
||||
{
|
||||
padding:0px;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
.error h2
|
||||
{
|
||||
color:#000 !important;
|
||||
font-size:1.4em !important;
|
||||
text-transform:uppercase;
|
||||
padding:0 0 0 0px !important
|
||||
}
|
||||
|
||||
#system-message dt
|
||||
{
|
||||
font-weight: bold;
|
||||
}
|
||||
#system-message dd
|
||||
{
|
||||
margin: 0 0 15px 0;
|
||||
font-weight: bold;
|
||||
text-indent: 0px;
|
||||
padding:0
|
||||
}
|
||||
#system-message dd ul
|
||||
{
|
||||
color: #000;
|
||||
list-style: none;
|
||||
padding: 0px;
|
||||
}
|
||||
#system-message dd ul li
|
||||
{
|
||||
line-height:1.5em
|
||||
}
|
||||
|
||||
/* System Standard Messages */
|
||||
#system-message dt.message
|
||||
{
|
||||
position:absolute;
|
||||
top:-2000px;
|
||||
left:-3000px;
|
||||
}
|
||||
|
||||
#system-message dd.message ul
|
||||
{
|
||||
background: #fff url(../images/system/notice-info.png) no-repeat;
|
||||
padding-left:40px;
|
||||
padding: 10px 10px 10px 40px;
|
||||
border: 2px solid #90B203;
|
||||
border-radius:10px
|
||||
}
|
||||
|
||||
#system-message dd.message ul li{background:none !important}
|
||||
|
||||
/* System Error Messages */
|
||||
#system-message dt.error
|
||||
{
|
||||
position:absolute;
|
||||
top:-2000px;
|
||||
left:-3000px;
|
||||
}
|
||||
|
||||
#system-message dd.error ul
|
||||
{
|
||||
background:#fff url(../images/system/notice-alert.png) no-repeat ;
|
||||
padding-left:40px;
|
||||
padding: 10px 10px 10px 40px;
|
||||
border: 2px solid #990000;
|
||||
border-radius:10px
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
/* System Notice Messages */
|
||||
#system-message dt.notice
|
||||
{
|
||||
position:absolute;
|
||||
top:-2000px;
|
||||
left:-3000px;
|
||||
}
|
||||
|
||||
#system-message dd.notice ul
|
||||
{
|
||||
background:#fff url(../images/system/notice-note.png) no-repeat ;
|
||||
padding-left:40px;
|
||||
padding: 10px 10px 10px 40px;
|
||||
border: 2px solid #FAA528;
|
||||
border-radius:10px
|
||||
|
||||
}
|
||||
#system-message dd.notice ul { color: #000;margin:10px 0 }
|
||||
|
||||
#system-message
|
||||
{
|
||||
margin-bottom: 0px;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
#system-message dt
|
||||
{
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
#system-message dd
|
||||
{
|
||||
font-weight: bold;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
|
||||
.tip-wrap { background:#FEFDE2; font-size:0.8em ; padding:5px; border:solid 1px #ddd; border-radius:3px; box-shadow: 0 1px 5px #ccc }
|
||||
.tip-title {font-weight:bold}
|
||||
|
||||
#all #upload-flash ul li a:hover,
|
||||
#all .item a:hover span {
|
||||
background:#095197;
|
||||
color:#fff;
|
||||
}
|
||||
|
||||
|
||||
/* ########################## user profile ########################### */
|
||||
|
||||
#users-profile-core,
|
||||
#users-profile-custom
|
||||
{
|
||||
margin:10px 0 15px 0;
|
||||
padding:15px;
|
||||
}
|
||||
|
||||
#users-profile-core dt,
|
||||
#users-profile-custom dt
|
||||
{
|
||||
float:left;
|
||||
width:12em;
|
||||
padding:3px 0;
|
||||
|
||||
|
||||
}
|
||||
|
||||
#users-profile-core dd,
|
||||
#users-profile-custom dd
|
||||
{
|
||||
padding:3px 0;
|
||||
}
|
||||
|
||||
#member-profile fieldset,
|
||||
.registration fieldset
|
||||
{
|
||||
margin:10px 0 15px 0;
|
||||
padding:15px;
|
||||
|
||||
}
|
||||
|
||||
#users-profile-core legend,
|
||||
#users-profile-custom legend,
|
||||
.profile-edit legend,
|
||||
.registration legend
|
||||
{
|
||||
font-weight:bold
|
||||
}
|
||||
|
||||
.profile-edit form#member-profile fieldset dd,
|
||||
.registration form#member-registration fieldset dd
|
||||
{ float:none; padding:5px 0}
|
||||
|
||||
.profile-edit form#member-profile fieldset dd input,
|
||||
.profile-edit form#member-profile fieldset dd select,
|
||||
.registration form#member-registration fieldset dd input
|
||||
{width:17em}
|
||||
.profile-edit form#member-profile fieldset dt,
|
||||
.registration form#member-registration fieldset dt
|
||||
{padding:5px 5px 5px 0; width:13em}
|
||||
|
||||
|
||||
span.optional
|
||||
{font-size:0.9em}
|
||||
|
||||
/* ########################## clearing ########################### */
|
||||
.clr {
|
||||
clear: both;
|
||||
overflow: hidden;
|
||||
height: 0;
|
||||
}
|
||||
40
templates/beez3/css/ie7only.css
Normal file
@ -0,0 +1,40 @@
|
||||
/**
|
||||
* @author ( Angie Radtke )
|
||||
* @package Joomla
|
||||
* @subpackage Accessible-Template-Beez
|
||||
* @copyright Copyright (C) 2005 - 2009 Open Source Matters. All rights reserved.
|
||||
* @license GNU/GPL, see LICENSE.php
|
||||
* Joomla! is free software. This version may have been modified pursuant to the
|
||||
* GNU General Public License, and as distributed it includes or is derivative
|
||||
* of works licensed under the GNU General Public License or other free or open
|
||||
* source software licenses. See COPYRIGHT.php for copyright notices and
|
||||
* details.
|
||||
*/
|
||||
|
||||
|
||||
|
||||
div.current , fieldset {zoom:1}
|
||||
dl.tabs ,.tabs dt,.tabs dd ,
|
||||
{display:inline}
|
||||
.contact-links , .js_heading{zoom:1}
|
||||
|
||||
legend {margin-left:-7px}
|
||||
|
||||
#users-profile-core legend,
|
||||
#users-profile-custom legend,
|
||||
.profile-edit legend,
|
||||
.registration legend
|
||||
{margin-bottom:15px}
|
||||
|
||||
.login-fields input
|
||||
{width:14em}
|
||||
|
||||
#close a
|
||||
{
|
||||
cursor:pointer
|
||||
}
|
||||
|
||||
#close a span
|
||||
{
|
||||
line-height:normal
|
||||
}
|
||||
191
templates/beez3/css/ieonly.css
Normal file
@ -0,0 +1,191 @@
|
||||
/**
|
||||
|
||||
* @author ( Angie Radtke )
|
||||
* @package Joomla
|
||||
* @subpackage Accessible-Template-Beez
|
||||
* @copyright Copyright (C) 2005 - 2009 Open Source Matters. All rights reserved.
|
||||
* @license GNU/GPL, see LICENSE.php
|
||||
* Joomla! is free software. This version may have been modified pursuant to the
|
||||
* GNU General Public License, and as distributed it includes or is derivative
|
||||
* of works licensed under the GNU General Public License or other free or open
|
||||
* source software licenses. See COPYRIGHT.php for copyright notices and
|
||||
* details.
|
||||
*/
|
||||
|
||||
|
||||
|
||||
#all { width: expression(document . body . clientWidth > 1050 ? "1050" : "auto"); }
|
||||
#footer-inner { width: expression(document . body . clientWidth > 1050 ? "1025" : "auto"); }
|
||||
#footer { width: expression(document . body . clientWidth > 1050 ? "1020" : "auto"); }
|
||||
|
||||
#all
|
||||
{
|
||||
border:solid 1px #fff;
|
||||
zoom:1
|
||||
}
|
||||
|
||||
#header
|
||||
{ position:relative; zoom:1}
|
||||
|
||||
|
||||
#line
|
||||
{
|
||||
width:19.0em;
|
||||
margin-right:20px;
|
||||
|
||||
}
|
||||
|
||||
|
||||
#header ul.skiplinks li a
|
||||
{
|
||||
|
||||
background:#cc0000;
|
||||
border:0px solid #000
|
||||
|
||||
}
|
||||
|
||||
|
||||
#contentarea,
|
||||
#contentarea2
|
||||
{
|
||||
display:inline-block;
|
||||
position:relative;
|
||||
}
|
||||
|
||||
#main
|
||||
{
|
||||
height:520px;
|
||||
}
|
||||
|
||||
#back
|
||||
{
|
||||
margin: 0;
|
||||
padding:0 0px;
|
||||
}
|
||||
|
||||
#right
|
||||
{
|
||||
float:left;
|
||||
width: 20.5%;
|
||||
text-align:left !important
|
||||
}
|
||||
|
||||
.left
|
||||
{
|
||||
margin:10px 0px 10px 18px;
|
||||
|
||||
}
|
||||
|
||||
/* haslayout erzwingen */
|
||||
|
||||
.blog
|
||||
{
|
||||
width:100%
|
||||
}
|
||||
|
||||
.article_row
|
||||
{
|
||||
width:auto;
|
||||
}
|
||||
|
||||
.row1 .cols2
|
||||
{
|
||||
width:auto;
|
||||
}
|
||||
|
||||
.moduletable,
|
||||
.moduletable_js
|
||||
{
|
||||
zoom:1
|
||||
}
|
||||
|
||||
#nav ul li,
|
||||
#right ul li,
|
||||
#bottom ul li
|
||||
{
|
||||
height:1%
|
||||
}
|
||||
|
||||
p.articleinfo
|
||||
{
|
||||
display:inline-block
|
||||
}
|
||||
|
||||
h1
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
ul.tabs
|
||||
{
|
||||
text-align:left
|
||||
}
|
||||
|
||||
ul.newsflash-horiz,
|
||||
#footer-outer,
|
||||
ul.tabs
|
||||
{
|
||||
zoom:1
|
||||
}
|
||||
|
||||
.tabcontent
|
||||
{
|
||||
overflow:hidden !important;
|
||||
position:relative
|
||||
}
|
||||
|
||||
#main h1
|
||||
{ zoom:1}
|
||||
|
||||
.box {width:26%}
|
||||
|
||||
#bottom
|
||||
{display:inline-block}
|
||||
|
||||
.panel,
|
||||
div.current
|
||||
{zoom:1}
|
||||
|
||||
.contact-image
|
||||
{
|
||||
display:inline-block
|
||||
}
|
||||
.item-page
|
||||
{ width:100%}
|
||||
|
||||
#mailto-window .mailto-close a
|
||||
{
|
||||
|
||||
width:25px;
|
||||
height:25px;
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
#users-profile-core legend,
|
||||
#users-profile-custom legend,
|
||||
.profile-edit legend,
|
||||
.registration legend
|
||||
{
|
||||
margin-bottom:15px
|
||||
}
|
||||
|
||||
|
||||
.login-fields input
|
||||
{
|
||||
width:14em
|
||||
}
|
||||
|
||||
dd.error
|
||||
{zoom:1}
|
||||
|
||||
#close a
|
||||
{
|
||||
cursor:pointer
|
||||
}
|
||||
|
||||
#close a span
|
||||
{
|
||||
line-height:normal
|
||||
}
|
||||
1
templates/beez3/css/index.html
Normal file
@ -0,0 +1 @@
|
||||
<!DOCTYPE html><title></title>
|
||||
1050
templates/beez3/css/layout.css
Normal file
470
templates/beez3/css/nature.css
Normal file
@ -0,0 +1,470 @@
|
||||
/*
|
||||
* @author ( Angie Radtke )
|
||||
*/
|
||||
|
||||
|
||||
/* ########################## general ########################### */
|
||||
|
||||
body
|
||||
{
|
||||
font-family: arial, helvetica, sans-serif;
|
||||
background:#fff;
|
||||
color:#444
|
||||
}
|
||||
|
||||
h3 {
|
||||
color: #555
|
||||
}
|
||||
|
||||
h2 a {
|
||||
text-decoration: none
|
||||
}
|
||||
|
||||
h2, .moduletable h3 {
|
||||
border-bottom: solid 1px #ddd;
|
||||
}
|
||||
|
||||
.items-row h2
|
||||
{border-top: solid 1px #ddd;
|
||||
}
|
||||
|
||||
a:link,
|
||||
a:visited
|
||||
{
|
||||
color:#0A5E69
|
||||
}
|
||||
|
||||
a:hover,
|
||||
a:active,
|
||||
a:focus
|
||||
{
|
||||
background:#0A5E69;
|
||||
color:#FFF;
|
||||
}
|
||||
|
||||
/* ########################## logo ########################### */
|
||||
|
||||
.logoheader
|
||||
{
|
||||
border-top:solid 1px transparent;
|
||||
color:#fff;
|
||||
max-width: 1050px;
|
||||
margin:37px auto;
|
||||
min-height:20px;
|
||||
margin-bottom:0;
|
||||
|
||||
}
|
||||
.logoheader h1#logo
|
||||
{padding:20px 10px 0px 10px; }
|
||||
.logoheader h1#logo span.header1 {padding:0}
|
||||
|
||||
/* ########################## header ########################### */
|
||||
|
||||
#all {padding-top:13em}
|
||||
#line { position:relative; max-width:1050px; margin:0 auto; text-align:right; right:0; top:0em}
|
||||
#header
|
||||
{
|
||||
background: #004746; /* Old browsers */
|
||||
background-repeat: repeat-x;
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#185359", endColorstr="#007774");
|
||||
background: -moz-linear-gradient(top, #004746 0%, #0a5e69 25%, #185359 18%); /* FF3.6+ */
|
||||
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#004746), color-stop(25%,#0a5e69), color-stop(18%,#185359)); /* Chrome,Safari4+ */
|
||||
background: -webkit-linear-gradient(top, #004746 0%,#0a5e69 25%,#185359 18%); /* Chrome10+,Safari5.1+ */
|
||||
background: -o-linear-gradient(top, #004746 0%,#0a5e69 25%,#185359 18%); /* Opera 11.10+ */
|
||||
background: -ms-linear-gradient(top, #004746 0%,#0a5e69 25%,#185359 18%); /* IE10+ */
|
||||
background: linear-gradient(top, #004746 0%,#0a5e69 25%,#185359 18%); /* W3C */
|
||||
position:absolute;
|
||||
left:0;
|
||||
top:0;
|
||||
width:99.9%;
|
||||
padding:0;
|
||||
}
|
||||
/* green background */
|
||||
.button:hover, button:hover, p.readmore a:hover,
|
||||
.pagenav a:hover, .pagenav a:active, .pagenav a:focus, #advanced-search-toggle:hover, #advanced-search-toggle:active, #advanced-search-toggle:focus,
|
||||
.profile-edit a:hover, .profile-edit a:active, .profile-edit a:focus,
|
||||
#fontsize a:hover, #fontsize a:active, #fontsize a:focus,#mobile_select h2 a
|
||||
{
|
||||
|
||||
color: #fff;
|
||||
background: #008885; /* Old browsers */
|
||||
|
||||
|
||||
background-color: hsl(165, 27%, 27%) ;
|
||||
background-repeat: repeat-x;
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#008885", endColorstr="#004746");
|
||||
background-image: -khtml-gradient(linear, left top, left bottom, from(#008885), to(#004746));
|
||||
background-image: -moz-linear-gradient(top, #008885, #004746);
|
||||
background-image: -ms-linear-gradient(top, #008885, #004746);
|
||||
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #008885), color-stop(100%, #004746));
|
||||
background-image: -webkit-linear-gradient(top, #008885, #004746);
|
||||
background-image: -o-linear-gradient(top, #008885, #004746);
|
||||
background-image: linear-gradient(#008885, #004746);
|
||||
border-color: #004746 #004746 hsl(165, 27%, 22.5%);
|
||||
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.29);
|
||||
-webkit-font-smoothing: antialiased;
|
||||
}
|
||||
|
||||
/* ++++++++++++++ header menu ++++++++++++++ */
|
||||
|
||||
#header ul.menu
|
||||
{
|
||||
|
||||
border:0;
|
||||
list-style-type:none;
|
||||
border-radius:0;
|
||||
overflow:hidden;
|
||||
margin:0 auto ;
|
||||
text-align:right;
|
||||
position:absolute;
|
||||
top:0;
|
||||
right:10px;
|
||||
}
|
||||
|
||||
#header ul.menu li
|
||||
{
|
||||
border:0;
|
||||
|
||||
}
|
||||
#header ul.menu a {
|
||||
box-shadow:none;
|
||||
border-bottom:0
|
||||
}
|
||||
#header ul.menu li a:link,
|
||||
#header ul.menu li a:visited
|
||||
{
|
||||
color:#fff;
|
||||
border:0;
|
||||
border-right:solid 1px #237D85;
|
||||
box-shadow: none;
|
||||
background:transparent;
|
||||
padding:10px ;
|
||||
display:inline-block
|
||||
}
|
||||
#header ul.menu li:first-child a {border-radius:0}
|
||||
#header ul.menu li a:hover,
|
||||
#header ul.menu li a:active,
|
||||
#header ul.menu li a:focus
|
||||
{
|
||||
color:#333;
|
||||
background:#bddfb3;
|
||||
padding:10px
|
||||
}
|
||||
|
||||
#header ul li.active a:link,
|
||||
#header ul li.active a:visited
|
||||
{
|
||||
color:#333;
|
||||
border-right:solid 1px #237D85;
|
||||
background:#bddfb3;
|
||||
padding: 10px ;
|
||||
|
||||
}
|
||||
|
||||
#fontsize a , #fontsize h3 {color:#fff}
|
||||
/* grey background */
|
||||
.button, button , p.readmore a ,
|
||||
.pagenav a:link, .pagenav a:visited, #advanced-search-toggle , .profile-edit a:link,.profile-edit a:visited, h3.js_heading
|
||||
{
|
||||
background-color: #F5F5F5;
|
||||
background-image: -moz-linear-gradient(center top, #FFFFFF, #E6E6E6);
|
||||
background-repeat: repeat-x;
|
||||
border:solid 1px #ccc;
|
||||
box-shadow: 0 1px 0 rgba(255, 255, 255, 0.2) inset, 0 1px 2px
|
||||
rgba(0, 0, 0, 0.05);
|
||||
color: #004746;
|
||||
}
|
||||
|
||||
|
||||
/* ++++++++++++++++++++++ navigation ++++++++++++++++++++++++++ */
|
||||
|
||||
.moduletable_menu {
|
||||
border: solid 1px #ddd;
|
||||
background: #f9f9f9;
|
||||
|
||||
}
|
||||
#header ul.menu {
|
||||
border-color: #D5D5D5;
|
||||
}
|
||||
|
||||
ul.menu a:hover,
|
||||
ul.menu a:active,
|
||||
ul.menu a:focus {
|
||||
background-color: #F5F5F5;
|
||||
background-image: -moz-linear-gradient(center top, #FFFFFF, #E6E6E6);
|
||||
background-repeat: repeat-x;
|
||||
background:url(../images/3.0/arrow.png) no-repeat right center;
|
||||
color: color: #004746;
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
/* ++++++++++++++++ highlightning active menuitem +++++++++++++++++++ */
|
||||
|
||||
ul.menu li.active a,ul.menu li.active ul li.active a,
|
||||
ul.menu li.active ul li.active ul li.active a,
|
||||
ul.menu li.active ul li.active ul li.active ul li.active a ,
|
||||
ul.menu li.active ul li.active ul li.active ul li.active ul li.active a
|
||||
{font-weight:bold; }
|
||||
ul.menu li.active ul li a,
|
||||
ul.menu li.active ul li.active ul li a,
|
||||
ul.menu li.active ul li.active ul li.active ul li a,
|
||||
ul.menu li.active ul li.active ul li.active ul li.active ul li a
|
||||
{font-weight:normal}
|
||||
|
||||
ul.menu a
|
||||
{
|
||||
box-shadow:0 1px 0 #fff;
|
||||
border-bottom:solid 1px #ddd;
|
||||
|
||||
}
|
||||
|
||||
ul.menu ul a {
|
||||
background: #e5e5e5;
|
||||
margin-bottom:1px
|
||||
}
|
||||
|
||||
ul.menu ul ul ul a {
|
||||
background: #f5f5f5 url(../images/3.0/arrow.png) no-repeat 24px center ;
|
||||
|
||||
|
||||
}
|
||||
|
||||
ul.menu ul ul ul ul a {
|
||||
background: #fff;
|
||||
}
|
||||
|
||||
/* +++++++++++++++++ content +++++++++++++++ */
|
||||
|
||||
|
||||
.article-info {
|
||||
background-color: #fbfbfb;
|
||||
background-image: -moz-linear-gradient(top, #ffffff, #f5f5f5);
|
||||
background-image: -ms-linear-gradient(top, #ffffff, #f5f5f5);
|
||||
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff),
|
||||
to(#f5f5f5) );
|
||||
background-image: -webkit-linear-gradient(top, #ffffff, #f5f5f5);
|
||||
background-image: -o-linear-gradient(top, #ffffff, #f5f5f5);
|
||||
background-image: linear-gradient(top, #ffffff, #f5f5f5);
|
||||
background-repeat: repeat-x;
|
||||
filter: progid : DXImageTransform.Microsoft.gradient ( startColorstr =
|
||||
'#ffffff', endColorstr = '#f5f5f5', GradientType = 0 );
|
||||
border: 1px solid #ddd;
|
||||
-webkit-box-shadow: inset 0 1px 0 #ffffff;
|
||||
-moz-box-shadow: inset 0 1px 0 #ffffff;
|
||||
box-shadow: inset 0 1px 0 #ffffff;
|
||||
}
|
||||
|
||||
ul.menu a:link,ul.menu a:visited {
|
||||
color: #444;
|
||||
}
|
||||
|
||||
|
||||
#footer-inner, #footer , #footer-outer {
|
||||
background: #f5f5f5;
|
||||
}
|
||||
#footer-sub {background:#555;}
|
||||
#footer {background:#555; max-width:1025px; margin:0 auto; }
|
||||
#footer a {color:#fff}
|
||||
|
||||
.box1
|
||||
{border-right:solid 1px #ccc}
|
||||
.box3
|
||||
{border-left:solid 1px #ccc}
|
||||
#bottom ul li a
|
||||
{background-image:none;
|
||||
padding-left:0}
|
||||
|
||||
/* +++++++++++++++++++++++ SLIDER ++++++++++++++++++++ */
|
||||
|
||||
.panel h3.pane-toggler a
|
||||
{
|
||||
background: url(../images/slider_plus.png) right top no-repeat;
|
||||
color:#333
|
||||
}
|
||||
.panel h3.pane-toggler-down a
|
||||
{
|
||||
background: url(../images/slider_minus.png) right top no-repeat;
|
||||
border-bottom:solid 1px #ddd;
|
||||
color:#333
|
||||
}
|
||||
|
||||
/* +++++++++++++++++ Tabs ++++++++++++++++++++++ */
|
||||
|
||||
ul.tabs li,
|
||||
dl.tabs dt h3 a:link,
|
||||
dl.tabs dt h3 a:visited
|
||||
{
|
||||
background:#f5f5f5 url(../images/nature/box.png) repeat-x;
|
||||
|
||||
}
|
||||
ul.tabs li a:link,
|
||||
ul.tabs li a:visited,
|
||||
dl.tabs dt a
|
||||
{
|
||||
color:#333;
|
||||
border:solid 1px #ddd; border-bottom:0
|
||||
}
|
||||
|
||||
ul.tabs li a:hover,
|
||||
ul.tabs li a:active,
|
||||
ul.tabs li a:focus
|
||||
{
|
||||
color:#000
|
||||
}
|
||||
|
||||
.tabcontent, div.current
|
||||
{
|
||||
background:#fff;
|
||||
color:#000;
|
||||
border:solid 1px #ddd;
|
||||
}
|
||||
|
||||
.tabcontent .linkclosed
|
||||
{
|
||||
color:#000;
|
||||
border-bottom:solid 1px #e5e5e5;
|
||||
}
|
||||
|
||||
ul.tabs li a.linkopen,
|
||||
dl.tabs dt.open h3 a:link,
|
||||
dl.tabs dt.open h3 a:visited
|
||||
{
|
||||
background:#fff;
|
||||
color:#333;
|
||||
border-radius: 5px 5px 0px 0px;
|
||||
}
|
||||
|
||||
ul.tabs li a.linkclosed:hover,
|
||||
ul.tabs li a.linkclosed:active,
|
||||
ul.tabs li a.linkclosed:focus,
|
||||
ul.tabs li a.linkopen:hover,
|
||||
ul.tabs li a.linkopen:active,
|
||||
ul.tabs li a.linkopen:focus
|
||||
{
|
||||
background:#555;
|
||||
color:#fff
|
||||
}
|
||||
|
||||
|
||||
/* +++++++++++++++++ Pagination +++++++++++++++ */
|
||||
|
||||
.pagination span,
|
||||
.pagination span a:hover {
|
||||
color: #999999;
|
||||
background-color: #f5f5f5;
|
||||
}
|
||||
|
||||
/* active item */
|
||||
span.pagenav
|
||||
{
|
||||
background:#0A5E69;
|
||||
color:#fff
|
||||
}
|
||||
|
||||
.pagination-start span.pagenav,
|
||||
.pagination-prev span.pagenav,
|
||||
.pagination-end span.pagenav,
|
||||
.pagination-next span.pagenav
|
||||
|
||||
{
|
||||
background-color:#f5f5f5;
|
||||
color:#444
|
||||
}
|
||||
|
||||
/* +++++++++++++ table display Catgegories table, contact etc, ++++++++++++++++++++* */
|
||||
|
||||
table {border:solid 1px #ddd}
|
||||
table th
|
||||
{
|
||||
background-color: #0A5E69;;
|
||||
color: #fff;
|
||||
}
|
||||
table th a:link,
|
||||
table th a:visited
|
||||
{color:#fff}
|
||||
tr.odd, tr.cat-list-row1 {background:#f8f8f8}
|
||||
table tr:hover td,
|
||||
table tr:hover th {
|
||||
background-color: #FEFDE2;
|
||||
}
|
||||
|
||||
/* responsive */
|
||||
#mobile_select h2 {border:0; margin:-17px 0 0 0; padding:0; background:#004746;text-align:right}
|
||||
#mobile_select h2 a {
|
||||
display:inline-block;
|
||||
font-size:0.8em;
|
||||
border-radius:4px 4px 0 0;
|
||||
padding:6px;
|
||||
font-size:0.75em;
|
||||
margin-right:5px;
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 480px) {
|
||||
|
||||
img {
|
||||
max-width: 100%;
|
||||
height: auto;
|
||||
border: 0;
|
||||
-ms-interpolation-mode: bicubic;
|
||||
}
|
||||
|
||||
#fontsize{display:none}
|
||||
#nav,#wrapper2,#wrapper,.cols-3 .column-1,.cols-3 .column-2,.cols-3 .column-3,#right,.box,#header form
|
||||
{
|
||||
float: none;
|
||||
width: 100%
|
||||
}
|
||||
#header {padding-top:3em; position:relative; margin:0; max-height:auto !important; }
|
||||
#header form {margin:0}
|
||||
#all {padding-top:0}
|
||||
.logoheader {background:#004746 ; min-height:100px;margin:0 }
|
||||
.box {
|
||||
border-left: 0 !important;
|
||||
border-bottom: solid 1px #ddd;
|
||||
}
|
||||
#line {
|
||||
text-align: center;
|
||||
top: 0;
|
||||
right: auto;
|
||||
max-width: 100% ;
|
||||
min-width:100%;
|
||||
margin: 0 0px;
|
||||
background:#0A5E69;
|
||||
position:absolute
|
||||
}
|
||||
#header form input {
|
||||
float: none; margin-bottom:4px
|
||||
}
|
||||
#menuwrapper { margin-top:10px; background:#fff; padding:10px; width:97%}
|
||||
#header ul.menu {position:relative; top:0;left:20px; right:20px; margin:0; width:90%; border-radius:4px; text-align:left; border:0}
|
||||
#header ul.menu li:first-child a {border-radius: 4px 4px 0 0}
|
||||
#header ul.menu li:last-child a {border-radius:0 0 4px 4px }
|
||||
#header ul.menu li a:link,
|
||||
#header ul.menu li a:visited {
|
||||
display: block;
|
||||
padding: 6px 10px;
|
||||
border-right:0;
|
||||
border-bottom: solid 1px #ccc;
|
||||
background:#eee;
|
||||
color:#444
|
||||
}
|
||||
}
|
||||
|
||||
@media only screen and (min-width: 600px) {
|
||||
}
|
||||
|
||||
@media only screen and (min-width: 768px) {
|
||||
}
|
||||
|
||||
@media only screen and (min-width: 992px) {
|
||||
}
|
||||
|
||||
@media only screen and (min-width: 1382px) { /* Styles */
|
||||
}
|
||||
|
||||
@media only screen and (-webkit-min-device-pixel-ratio: 1.5) , only screen and
|
||||
(min--moz-device-pixel-ratio: 1.5) , only screen and
|
||||
(min-device-pixel-ratio: 1.5) { /* Styles */
|
||||
}
|
||||
11
templates/beez3/css/nature_rtl.css
Normal file
@ -0,0 +1,11 @@
|
||||
h1#logo {
|
||||
padding: 0.6em 20px 10px 10px;
|
||||
}
|
||||
|
||||
#header ul.menu {
|
||||
left: 0;
|
||||
right: auto;
|
||||
}
|
||||
#logo span {
|
||||
padding-right: 2px;
|
||||
}
|
||||
460
templates/beez3/css/personal.css
Normal file
@ -0,0 +1,460 @@
|
||||
body {
|
||||
background: #eee
|
||||
}
|
||||
|
||||
h3 {
|
||||
color: #555
|
||||
}
|
||||
|
||||
h2 a {
|
||||
text-decoration: none
|
||||
}
|
||||
|
||||
h2,.moduletable h3, .items-leading h2 {
|
||||
border-bottom: solid 1px #ddd;
|
||||
}
|
||||
|
||||
.items-row h2 {
|
||||
border-top: solid 1px #ddd;
|
||||
border-bottom: solid 1px #ddd;
|
||||
}
|
||||
|
||||
a:link,a:visited {
|
||||
color: #095197
|
||||
}
|
||||
|
||||
a:hover,a:active,a:focus {
|
||||
background: #095197;
|
||||
color: #FFF;
|
||||
}
|
||||
|
||||
.logoheader {
|
||||
background: url(../images/personal/personal2.png) no-repeat right
|
||||
bottom #0C1A3E;
|
||||
color: #FFFFFF;
|
||||
min-height: 250px;
|
||||
}
|
||||
|
||||
#all {
|
||||
background: #FFFFFF;
|
||||
color: #444;
|
||||
}
|
||||
|
||||
#shadow #all {
|
||||
box-shadow: 0px 20px 10px #555555
|
||||
}
|
||||
|
||||
#header ul.menu {
|
||||
background-color:#ddd;
|
||||
background-repeat: repeat-x;
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#eeeeee", endColorstr="#dddddd");
|
||||
background-image: -khtml-gradient(linear, left top, left bottom, from(#eeeeee), to(#dddddd));
|
||||
background-image: -moz-linear-gradient(top, #eeeeee, #dddddd);
|
||||
background-image: -ms-linear-gradient(top, #eeeeee, #dddddd);
|
||||
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #eeeeee), color-stop(100%, #dddddd));
|
||||
background-image: -webkit-linear-gradient(top, #eeeeee, #dddddd);
|
||||
background-image: -o-linear-gradient(top, #eeeeee, #dddddd);
|
||||
background-image: linear-gradient(#eeeeee, #dddddd);
|
||||
border-color: #b2b2b2 #b2b2b2 hsl(114, 0%, 62.5%);
|
||||
|
||||
text-shadow: 0 1px 1px rgba(255, 255, 255, 0.49);
|
||||
-webkit-font-smoothing: antialiased;
|
||||
box-shadow: 0 1px 0 rgba(255, 255, 255, 0.2) inset, 0 1px 2px
|
||||
rgba(0, 0, 0, 0.05);
|
||||
color: #095197;
|
||||
border: solid 1px #ddd;
|
||||
border: 1px solid #e5e5e5;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
#header ul.menu a:link,#header ul.menu a:visited {
|
||||
color: #333;
|
||||
display: inline-block;
|
||||
font-weight: bold;
|
||||
text-decoration: none;
|
||||
padding: 0px 10px;
|
||||
margin: 0;
|
||||
display: inline-block;
|
||||
margin: 0 0 0;
|
||||
padding: 12px 15px;
|
||||
position: relative;
|
||||
border-right: 1px solid #ddd;
|
||||
box-shadow: 1px 0px 0px #f5f5f5;
|
||||
}
|
||||
|
||||
/* grey background */
|
||||
.button,button,p.readmore a,#header input.button,.pagenav a:link,.pagenav a:visited,#advanced-search-toggle,.profile-edit a:link,.profile-edit a:visited,h3.js_heading
|
||||
{
|
||||
background-color:#ddd;
|
||||
background-repeat: repeat-x;
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff", endColorstr="#dddddd");
|
||||
background-image: -khtml-gradient(linear, left top, left bottom, from(#ffffff), to(#dddddd));
|
||||
background-image: -moz-linear-gradient(top, #ffffff, #dddddd);
|
||||
background-image: -ms-linear-gradient(top, #ffffff, #dddddd);
|
||||
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ffffff), color-stop(100%, #dddddd));
|
||||
background-image: -webkit-linear-gradient(top, #ffffff, #dddddd);
|
||||
background-image: -o-linear-gradient(top, #ffffff, #dddddd);
|
||||
background-image: linear-gradient(#ffffff, #dddddd);
|
||||
border-color: #b2b2b2 #b2b2b2 hsl(114, 0%, 62.5%);
|
||||
|
||||
text-shadow: 0 1px 1px rgba(255, 255, 255, 0.49);
|
||||
-webkit-font-smoothing: antialiased;
|
||||
box-shadow: 0 1px 0 rgba(255, 255, 255, 0.2) inset, 0 1px 2px
|
||||
rgba(0, 0, 0, 0.05);
|
||||
color: #095197;
|
||||
border: solid 1px #ddd
|
||||
}
|
||||
|
||||
/* +++++++++++++ table display Catgegories table, contact etc, ++++++++++++++++++++* */
|
||||
table {
|
||||
border: solid 1px #ddd
|
||||
}
|
||||
|
||||
table th {
|
||||
background-color: #0074cc;
|
||||
color: #fff;
|
||||
background-image: -moz-linear-gradient(top, #095197, #1B6BA5);
|
||||
background-image: -ms-linear-gradient(top, #095197, #1B6BA5);
|
||||
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#095197),
|
||||
to(#1B6BA5) );
|
||||
background-image: -webkit-linear-gradient(top, #095197, #1B6BA5);
|
||||
background-image: -o-linear-gradient(top, #095197, #1B6BA5);
|
||||
background-image: linear-gradient(top, #095197, #1B6BA5);
|
||||
background-repeat: repeat-x;
|
||||
filter: progid : DXImageTransform.Microsoft.gradient ( startColorstr
|
||||
=
|
||||
'#095197', endColorstr = '#1B6BA5', GradientType = 0 );
|
||||
border-color: #0055cc #0055cc #003580;
|
||||
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
|
||||
filter: progid : dximagetransform.microsoft.gradient ( enabled =
|
||||
false );
|
||||
}
|
||||
|
||||
table th a:link,table th a:visited {
|
||||
color: #fff
|
||||
}
|
||||
|
||||
tr.odd,tr.cat-list-row1 {
|
||||
background: #f8f8f8
|
||||
}
|
||||
|
||||
table tr:hover td {
|
||||
background: #FEFDE2;
|
||||
}
|
||||
|
||||
/* blue background */
|
||||
.button:hover,
|
||||
.button:active,
|
||||
.button:focus,
|
||||
button:hover,
|
||||
p.readmore a:hover,
|
||||
#header ul.menu a:hover,
|
||||
#header ul.menu a:active,
|
||||
#header ul.menu a:focus,
|
||||
.pagenav a:hover,
|
||||
.pagenav a:active,
|
||||
.pagenav a:focus,
|
||||
#advanced-search-toggle:hover,
|
||||
#advanced-search-toggle:active,
|
||||
#advanced-search-toggle:focus,
|
||||
.profile-edit a:hover,
|
||||
.profile-edit a:active,
|
||||
.profile-edit a:focus,
|
||||
#fontsize a:hover,#fontsize a:active,#fontsize a:focus,
|
||||
#mobile_select h2 a
|
||||
{
|
||||
background-color: #000000;
|
||||
color: #fff;
|
||||
|
||||
background-color:#095197;
|
||||
background-repeat: repeat-x;
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0087d1", endColorstr="#095197");
|
||||
background-image: -khtml-gradient(linear, left top, left bottom, from(#0087d1), to(#095197));
|
||||
background-image: -moz-linear-gradient(top, #0087d1, #095197);
|
||||
background-image: -ms-linear-gradient(top, #0087d1, #095197);
|
||||
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #0087d1), color-stop(100%, #095197));
|
||||
background-image: -webkit-linear-gradient(top, #0087d1, #095197);
|
||||
background-image: -o-linear-gradient(top, #0087d1, #095197);
|
||||
background-image: linear-gradient(#0087d1, #095197);
|
||||
border-color: #00456b #095197 hsl(201, 100%, 16%);
|
||||
color: #fff ;
|
||||
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.33);
|
||||
-webkit-font-smoothing: antialiased;
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
/* +++++++++++++++++ Pagination +++++++++++++++ */
|
||||
.pagination span,.pagination span a:hover {
|
||||
color: #999999;
|
||||
background-color: #f5f5f5;
|
||||
}
|
||||
|
||||
/* active item */
|
||||
span.pagenav {
|
||||
background: #095197;
|
||||
color: #fff
|
||||
}
|
||||
|
||||
.pagination-start span.pagenav,.pagination-prev span.pagenav,.pagination-end span.pagenav,.pagination-next span.pagenav
|
||||
{
|
||||
background-color: #f5f5f5;
|
||||
color: #444
|
||||
}
|
||||
|
||||
/* +++++++++++++++++ content +++++++++++++++ */
|
||||
.article-info {
|
||||
background-color: #fbfbfb;
|
||||
background-image: -moz-linear-gradient(top, #ffffff, #f5f5f5);
|
||||
background-image: -ms-linear-gradient(top, #ffffff, #f5f5f5);
|
||||
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff),
|
||||
to(#f5f5f5) );
|
||||
background-image: -webkit-linear-gradient(top, #ffffff, #f5f5f5);
|
||||
background-image: -o-linear-gradient(top, #ffffff, #f5f5f5);
|
||||
background-image: linear-gradient(top, #ffffff, #f5f5f5);
|
||||
background-repeat: repeat-x;
|
||||
filter: progid : DXImageTransform.Microsoft.gradient ( startColorstr
|
||||
=
|
||||
'#ffffff', endColorstr = '#f5f5f5', GradientType = 0 );
|
||||
border: 1px solid #ddd;
|
||||
-webkit-box-shadow: inset 0 1px 0 #ffffff;
|
||||
-moz-box-shadow: inset 0 1px 0 #ffffff;
|
||||
box-shadow: inset 0 1px 0 #ffffff;
|
||||
}
|
||||
|
||||
ul.menu a:link,ul.menu a:visited {
|
||||
color: #444;
|
||||
}
|
||||
|
||||
/* ++++++++++++++++++++++ menu ++++++++++++++++++++++++++ */
|
||||
.moduletable_menu {
|
||||
border: solid 1px #ddd;
|
||||
background: #f9f9f9;
|
||||
}
|
||||
|
||||
#header ul.menu {
|
||||
border: solid 1px #D5D5D5;
|
||||
box-shadow: 0 1px 0 #FFFFFF inset, 0 1px 5px rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
|
||||
#header ul.menu a {
|
||||
box-shadow: none;
|
||||
border-bottom: 0
|
||||
}
|
||||
|
||||
ul.menu a:hover,ul.menu a:active,ul.menu a:focus {
|
||||
background-color: #F5F5F5;
|
||||
background-image: -moz-linear-gradient(center top, #FFFFFF, #E6E6E6);
|
||||
background-repeat: repeat-x;
|
||||
background: url(../images/3.0/arrow.png) no-repeat right center;
|
||||
color: #095197
|
||||
}
|
||||
|
||||
/* ++++++++++++++++ highlightning active menuitem +++++++++++++++++++ */
|
||||
ul.menu li.active a,ul.menu li.active ul li.active a,ul.menu li.active ul li.active ul li.active a,ul.menu li.active ul li.active ul li.active ul li.active a,ul.menu li.active ul li.active ul li.active ul li.active ul li.active a
|
||||
{
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
ul.menu li.active ul li a,ul.menu li.active ul li.active ul li a,ul.menu li.active ul li.active ul li.active ul li a,ul.menu li.active ul li.active ul li.active ul li.active ul li a
|
||||
{
|
||||
font-weight: normal
|
||||
}
|
||||
|
||||
ul.menu a {
|
||||
box-shadow: 0 1px 0 #fff;
|
||||
border-bottom: solid 1px #ddd;
|
||||
text-shadow: 0 1px 0 #fff
|
||||
}
|
||||
|
||||
ul.menu ul a {
|
||||
background: #e5e5e5;
|
||||
margin-bottom: 1px
|
||||
}
|
||||
|
||||
ul.menu ul ul ul a {
|
||||
background: #f5f5f5 url(../images/3.0/arrow.png) no-repeat 24px center;
|
||||
}
|
||||
|
||||
ul.menu ul ul ul ul a {
|
||||
background: #fff;
|
||||
}
|
||||
|
||||
/* +++++++++++++++++++++++ SLIDER ++++++++++++++++++++ */
|
||||
.panel h3.pane-toggler a {
|
||||
background: url(../images/slider_plus.png) right top no-repeat;
|
||||
color: #333
|
||||
}
|
||||
|
||||
.panel h3.pane-toggler-down a {
|
||||
background: url(../images/slider_minus.png) right top no-repeat;
|
||||
border-bottom: solid 1px #ddd;
|
||||
color: #333
|
||||
}
|
||||
|
||||
/* +++++++++++++++++ Tabs ++++++++++++++++++++++ */
|
||||
ul.tabs li,dl.tabs dt h3 a:link,dl.tabs dt h3 a:visited {
|
||||
background: #f5f5f5 url(../images/nature/box.png) repeat-x;
|
||||
}
|
||||
|
||||
ul.tabs li a:link,ul.tabs li a:visited,dl.tabs dt a {
|
||||
color: #333;
|
||||
border: solid 1px #ddd;
|
||||
border-bottom: 0
|
||||
}
|
||||
|
||||
ul.tabs li a:hover,ul.tabs li a:active,ul.tabs li a:focus {
|
||||
color: #000
|
||||
}
|
||||
|
||||
.tabcontent,div.current {
|
||||
background: #fff;
|
||||
color: #000;
|
||||
border: solid 1px #ddd;
|
||||
}
|
||||
|
||||
.tabcontent .linkclosed {
|
||||
color: #000;
|
||||
border-bottom: solid 1px #e5e5e5;
|
||||
}
|
||||
|
||||
ul.tabs li a.linkopen,dl.tabs dt.open h3 a:link,dl.tabs dt.open h3 a:visited
|
||||
{
|
||||
background: #fff;
|
||||
color: #333;
|
||||
border-radius: 5px 5px 0px 0px;
|
||||
}
|
||||
|
||||
ul.tabs li a.linkclosed:hover,ul.tabs li a.linkclosed:active,ul.tabs li a.linkclosed:focus,ul.tabs li a.linkopen:hover,ul.tabs li a.linkopen:active,ul.tabs li a.linkopen:focus
|
||||
{
|
||||
background: #555;
|
||||
color: #fff
|
||||
}
|
||||
|
||||
#footer-inner,#footer {
|
||||
background: #f5f5f5;
|
||||
box-shadow: 0px 20px 10px #555
|
||||
}
|
||||
|
||||
#footer {
|
||||
background: #555;
|
||||
max-width: 1025px;
|
||||
margin: 0 auto;
|
||||
box-shadow: 0px 0px 10px #555555;
|
||||
color: #fff
|
||||
}
|
||||
|
||||
#footer a {
|
||||
color: #fff;
|
||||
background: none
|
||||
}
|
||||
|
||||
#bottom a {
|
||||
background: none
|
||||
}
|
||||
|
||||
.box1 {
|
||||
border-right: solid 1px #ccc
|
||||
}
|
||||
|
||||
.box3 {
|
||||
border-left: solid 1px #ccc
|
||||
}
|
||||
|
||||
#bottom ul li a {
|
||||
background-image: none;
|
||||
padding-left: 0
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
/* responsive */
|
||||
#mobile_select h2 {border:0; margin:-17px 0 0 0; padding:0; background:#0C1D43;text-align:right}
|
||||
#mobile_select h2 a {
|
||||
display:inline-block;
|
||||
font-size:0.8em;
|
||||
border-radius:4px 4px 0 0;
|
||||
padding:6px;
|
||||
font-size:0.75em;
|
||||
margin-right:5px;
|
||||
}
|
||||
|
||||
|
||||
|
||||
@media only screen and (max-width: 480px) {
|
||||
|
||||
img {
|
||||
max-width: 100%;
|
||||
height: auto;
|
||||
border: 0;
|
||||
-ms-interpolation-mode: bicubic;
|
||||
}
|
||||
|
||||
|
||||
#fontsize{display:none}
|
||||
#nav,#wrapper2,#wrapper,.cols-3 .column-1,.cols-3 .column-2,.cols-3 .column-3,#right,.box,#header form
|
||||
{
|
||||
float: none;
|
||||
width: 100%
|
||||
}
|
||||
#header {padding-top:3em}
|
||||
#header form {margin:0}
|
||||
.logoheader {background:#0C1D43; min-height:100px; margin:0}
|
||||
.box {
|
||||
border-left: 0 !important;
|
||||
border-bottom: solid 1px #ddd;
|
||||
}
|
||||
#line {
|
||||
text-align: center;
|
||||
top: 0;
|
||||
right: auto;
|
||||
max-width: 100% ;
|
||||
min-width:100%;
|
||||
|
||||
margin: 0 0px; background:#095197;
|
||||
}
|
||||
#header form input {
|
||||
float: none; margin-bottom:4px
|
||||
}
|
||||
#menuwrapper { margin-top:10px; }
|
||||
#header ul.menu {position:relative; top:0;left:20px; right:20px; margin:0; width:90%; border-radius:4px}
|
||||
#header ul.menu li:first-child a {border-radius: 4px 4px 0 0}
|
||||
#header ul.menu li:last-child a {border-radius:0 0 4px 4px }
|
||||
#header ul.menu li a:link,
|
||||
#header ul.menu li a:visited {
|
||||
display: block;
|
||||
padding: 6px 10px;
|
||||
border-bottom: solid 1px #ccc
|
||||
}
|
||||
}
|
||||
|
||||
@media only screen and (min-width: 600px) {
|
||||
}
|
||||
|
||||
@media only screen and (min-width: 768px) {
|
||||
}
|
||||
|
||||
@media only screen and (min-width: 992px) {
|
||||
}
|
||||
|
||||
@media only screen and (min-width: 1382px) { /* Styles */
|
||||
}
|
||||
|
||||
@media only screen and (-webkit-min-device-pixel-ratio: 1.5) , only screen and
|
||||
(min--moz-device-pixel-ratio: 1.5) , only screen and
|
||||
(min-device-pixel-ratio: 1.5) { /* Styles */
|
||||
}
|
||||
4
templates/beez3/css/personal_rtl.css
Normal file
@ -0,0 +1,4 @@
|
||||
h1#logo {
|
||||
margin-right: 90px;
|
||||
}
|
||||
|
||||
495
templates/beez3/css/position.css
Normal file
@ -0,0 +1,495 @@
|
||||
/**
|
||||
|
||||
* @author ( Angie Radtke )
|
||||
* @package Joomla
|
||||
* @subpackage Accessible-Template-Beez
|
||||
* @copyright Copyright (C) 2005 - 2009 Open Source Matters. All rights reserved.
|
||||
* @license GNU/GPL, see LICENSE.php
|
||||
* Joomla! is free software. This version may have been modified pursuant to the
|
||||
* GNU General Public License, and as distributed it includes or is derivative
|
||||
* of works licensed under the GNU General Public License or other free or open
|
||||
* source software licenses. See COPYRIGHT.php for copyright notices and
|
||||
* details.
|
||||
*/
|
||||
|
||||
html,
|
||||
body,
|
||||
body div,
|
||||
span,
|
||||
object,
|
||||
iframe,
|
||||
h1,
|
||||
h2,
|
||||
h3,
|
||||
h4,
|
||||
h5,
|
||||
h6,
|
||||
p,
|
||||
blockquote,
|
||||
pre,
|
||||
abbr,
|
||||
address,
|
||||
cite,
|
||||
code,
|
||||
del,
|
||||
dfn,
|
||||
em,
|
||||
img,
|
||||
ins,
|
||||
kbd,
|
||||
q,
|
||||
samp,
|
||||
small,
|
||||
strong,
|
||||
sub,
|
||||
sup,
|
||||
var,
|
||||
b,
|
||||
i,
|
||||
dl,
|
||||
dt,
|
||||
dd,
|
||||
ol,
|
||||
ul,
|
||||
li,
|
||||
fieldset,
|
||||
form,
|
||||
label,
|
||||
legend,
|
||||
table,
|
||||
caption,
|
||||
tbody,
|
||||
tfoot,
|
||||
thead,
|
||||
tr,
|
||||
th,
|
||||
td,
|
||||
article,
|
||||
aside,
|
||||
figure,
|
||||
footer,
|
||||
header,
|
||||
hgroup,
|
||||
menu,
|
||||
nav,
|
||||
section,
|
||||
time,
|
||||
mark,
|
||||
audio,
|
||||
video {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
border: 0;
|
||||
outline: 0;
|
||||
vertical-align: baseline;
|
||||
background: transparent;
|
||||
}
|
||||
|
||||
article,
|
||||
aside,
|
||||
figure,
|
||||
footer,
|
||||
header,
|
||||
hgroup,
|
||||
nav,
|
||||
section {
|
||||
display: block;
|
||||
}
|
||||
|
||||
html {
|
||||
background: #ffffff;
|
||||
font-size: 100.01%;
|
||||
-webkit-overflow-scrolling: touch;
|
||||
-webkit-tap-highlight-color: #f3f5f6;
|
||||
-webkit-text-size-adjust: 100%;
|
||||
-ms-text-size-adjust: 100%;
|
||||
}
|
||||
|
||||
body {
|
||||
|
||||
position: relative;
|
||||
width: 100%;
|
||||
line-height: 1.5em;
|
||||
background: #eee
|
||||
}
|
||||
|
||||
/* ###################### general ###################### */
|
||||
#all {
|
||||
margin: 0 auto;
|
||||
max-width: 1050px;
|
||||
padding: 0;
|
||||
text-align: left;
|
||||
font-size: 0.8em
|
||||
}
|
||||
|
||||
#header {
|
||||
display: block !important;
|
||||
position: relative;
|
||||
padding: 8em 0 0 0;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
#header ul {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 5em;
|
||||
right: 0;
|
||||
display: block;
|
||||
margin: 0 0 1px 0;
|
||||
text-align: right;
|
||||
list-style-type: none;
|
||||
padding: 10px 0
|
||||
}
|
||||
|
||||
#back {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
#contentarea,
|
||||
#contentarea2 {
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
padding: 0 20px !important;
|
||||
margin: 0;
|
||||
|
||||
}
|
||||
|
||||
#wrapper {
|
||||
width: 53%;
|
||||
float: left;
|
||||
position: relative;
|
||||
|
||||
}
|
||||
|
||||
#wrapper2 {
|
||||
width: 72%;
|
||||
float: left;
|
||||
position: relative;
|
||||
padding-bottom: 20px;
|
||||
overflow: hidden
|
||||
|
||||
}
|
||||
|
||||
#wrapper2 .item-page {
|
||||
max-width: 660px
|
||||
}
|
||||
|
||||
#main {
|
||||
padding-top: 10px;
|
||||
padding-bottom: 20px;
|
||||
position: relative;
|
||||
|
||||
}
|
||||
|
||||
#right {
|
||||
float: left;
|
||||
width: 20%;
|
||||
margin: 10px 0 10px 2%;
|
||||
padding: 0 0 5px 0;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.unseen,
|
||||
.hidelabeltxt,
|
||||
#line label {
|
||||
display: inline;
|
||||
height: 0;
|
||||
left: -3000px;
|
||||
position: absolute;
|
||||
top: -2000px;
|
||||
width: 0;
|
||||
}
|
||||
|
||||
/* ++++++++++++++ nav after content ++++++++++++++ */
|
||||
.left {
|
||||
padding-top: 0;
|
||||
float: right;
|
||||
margin: 10px 0 10px 0;
|
||||
width: 22%;
|
||||
position: relative;
|
||||
|
||||
}
|
||||
|
||||
/* ++++++++++++++ nav before content ++++++++++++++ */
|
||||
.left1 {
|
||||
padding: 0;
|
||||
float: left;
|
||||
margin: 10px 3% 10px 0;
|
||||
width: 21%;
|
||||
position: relative
|
||||
}
|
||||
|
||||
.leftbigger {
|
||||
width: 25%
|
||||
}
|
||||
|
||||
/* ###################### header ###################### */
|
||||
|
||||
.skiplinks,
|
||||
.skiplinks li {
|
||||
display: inline;
|
||||
height: 0;
|
||||
line-height: 0;
|
||||
padding: 0 !important;
|
||||
}
|
||||
|
||||
.skiplinks li a.u2 {
|
||||
display: inline;
|
||||
height: 0;
|
||||
left: -3000px;
|
||||
position: absolute;
|
||||
top: -2000px;
|
||||
width: 0;
|
||||
|
||||
}
|
||||
|
||||
.skiplinks li a.u2:active,
|
||||
.skiplinks li a.u2:focus {
|
||||
position: absolute;
|
||||
width: 13em;
|
||||
top: -4em;
|
||||
left: 10px;
|
||||
line-height: 1.5em;
|
||||
padding: 5px;
|
||||
font-weight: bold;
|
||||
height: 3em;
|
||||
|
||||
}
|
||||
|
||||
.wrap {
|
||||
border: 0;
|
||||
clear: both;
|
||||
float: none;
|
||||
font-size: 1px;
|
||||
height: 0;
|
||||
line-height: 1px;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
visibility: hidden;
|
||||
}
|
||||
|
||||
#logo {
|
||||
margin-top: 0;
|
||||
margin-left: 10px;
|
||||
display: block;
|
||||
padding: 1em 20px 20px 10px;
|
||||
width: 425px;
|
||||
font-weight: normal;
|
||||
line-height: 1em;
|
||||
|
||||
}
|
||||
|
||||
#logo img {
|
||||
display: block;
|
||||
}
|
||||
|
||||
#logo span {
|
||||
padding-left: 2px
|
||||
}
|
||||
|
||||
#logo span.header1 {
|
||||
display: block;
|
||||
top: 0;
|
||||
line-height: 0.8em;
|
||||
font-size: 0.7em;
|
||||
padding-left: 55px
|
||||
}
|
||||
|
||||
.logoheader {
|
||||
margin: -2px 10px 0;
|
||||
padding: 0;
|
||||
text-align: left;
|
||||
font-weight: normal;
|
||||
line-height: 1.5em;
|
||||
}
|
||||
.header1 {
|
||||
font-size: 1.5em;
|
||||
margin-left: 10px;
|
||||
}
|
||||
|
||||
#line {
|
||||
padding: 5px 0 2px 2px;
|
||||
position: absolute;
|
||||
right: 10px;
|
||||
top: 0.5em;
|
||||
max-width: 40em;
|
||||
text-align: right;
|
||||
min-width: 40em
|
||||
|
||||
}
|
||||
|
||||
#fontsize,
|
||||
#line .search {
|
||||
display: inline;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
/* ++++++++++++++ button for closing right column ++++++++++++++ */
|
||||
|
||||
#close {
|
||||
margin-right: 0;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
#close span {
|
||||
position: absolute;
|
||||
right: 20px;
|
||||
z-index: 10000;
|
||||
top: 5px;
|
||||
font-weight: bold;
|
||||
text-align: right;
|
||||
line-height: 1.5em;
|
||||
margin-top:20px;
|
||||
padding: 5px
|
||||
}
|
||||
|
||||
#close > a {
|
||||
display: block;
|
||||
overflow: hidden
|
||||
}
|
||||
|
||||
#close > a:hover span {
|
||||
background: #095197
|
||||
}
|
||||
|
||||
/* ###################### main ###################### */
|
||||
|
||||
/* ++++++++++++++ position ++++++++++++++ */
|
||||
|
||||
.blog-featured {
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.items-leading {
|
||||
padding: 0 5px 10px 5px;
|
||||
overflow: hidden;
|
||||
margin-bottom: 10px
|
||||
}
|
||||
|
||||
.row-separator {
|
||||
display: block;
|
||||
clear: both;
|
||||
margin: 0;
|
||||
border: 0;
|
||||
height: 1px
|
||||
}
|
||||
|
||||
.item-separator {
|
||||
display: none;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.shownocolumns {
|
||||
width: 98% !important;
|
||||
}
|
||||
|
||||
#top {
|
||||
margin: 0 0 20px 0;
|
||||
overflow: hidden
|
||||
}
|
||||
|
||||
/* ++++++++++++++ blog ++++++++++++++ */
|
||||
|
||||
.cols-1 {
|
||||
display: block;
|
||||
float: none !important;
|
||||
margin: 0 !important;
|
||||
}
|
||||
|
||||
.cols-2 .column-1 {
|
||||
width: 46%;
|
||||
float: left;
|
||||
}
|
||||
|
||||
.cols-2 .column-2 {
|
||||
width: 46%;
|
||||
float: right;
|
||||
margin: 0
|
||||
}
|
||||
|
||||
.cols-3 .column-1 {
|
||||
float: left;
|
||||
width: 29%;
|
||||
padding: 0 5px;
|
||||
margin-right: 4%
|
||||
|
||||
}
|
||||
|
||||
.cols-3 .column-2 {
|
||||
float: left;
|
||||
width: 29%;
|
||||
margin-left: 0;
|
||||
padding: 0 5px
|
||||
}
|
||||
|
||||
.cols-3 .column-3 {
|
||||
float: right;
|
||||
width: 29%;
|
||||
padding: 0 5px
|
||||
}
|
||||
|
||||
.items-row {
|
||||
overflow: hidden;
|
||||
margin-bottom: 10px !important;
|
||||
}
|
||||
|
||||
.column-1,
|
||||
.column-2,
|
||||
.column-3 {
|
||||
padding: 10px 5px
|
||||
}
|
||||
|
||||
.column-2 {
|
||||
width: 55%;
|
||||
margin-left: 40%;
|
||||
}
|
||||
|
||||
.column-3 {
|
||||
width: 30%
|
||||
}
|
||||
|
||||
.blog-more {
|
||||
padding: 10px 5px
|
||||
}
|
||||
|
||||
/* ++++++++++++++ footer ++++++++++++++ */
|
||||
|
||||
#bottom {
|
||||
overflow: hidden
|
||||
}
|
||||
|
||||
.box {
|
||||
width: 27%;
|
||||
float: left;
|
||||
margin-right: 10px;
|
||||
min-height: 100px
|
||||
}
|
||||
|
||||
.box1 {
|
||||
width: 35%
|
||||
}
|
||||
|
||||
.box2 {
|
||||
width: 32%
|
||||
}
|
||||
|
||||
.box3 {
|
||||
float: right
|
||||
}
|
||||
|
||||
#footer-inner, #footer {
|
||||
max-width: 1025px;
|
||||
margin: 0 auto;
|
||||
|
||||
padding: 10px 15px 10px 10px;
|
||||
}
|
||||
|
||||
img {
|
||||
border: 0 none;
|
||||
}
|
||||
|
||||
/* hide the mobile menu button */
|
||||
#mobile_select {
|
||||
display: none
|
||||
}
|
||||
464
templates/beez3/css/print.css
Normal file
@ -0,0 +1,464 @@
|
||||
/**
|
||||
* @author Design & Accessible Team ( Angie Radtke / Robert Deutz )
|
||||
* @package Joomla
|
||||
* @subpackage Accessible-Template-Beez
|
||||
* @copyright Copyright (C) 2005 - 2008 Open Source Matters. All rights reserved.
|
||||
* @license GNU/GPL, see LICENSE.php
|
||||
* Joomla! is free software. This version may have been modified pursuant to the
|
||||
* GNU General Public License, and as distributed it includes or is derivative
|
||||
* of works licensed under the GNU General Public License or other free or open
|
||||
* source software licenses. See COPYRIGHT.php for copyright notices and
|
||||
* details.
|
||||
*/
|
||||
|
||||
|
||||
/* not ready */
|
||||
|
||||
h1,
|
||||
#main h1
|
||||
{
|
||||
font-size: 16pt;
|
||||
font-weight: bold;
|
||||
margin: 0.4em 0 0.5em 0;
|
||||
padding:0;
|
||||
}
|
||||
|
||||
h2,
|
||||
#main h2
|
||||
{
|
||||
font-size: 14pt;
|
||||
font-weight: bold;
|
||||
margin: 0.2em 0 0.5em 0;
|
||||
padding: 0.3em 0.3em 0.3em 0;
|
||||
}
|
||||
|
||||
h3
|
||||
{
|
||||
font-size: 12pt;
|
||||
font-weight: bold;
|
||||
margin: 0.4em 0 0.2em 0;
|
||||
}
|
||||
|
||||
/* Vermeidung von Seitenumbr<62>chen direkt nach einer <20>berschrift */
|
||||
h1,
|
||||
h2,
|
||||
h3
|
||||
{
|
||||
page-break-after: avoid;
|
||||
}
|
||||
|
||||
body
|
||||
{
|
||||
line-height:150%;
|
||||
font-family:Arial, Verdana, Helvetica, sans-serif;
|
||||
}
|
||||
|
||||
p,
|
||||
ul li, ol li,
|
||||
address,
|
||||
.category-desc,
|
||||
table,
|
||||
label,
|
||||
dt,
|
||||
dd
|
||||
{
|
||||
font-size:10pt
|
||||
}
|
||||
|
||||
address
|
||||
{
|
||||
font-style:normal
|
||||
}
|
||||
|
||||
.contact-address address span
|
||||
{
|
||||
display:block
|
||||
}
|
||||
|
||||
a
|
||||
{
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.unseen,
|
||||
#line,
|
||||
#header ul,
|
||||
#breadcrumbs,
|
||||
.article-info-term,
|
||||
ul.actions,
|
||||
#close,
|
||||
.display-limit,
|
||||
.moduletable_menu,
|
||||
.moduletable_js,
|
||||
.tabouter,
|
||||
#bottom,
|
||||
.pagination,
|
||||
#footer,
|
||||
#header-image
|
||||
|
||||
{
|
||||
display: none;
|
||||
}
|
||||
|
||||
.skiplinks,
|
||||
#suckerfish
|
||||
{
|
||||
display:none !important
|
||||
}
|
||||
|
||||
#header .logoheader
|
||||
{
|
||||
border:0;
|
||||
}
|
||||
|
||||
#header
|
||||
{
|
||||
width: auto;
|
||||
}
|
||||
|
||||
#all #back #header
|
||||
{
|
||||
padding-top:0
|
||||
}
|
||||
|
||||
|
||||
#all
|
||||
{
|
||||
text-align:left;
|
||||
border:solid 0px #000
|
||||
}
|
||||
|
||||
#back
|
||||
{
|
||||
border:solid 0px #000;
|
||||
padding:0
|
||||
}
|
||||
|
||||
#right
|
||||
{
|
||||
display: block;
|
||||
}
|
||||
|
||||
#header h1#logo
|
||||
{
|
||||
font-size:20pt;
|
||||
font-weight:normal
|
||||
}
|
||||
|
||||
#contentarea2,
|
||||
#contentarea
|
||||
{
|
||||
border: solid 0px #000;
|
||||
padding:0 !important
|
||||
}
|
||||
|
||||
#main .blog-featured h1
|
||||
{
|
||||
padding:0 !important;
|
||||
}
|
||||
|
||||
#main #top
|
||||
{
|
||||
overflow:hidden;
|
||||
margin-bottom:25pt;
|
||||
border:0
|
||||
}
|
||||
|
||||
#main .categories-listalphabet ul
|
||||
{
|
||||
padding-left:0
|
||||
}
|
||||
|
||||
#main .categories-listalphabet ul li
|
||||
{
|
||||
display:inline;
|
||||
padding:5pt;
|
||||
border-right:solid 1pt #ddd
|
||||
}
|
||||
|
||||
#wrapper
|
||||
{
|
||||
display:block;
|
||||
width:100% !important;
|
||||
}
|
||||
|
||||
.item
|
||||
{
|
||||
margin-bottom:30pt
|
||||
}
|
||||
|
||||
.category-desc
|
||||
{
|
||||
margin:15pt 0
|
||||
}
|
||||
|
||||
.items-leading
|
||||
{
|
||||
margin-bottom:30pt
|
||||
}
|
||||
|
||||
#main .items-leading h2,
|
||||
#main .item h2
|
||||
{
|
||||
font-size: 14pt;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
h2 a
|
||||
{
|
||||
text-decoration:none
|
||||
}
|
||||
|
||||
#main h1
|
||||
{
|
||||
padding:5pt
|
||||
}
|
||||
|
||||
#main .readmore a
|
||||
{
|
||||
border:0 !important;
|
||||
padding-left:0 !important
|
||||
}
|
||||
|
||||
.image-left {
|
||||
float:left;
|
||||
margin:0 15pt 5pt 0;
|
||||
}
|
||||
|
||||
table
|
||||
{
|
||||
margin:20pt 0;
|
||||
border-collapse:collapse;
|
||||
width:90%;
|
||||
}
|
||||
|
||||
table td,
|
||||
table th
|
||||
{
|
||||
padding:2pt 5pt;
|
||||
border:solid 1pt #ddd
|
||||
}
|
||||
|
||||
.items-more h3
|
||||
{
|
||||
padding: 5pt 0;
|
||||
font-size:14pt
|
||||
}
|
||||
|
||||
.items-more ol li a
|
||||
{
|
||||
font-weight:normal
|
||||
}
|
||||
|
||||
#nav a.readmore
|
||||
{
|
||||
font-size:10pt
|
||||
}
|
||||
|
||||
#nav .module_content
|
||||
{
|
||||
margin-bottom:20pt;
|
||||
border:0 !important;
|
||||
padding:0 !important
|
||||
}
|
||||
|
||||
#nav .moduletable ul.menu
|
||||
{
|
||||
border:0;
|
||||
list-style-type:none;
|
||||
padding:0
|
||||
}
|
||||
|
||||
#nav .moduletable ul.menu,
|
||||
#nav .moduletable ul.menu ul,
|
||||
#nav .moduletable ul.menu ul ul
|
||||
{
|
||||
border:0;
|
||||
list-style-type:none
|
||||
}
|
||||
|
||||
#nav .moduletable ul.menu ul,
|
||||
#nav .moduletable ul.menu ul ul
|
||||
{
|
||||
padding-left:15pt
|
||||
}
|
||||
|
||||
#nav .moduletable ul.menu li
|
||||
{
|
||||
border:0
|
||||
}
|
||||
|
||||
#nav .moduletable ul.menu li a,
|
||||
#nav .moduletable ul.menu li.active ul li a,
|
||||
#nav .moduletable ul.menu li.active ul li.active ul li a
|
||||
{
|
||||
text-decoration:none;
|
||||
border:solid 0px #000
|
||||
}
|
||||
|
||||
ul#archive-items
|
||||
{
|
||||
list-style-type:none;
|
||||
padding-left:0
|
||||
}
|
||||
|
||||
.moduletable
|
||||
{
|
||||
margin:20pt 0
|
||||
}
|
||||
|
||||
dl.article-info
|
||||
{
|
||||
line-height:120%;
|
||||
font-size:9pt
|
||||
}
|
||||
|
||||
dl.article-info dd
|
||||
{
|
||||
margin-left:0
|
||||
}
|
||||
|
||||
h3.js_heading a img
|
||||
{
|
||||
border:0
|
||||
}
|
||||
|
||||
h3.js_heading,
|
||||
#bottom h3,
|
||||
.moduletable h3,
|
||||
#nav h3
|
||||
{
|
||||
font-size:12pt !important;
|
||||
}
|
||||
|
||||
.category-list
|
||||
{
|
||||
padding:0 !important;
|
||||
}
|
||||
|
||||
.moduletable_js
|
||||
{
|
||||
margin-bottom:20pt
|
||||
}
|
||||
|
||||
.tabouter
|
||||
{
|
||||
border:solid 0px ;
|
||||
overflow:hidden;
|
||||
margin:20pt 0
|
||||
}
|
||||
|
||||
ul.tabs
|
||||
{
|
||||
padding:0;
|
||||
}
|
||||
|
||||
ul.tabs li.tab
|
||||
{
|
||||
list-style-type:none;
|
||||
text-transform:uppercase;
|
||||
display:inline;
|
||||
border-right:solid 1pt #ddd;
|
||||
padding:2pt 10pt
|
||||
}
|
||||
|
||||
ul.tabs li.tab a
|
||||
{
|
||||
text-decoration:none;
|
||||
}
|
||||
|
||||
.tabcontent
|
||||
{
|
||||
padding:10pt
|
||||
}
|
||||
|
||||
.contact-email div
|
||||
{
|
||||
overflow:hidden
|
||||
}
|
||||
|
||||
.contact-email label
|
||||
{
|
||||
border:solid 0px #000;
|
||||
float:left;
|
||||
width:10em
|
||||
}
|
||||
|
||||
.login div
|
||||
{
|
||||
overflow:hidden
|
||||
}
|
||||
|
||||
.login label
|
||||
{
|
||||
float:left;
|
||||
width:10em
|
||||
}
|
||||
|
||||
form fieldset dt
|
||||
{
|
||||
clear:left;
|
||||
float:left;
|
||||
width:12em;
|
||||
}
|
||||
|
||||
legend
|
||||
{
|
||||
background:#fff;
|
||||
font-size:.85em
|
||||
}
|
||||
|
||||
.phrases,
|
||||
.only
|
||||
{
|
||||
margin-bottom:15pt
|
||||
}
|
||||
|
||||
.newsflash a.readmore:link
|
||||
{
|
||||
border: solid 0pt ;
|
||||
font-weight:normal;
|
||||
font-size:0.8em;
|
||||
text-decoration:none
|
||||
}
|
||||
|
||||
.stats dt
|
||||
{
|
||||
float:left;
|
||||
width:10em
|
||||
}
|
||||
|
||||
#footer-outer
|
||||
{
|
||||
border:solid 0px;
|
||||
padding:0;
|
||||
background:none
|
||||
}
|
||||
|
||||
#bottom
|
||||
{
|
||||
text-align:left
|
||||
}
|
||||
|
||||
#footer-outer #bottom .box .moduletable
|
||||
{
|
||||
border-bottom:solid 1px #ddd;
|
||||
padding:10pt 0
|
||||
}
|
||||
|
||||
#footer-outer #bottom .box1,
|
||||
#footer-outer #bottom .box3
|
||||
{
|
||||
border:0;
|
||||
}
|
||||
|
||||
#bottom ul
|
||||
{
|
||||
list-style-type:none;
|
||||
padding:0 !important
|
||||
}
|
||||
|
||||
#bottom ul li
|
||||
{
|
||||
border:solid 0px #c00
|
||||
}
|
||||
2
templates/beez3/css/red.css
Normal file
32
templates/beez3/css/template.css
Normal file
@ -0,0 +1,32 @@
|
||||
/**
|
||||
* @author Design & Accessible Team ( Angie Radtke )
|
||||
* @package Joomla
|
||||
* @subpackage Accessible-Template-Beez
|
||||
* @copyright Copyright (C) 2005 - 2008 Open Source Matters. All rights reserved.
|
||||
* @license GNU/GPL, see LICENSE.php
|
||||
* Joomla! is free software. This version may have been modified pursuant to the
|
||||
* GNU General Public License, and as distributed it includes or is derivative
|
||||
* of works licensed under the GNU General Public License or other free or open
|
||||
* source software licenses. See COPYRIGHT.php for copyright notices and
|
||||
* details.
|
||||
*/
|
||||
|
||||
|
||||
body
|
||||
{
|
||||
background: #fff;
|
||||
color: #000000;
|
||||
font-size: 100.1%;
|
||||
padding: 0px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
body.contentpane {
|
||||
width:auto;
|
||||
margin:10px;
|
||||
text-align: left;
|
||||
}
|
||||
img { border: 0 none; }
|
||||
|
||||
|
||||
|
||||
507
templates/beez3/css/template_rtl.css
Normal file
@ -0,0 +1,507 @@
|
||||
/**
|
||||
* @author Design & Accessible Team ( Angie Radtke )
|
||||
* @package Joomla
|
||||
* @subpackage Accessible-Template-Beez
|
||||
* @copyright Copyright (C) 2005 - 2013 Open Source Matters. All rights reserved.
|
||||
* @license GNU/GPL, see LICENSE.php
|
||||
* Joomla! is free software. This version may have been modified pursuant to the
|
||||
* GNU General Public License, and as distributed it includes or is derivative
|
||||
* of works licensed under the GNU General Public License or other free or open
|
||||
* source software licenses. See COPYRIGHT.php for copyright notices and
|
||||
* details.
|
||||
*/
|
||||
|
||||
|
||||
#all
|
||||
{
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
#wrapper
|
||||
{
|
||||
float:right;
|
||||
}
|
||||
|
||||
|
||||
#logo span
|
||||
{
|
||||
padding-right:15px;}
|
||||
|
||||
|
||||
h1#logo{
|
||||
font-family: 'Titillium Maps', Arial;
|
||||
padding:0.9em 20px 20px 10px;
|
||||
/*text-transform:uppercase;*/
|
||||
text-align:right;
|
||||
}
|
||||
|
||||
#logo
|
||||
{
|
||||
margin-top:0.6em;
|
||||
margin-left:10px;
|
||||
/* position:absolute;*/
|
||||
display:block;
|
||||
padding:20px 20px 20px 10px;
|
||||
width:425px;
|
||||
padding-top:0.6em;
|
||||
font-weight:normal;
|
||||
line-height:1em;
|
||||
font-size:3em;
|
||||
}
|
||||
|
||||
.logoheader
|
||||
{
|
||||
text-align:right;
|
||||
}
|
||||
|
||||
/* ########################## header ########################### */
|
||||
|
||||
#header
|
||||
{
|
||||
font-size:1em;
|
||||
position:relative
|
||||
}
|
||||
|
||||
#header ul.menu {
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
/* ++++++++++++++ search box+font options ++++++++++++++ */
|
||||
#line {
|
||||
left: 20px;
|
||||
margin-right: -10px;
|
||||
right: auto;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
/* ++++++++++++++ breadcrumbs ++++++++++++++ */
|
||||
|
||||
#breadcrumbs {
|
||||
/*display: block;*/
|
||||
background: none;
|
||||
float: right;
|
||||
text-align: right;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
#breadcrumbs *
|
||||
{
|
||||
text-align:right;
|
||||
float: right;
|
||||
|
||||
}
|
||||
/* for IE7 and less */
|
||||
*:first-child+html .breadcrumbs, * html .breadcrumbs {
|
||||
width: 100%;
|
||||
}
|
||||
#breadcrumbs
|
||||
{
|
||||
margin:15px 5px 15px 0px;
|
||||
}
|
||||
#breadcrumbs img
|
||||
{
|
||||
padding: 4px 5px 0px 5px;
|
||||
}
|
||||
|
||||
#breadcrumbs .showHere {
|
||||
margin-left: 4px;
|
||||
}
|
||||
ul.menu li a:link,ul.menu li a:visited {
|
||||
background: url(../images/nature/karo.gif) no-repeat scroll right 14px;
|
||||
padding-right: 10px;
|
||||
}
|
||||
|
||||
ul.menu li {
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
ul.menu li.active ul li a:link,
|
||||
ul.menu li.active ul li a:visited
|
||||
{
|
||||
padding-right: 20px;
|
||||
}
|
||||
|
||||
ul.menu li.active ul li.active a:link,
|
||||
ul.menu li.active ul li.active a:visited
|
||||
{
|
||||
padding-right: 20px;
|
||||
}
|
||||
|
||||
ul.menu li.active ul li.active ul li a:link,
|
||||
ul.menu li.active ul li.active ul li a:visited
|
||||
{
|
||||
padding-right: 33px;
|
||||
}
|
||||
|
||||
ul.menu li.active ul li.active ul li.active ul li a:link,
|
||||
ul.menu li.active ul li.active ul li.active ul li a:visited
|
||||
{
|
||||
padding: 3px 47px 3px 2px;
|
||||
background:#fff url(../images/nature/arrow_small_rtl.png) no-repeat scroll right 8px;
|
||||
}
|
||||
|
||||
ul.menu li.active ul li.active ul li.active ul li.active ul li a:link,
|
||||
ul.menu li.active ul li.active ul li.active ul li.active ul li a:visited
|
||||
{
|
||||
padding-right:30px;
|
||||
}
|
||||
|
||||
h3 {
|
||||
text-align: right
|
||||
}
|
||||
|
||||
h3.js_heading a {
|
||||
position: absolute;
|
||||
right: auto;
|
||||
left: 5px
|
||||
}
|
||||
|
||||
.box {
|
||||
text-align: right
|
||||
}
|
||||
|
||||
ul.newsfeed {
|
||||
text-align: right
|
||||
}
|
||||
|
||||
a.readmore:link,a.readmore:visited,.readmore a:link,.readmore a:visited
|
||||
{
|
||||
background: url(../images/nature/arrow1_rtl.gif) repeat-x scroll right top;
|
||||
padding-right: 10px !important
|
||||
}
|
||||
|
||||
.readmore a:hover, .readmore a:active, .readmore a:focus,
|
||||
a.readmore a:hover, a.readmore a:active, a.readmore a:focus
|
||||
{
|
||||
background: url(../images/nature/arrow2_rtl.gif) no-repeat right 6px #555 !important;
|
||||
}
|
||||
|
||||
.mailto-close {
|
||||
left: 5px !important;
|
||||
right: auto !important;
|
||||
}
|
||||
|
||||
* html .mailto-close {
|
||||
left: 0;
|
||||
position: absolute;
|
||||
right: 340px !important
|
||||
}
|
||||
|
||||
/* personal.css overrides */
|
||||
|
||||
.panel h3.pane-toggler a
|
||||
{
|
||||
background:#f5f5f5 url(../images/slider_plus_rtl.png) left top no-repeat;
|
||||
}
|
||||
.panel h3.pane-toggler-down a
|
||||
{
|
||||
background:#f5f5f5 url(../images/slider_minus_rtl.png) left top no-repeat;
|
||||
border-bottom:solid 1px #ddd;
|
||||
}
|
||||
|
||||
.form-required
|
||||
{
|
||||
background-position: right;
|
||||
}
|
||||
|
||||
input.button,
|
||||
button.button
|
||||
{
|
||||
background:#FFFFFF url(../images/nature/arrow1_rtl.gif) no-repeat right top;
|
||||
}
|
||||
|
||||
/* layout.css overrides */
|
||||
|
||||
#main ul
|
||||
{
|
||||
padding:0 15px 0 0;
|
||||
margin:10px 0 10px 0px;
|
||||
}
|
||||
|
||||
#main ol
|
||||
{
|
||||
padding:0 20px 0 0;
|
||||
margin:10px 0 10px 0px;
|
||||
}
|
||||
|
||||
.contact-email label
|
||||
{
|
||||
width:17em;
|
||||
float:right;
|
||||
}
|
||||
|
||||
#contact-email-copy
|
||||
{
|
||||
float:right;
|
||||
margin-left:10px;
|
||||
}
|
||||
|
||||
table.weblinks th, table.category th {
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
table th, table td {
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
dl.tabs {
|
||||
float: right;
|
||||
margin: 50px 0 0 0;
|
||||
z-index: 50;
|
||||
clear:both;
|
||||
}
|
||||
|
||||
dl.tabs dt {
|
||||
float: right;
|
||||
padding: 4px 10px;
|
||||
border-left: 1px solid #ccc;
|
||||
border-right: 1px solid #ccc;
|
||||
border-top: 1px solid #ccc;
|
||||
margin-left: 3px;
|
||||
margin-right: 0px;
|
||||
}
|
||||
|
||||
form fieldset dt
|
||||
{
|
||||
clear:right ;
|
||||
float:right;
|
||||
width:12em;
|
||||
padding:3px 0
|
||||
}
|
||||
|
||||
form fieldset dd
|
||||
{
|
||||
float:right;
|
||||
padding:3px 0
|
||||
}
|
||||
|
||||
#users-profile-core dt,
|
||||
#users-profile-custom dt
|
||||
{
|
||||
float:right;
|
||||
width:12em;
|
||||
padding:3px 0;
|
||||
|
||||
|
||||
}
|
||||
|
||||
.profile-edit form#member-profile fieldset dt,
|
||||
.registration form#member-registration fieldset dt
|
||||
{padding:5px 0px 5px 5px; width:13em}
|
||||
|
||||
|
||||
.login-fields label
|
||||
{float:right}
|
||||
|
||||
/* ++++++++++++++ pagination ++++++++++++++ */
|
||||
|
||||
#main .pagination
|
||||
{
|
||||
float:right;
|
||||
text-align:right;
|
||||
padding:10px 10px 0px 0px;
|
||||
width: 100%;
|
||||
clear:both;
|
||||
}
|
||||
|
||||
#main .pagination ul
|
||||
{
|
||||
float:right;
|
||||
text-align:right;
|
||||
|
||||
}
|
||||
|
||||
#main .pagination li
|
||||
{
|
||||
float:right;
|
||||
text-align:right;
|
||||
}
|
||||
|
||||
#main .pagination li.pagination-start span,
|
||||
#main .pagination li.pagination-start a
|
||||
{
|
||||
padding:4px 0;
|
||||
}
|
||||
|
||||
.left1 {
|
||||
float: right;
|
||||
margin: 10px 10px 3% 10px ;
|
||||
}
|
||||
|
||||
|
||||
/* ++++++++++++++ login ++++++++++++++ */
|
||||
|
||||
|
||||
|
||||
#login-form label
|
||||
{
|
||||
margin-right:0px;
|
||||
}
|
||||
|
||||
#form-login-remember label
|
||||
{
|
||||
float:none;
|
||||
width:auto;
|
||||
display:inline
|
||||
}
|
||||
|
||||
input.button,
|
||||
button.button,
|
||||
button.validate
|
||||
{
|
||||
padding:3px 7px 5px 7px;
|
||||
}
|
||||
|
||||
#modlgn-username,
|
||||
#modlgn-passwd
|
||||
{
|
||||
margin-right: 0;
|
||||
}
|
||||
|
||||
.module_content #form-login-username label,
|
||||
.module_content #form-login-password label
|
||||
{
|
||||
float:right;
|
||||
|
||||
}
|
||||
|
||||
.login-fields
|
||||
{
|
||||
margin:10px 0
|
||||
}
|
||||
|
||||
.login-fields label
|
||||
{
|
||||
float:right;
|
||||
}
|
||||
|
||||
.login-description img,
|
||||
.logout-description img
|
||||
{
|
||||
float:right;
|
||||
margin-right:0px
|
||||
}
|
||||
|
||||
.login-description,
|
||||
.logout-description
|
||||
{
|
||||
padding-right:5px;
|
||||
margin:20px 10 0 0;
|
||||
}
|
||||
|
||||
/* ++++++++++++++ columns alignment left to right ++++++++++++++ */
|
||||
ul.tabs li {
|
||||
float: right;
|
||||
border-left: 1px solid #DDDDDD;
|
||||
border-right: 0px solid #DDDDDD;
|
||||
}
|
||||
|
||||
|
||||
ul.pagenav li.pagenav-next {
|
||||
float: left;
|
||||
}
|
||||
ul.pagenav li.pagenav-prev {
|
||||
float: right;
|
||||
}
|
||||
#close span {
|
||||
width: auto;
|
||||
left: 20px;
|
||||
right: auto;
|
||||
}
|
||||
#header ul.menu li a:link,
|
||||
#header ul.menu li a:visited
|
||||
{
|
||||
border-right:solid 0px #237D85;
|
||||
border-left:solid 1px #237D85;
|
||||
}
|
||||
|
||||
#header ul li.active a:link,
|
||||
#header ul li.active a:visited
|
||||
{
|
||||
border-right:solid 0px #237D85;
|
||||
border-left:solid 1px #237D85;
|
||||
}
|
||||
#fontsize {
|
||||
margin: 0 1px 0 20px;
|
||||
text-align: right;
|
||||
}
|
||||
#fontsize p a:link, #fontsize p a:visited {
|
||||
border-left: 1px solid #CCCCCC;
|
||||
border-right: none;
|
||||
}
|
||||
#header form .inputbox {
|
||||
margin: 2px 2px 2px 13px;
|
||||
}
|
||||
#header form .inputbox:focus { margin: 1px 1px 0 11px; }
|
||||
#header ul.menu li {
|
||||
float: right;
|
||||
}
|
||||
|
||||
/* ############## Blog/featured columns ######## */
|
||||
|
||||
.blog-featured .item, .blog .item {
|
||||
float:right;
|
||||
}
|
||||
.items-row .column-1 {
|
||||
margin-right: 0;
|
||||
margin-left: 4%;
|
||||
}
|
||||
|
||||
#main ul.actions {
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.content_rating {
|
||||
text-align: right;
|
||||
|
||||
}
|
||||
|
||||
ul.menu li ul li ul li ul li ul {
|
||||
padding-right: 7px;
|
||||
}
|
||||
|
||||
#system-message dd.notice ul,
|
||||
#system-message dd.error ul,
|
||||
#system-message dd.message ul {
|
||||
background-position: 100% 0!important;
|
||||
padding: 10px 40px 10px 10px!important;
|
||||
}
|
||||
#system-message dd.message ul {
|
||||
background-image:url(../images/system/notice-info_rtl.png)!important;
|
||||
}
|
||||
#system-message dd.notice ul {
|
||||
background-image:url("../images/system/notice-note_rtl.png")!important;
|
||||
}
|
||||
#system-message dd.error ul {
|
||||
background-image:url(../images/system/notice-alert_rtl.png)!important;
|
||||
}
|
||||
|
||||
/* ++++++++++++++ image float style ++++++++++++++ */
|
||||
.img-fulltext-left {
|
||||
float: right;
|
||||
margin-left: 20px;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
.img-intro-left {
|
||||
float: right;
|
||||
margin-left: 10px;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.img-fulltext-right {
|
||||
float:left;
|
||||
margin-right: 20px;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
.img-intro-right {
|
||||
float: left;
|
||||
margin-right: 10px;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
/* ++++++ Bootstrap markup ++++++++++++++ */
|
||||
.pull-left {
|
||||
float: right;
|
||||
}
|
||||
2
templates/beez3/css/turq.css
Normal file
426
templates/beez3/css/turq.less
Normal file
@ -0,0 +1,426 @@
|
||||
@basecolor : rgb(45,53,62);
|
||||
@compcolor : spin(@basecolor, 180);
|
||||
@bordercolor : lighten(@basecolor, 60%);
|
||||
@bodycolor : #eeeeee;
|
||||
@contentbackground:#fff;
|
||||
@textcolor : #555;
|
||||
@linkcolor : #009999;
|
||||
@linkcolorhover : darken(@linkcolor, 10);
|
||||
@linkcolorvisited : darken(@linkcolorhover, 10);
|
||||
@linkcolorfocus : darken(@linkcolorvisited, 10);
|
||||
@backgroundlogoheader: #009999;
|
||||
@headermenugradientfrom:#eee;
|
||||
@headermenugradientto:#ddd;
|
||||
@uxelmentsgradientfrom: #ffffff;
|
||||
@uxelmentsgradientto: #dddddd;
|
||||
@uxelmentshovergradientfrom: #00B9B9;
|
||||
@uxelmentshovergradientto: #009999;
|
||||
|
||||
body {
|
||||
background: @bodycolor
|
||||
}
|
||||
|
||||
h3 {
|
||||
color: @textcolor
|
||||
}
|
||||
|
||||
h2 a {
|
||||
text-decoration: none
|
||||
}
|
||||
|
||||
h2,.moduletable h3, .items-leading h2 {
|
||||
border-bottom: solid 1px #ddd;
|
||||
}
|
||||
|
||||
.items-row h2 {
|
||||
border-top: solid 1px #ddd;
|
||||
border-bottom: solid 1px #ddd;
|
||||
}
|
||||
|
||||
a:link,a:visited {
|
||||
color: @linkcolor
|
||||
}
|
||||
|
||||
a:hover,a:active,a:focus {
|
||||
background:@linkcolor ;
|
||||
color: #FFF;
|
||||
}
|
||||
|
||||
.logoheader {
|
||||
background: @backgroundlogoheader;
|
||||
color: #FFFFFF;
|
||||
min-height: 200px;
|
||||
}
|
||||
|
||||
#all {
|
||||
background: @contentbackground;
|
||||
color: @textcolor ;
|
||||
}
|
||||
|
||||
#shadow #all {
|
||||
box-shadow: 0px 20px 10px #555555
|
||||
}
|
||||
|
||||
#header ul.menu {
|
||||
background-color:#ddd;
|
||||
background-repeat: repeat-x;
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=@headermenugradientfrom, endColorstr=@headermenugradientto);
|
||||
background-image: -khtml-gradient(linear, left top, left bottom, from(@headermenugradientfrom), to(@headermenugradientto));
|
||||
background-image: -moz-linear-gradient(top, @headermenugradientfrom, @headermenugradientto);
|
||||
background-image: -ms-linear-gradient(top, @headermenugradientfrom, @headermenugradientto);
|
||||
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, @headermenugradientfrom), color-stop(100%, @headermenugradientto));
|
||||
background-image: -webkit-linear-gradient(top, @headermenugradientfrom, @headermenugradientto);
|
||||
background-image: -o-linear-gradient(top, @headermenugradientfrom, @headermenugradientto);
|
||||
background-image: linear-gradient(@headermenugradientfrom, @headermenugradientto);
|
||||
border-color: #b2b2b2 #b2b2b2 hsl(114, 0%, 62.5%);
|
||||
|
||||
text-shadow: 0 1px 1px rgba(255, 255, 255, 0.49);
|
||||
-webkit-font-smoothing: antialiased;
|
||||
box-shadow: 0 1px 0 rgba(255, 255, 255, 0.2) inset, 0 1px 2px
|
||||
rgba(0, 0, 0, 0.05);
|
||||
border: solid 1px #ddd;
|
||||
border: 1px solid #e5e5e5;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
#header ul.menu a:link,#header ul.menu a:visited {
|
||||
color: #333;
|
||||
display: inline-block;
|
||||
font-weight: bold;
|
||||
text-decoration: none;
|
||||
padding: 0px 10px;
|
||||
margin: 0;
|
||||
display: inline-block;
|
||||
margin: 0 0 0;
|
||||
padding: 12px 15px;
|
||||
position: relative;
|
||||
border-right: 1px solid #ddd;
|
||||
box-shadow: 1px 0px 0px #f5f5f5;
|
||||
}
|
||||
|
||||
/* grey background */
|
||||
.button,button,p.readmore a,#header input.button,.pagenav a:link,.pagenav a:visited,#advanced-search-toggle,.profile-edit a:link,.profile-edit a:visited,h3.js_heading,.article-info
|
||||
{
|
||||
background-color:#ddd;
|
||||
background-repeat: repeat-x;
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=@uxelmentsgradientfrom, endColorstr=@uxelmentsgradientto);
|
||||
background-image: -khtml-gradient(linear, left top, left bottom, from(@uxelmentsgradientfrom), to(@uxelmentsgradientto));
|
||||
background-image: -moz-linear-gradient(top, @uxelmentsgradientfrom, @uxelmentsgradientto);
|
||||
background-image: -ms-linear-gradient(top, #ffffff, #dddddd);
|
||||
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, @uxelmentsgradientfrom), color-stop(100%, @uxelmentsgradientto));
|
||||
background-image: -webkit-linear-gradient(top, @uxelmentsgradientfrom, @uxelmentsgradientto);
|
||||
background-image: -o-linear-gradient(top, @uxelmentsgradientfrom, @uxelmentsgradientto);
|
||||
background-image: linear-gradient(@uxelmentsgradientfrom, @uxelmentsgradientto);
|
||||
border-color: #b2b2b2 #b2b2b2 hsl(114, 0%, 62.5%);
|
||||
|
||||
text-shadow: 0 1px 1px rgba(255, 255, 255, 0.49);
|
||||
-webkit-font-smoothing: antialiased;
|
||||
box-shadow: 0 1px 0 rgba(255, 255, 255, 0.2) inset, 0 1px 2px
|
||||
rgba(0, 0, 0, 0.05);
|
||||
color: @linkcolor;
|
||||
border: solid 1px #ddd
|
||||
}
|
||||
.article-info
|
||||
{color:@textcolor}
|
||||
/* +++++++++++++ table display Catgegories table, contact etc, ++++++++++++++++++++* */
|
||||
table {
|
||||
border: solid 1px #ddd
|
||||
}
|
||||
|
||||
|
||||
|
||||
table th a:link,table th a:visited {
|
||||
color: #fff
|
||||
}
|
||||
|
||||
tr.odd,tr.cat-list-row1 {
|
||||
background: #f8f8f8
|
||||
}
|
||||
|
||||
table tr:hover td {
|
||||
background: #FEFDE2;
|
||||
}
|
||||
|
||||
/* blue background */
|
||||
.button:hover,
|
||||
.button:active,
|
||||
.button:focus,
|
||||
button:hover,
|
||||
p.readmore a:hover,
|
||||
#header ul.menu a:hover,
|
||||
#header ul.menu a:active,
|
||||
#header ul.menu a:focus,
|
||||
.pagenav a:hover,
|
||||
.pagenav a:active,
|
||||
.pagenav a:focus,
|
||||
#advanced-search-toggle:hover,
|
||||
#advanced-search-toggle:active,
|
||||
#advanced-search-toggle:focus,
|
||||
.profile-edit a:hover,
|
||||
.profile-edit a:active,
|
||||
.profile-edit a:focus,
|
||||
#fontsize a:hover,#fontsize a:active,#fontsize a:focus,
|
||||
#mobile_select h2 a,table th,.logoheader
|
||||
{
|
||||
|
||||
background-color:@uxelmentshovergradientfrom;
|
||||
background-repeat: repeat-x;
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=@uxelmentshovergradientfrom, endColorstr=@uxelmentshovergradientto);
|
||||
background-image: -khtml-gradient(linear, left top, left bottom, from(@uxelmentshovergradientfrom), to(@uxelmentshovergradientto));
|
||||
background-image: -moz-linear-gradient(top,@uxelmentshovergradientfrom, @uxelmentshovergradientto);
|
||||
background-image: -ms-linear-gradient(top, @uxelmentshovergradientfrom, @uxelmentshovergradientto);
|
||||
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, @uxelmentshovergradientfrom), color-stop(100%, @uxelmentshovergradientto));
|
||||
background-image: -webkit-linear-gradient(top, @uxelmentshovergradientfrom, @uxelmentshovergradientto);
|
||||
background-image: -o-linear-gradient(top, @uxelmentshovergradientfrom, @uxelmentshovergradientto);
|
||||
background-image: linear-gradient(@uxelmentshovergradientfrom, @uxelmentshovergradientto);
|
||||
border-color: @uxelmentshovergradientto;
|
||||
color: #fff ;
|
||||
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.33);
|
||||
-webkit-font-smoothing: antialiased;
|
||||
|
||||
|
||||
|
||||
}
|
||||
input:focus,textarea:focus {
|
||||
box-shadow: 0 1px 1px @headermenugradientto inset, 0 0 8px @uxelmentshovergradientfrom;
|
||||
outline: 0 none;
|
||||
}
|
||||
/* +++++++++++++++++ Pagination +++++++++++++++ */
|
||||
.pagination span,.pagination span a:hover {
|
||||
color: #999999;
|
||||
background-color: #f5f5f5;
|
||||
}
|
||||
|
||||
/* active item */
|
||||
span.pagenav {
|
||||
background: #uxelmentshovergradientto;
|
||||
color: #fff
|
||||
}
|
||||
|
||||
.pagination-start span.pagenav,.pagination-prev span.pagenav,.pagination-end span.pagenav,.pagination-next span.pagenav
|
||||
{
|
||||
background-color: #f5f5f5;
|
||||
color: #444
|
||||
}
|
||||
|
||||
/* +++++++++++++++++ content +++++++++++++++ */
|
||||
|
||||
|
||||
ul.menu a:link,ul.menu a:visited {
|
||||
color: #444;
|
||||
}
|
||||
|
||||
/* ++++++++++++++++++++++ menu ++++++++++++++++++++++++++ */
|
||||
.moduletable_menu {
|
||||
border: solid 1px #ddd;
|
||||
background: #f9f9f9;
|
||||
}
|
||||
|
||||
#header ul.menu {
|
||||
border: solid 1px #D5D5D5;
|
||||
box-shadow: 0 1px 0 #FFFFFF inset, 0 1px 5px rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
|
||||
#header ul.menu a {
|
||||
box-shadow: none;
|
||||
border-bottom: 0
|
||||
}
|
||||
|
||||
ul.menu a:hover,ul.menu a:active,ul.menu a:focus {
|
||||
background-color: #F5F5F5;
|
||||
background-image: -moz-linear-gradient(center top, #FFFFFF, #E6E6E6);
|
||||
background-repeat: repeat-x;
|
||||
background: url(../images/3.0/arrow.png) no-repeat right center;
|
||||
color:@linkcolor
|
||||
}
|
||||
|
||||
/* ++++++++++++++++ highlightning active menuitem +++++++++++++++++++ */
|
||||
ul.menu li.active a,ul.menu li.active ul li.active a,ul.menu li.active ul li.active ul li.active a,ul.menu li.active ul li.active ul li.active ul li.active a,ul.menu li.active ul li.active ul li.active ul li.active ul li.active a
|
||||
{
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
ul.menu li.active ul li a,ul.menu li.active ul li.active ul li a,ul.menu li.active ul li.active ul li.active ul li a,ul.menu li.active ul li.active ul li.active ul li.active ul li a
|
||||
{
|
||||
font-weight: normal
|
||||
}
|
||||
|
||||
ul.menu a {
|
||||
box-shadow: 0 1px 0 #fff;
|
||||
border-bottom: solid 1px #ddd;
|
||||
text-shadow: 0 1px 0 #fff
|
||||
}
|
||||
|
||||
ul.menu ul a {
|
||||
background: #e5e5e5;
|
||||
margin-bottom: 1px
|
||||
}
|
||||
|
||||
ul.menu ul ul ul a {
|
||||
background: #f5f5f5 url(../images/3.0/arrow.png) no-repeat 24px center;
|
||||
}
|
||||
|
||||
ul.menu ul ul ul ul a {
|
||||
background: #fff;
|
||||
}
|
||||
|
||||
/* +++++++++++++++++++++++ SLIDER ++++++++++++++++++++ */
|
||||
.panel h3.pane-toggler a {
|
||||
background: url(../images/slider_plus.png) right top no-repeat;
|
||||
color: #333
|
||||
}
|
||||
|
||||
.panel h3.pane-toggler-down a {
|
||||
background: url(../images/slider_minus.png) right top no-repeat;
|
||||
border-bottom: solid 1px #ddd;
|
||||
color: #333
|
||||
}
|
||||
|
||||
/* +++++++++++++++++ Tabs ++++++++++++++++++++++ */
|
||||
ul.tabs li,dl.tabs dt h3 a:link,dl.tabs dt h3 a:visited {
|
||||
background: #f5f5f5 url(../images/nature/box.png) repeat-x;
|
||||
}
|
||||
|
||||
ul.tabs li a:link,ul.tabs li a:visited,dl.tabs dt a {
|
||||
color: #333;
|
||||
border: solid 1px #ddd;
|
||||
border-bottom: 0
|
||||
}
|
||||
|
||||
ul.tabs li a:hover,ul.tabs li a:active,ul.tabs li a:focus {
|
||||
color: #000
|
||||
}
|
||||
|
||||
.tabcontent,div.current {
|
||||
background: #fff;
|
||||
color: #000;
|
||||
border: solid 1px #ddd;
|
||||
}
|
||||
|
||||
.tabcontent .linkclosed {
|
||||
color: #000;
|
||||
border-bottom: solid 1px #e5e5e5;
|
||||
}
|
||||
|
||||
ul.tabs li a.linkopen,dl.tabs dt.open h3 a:link,dl.tabs dt.open h3 a:visited
|
||||
{
|
||||
background: #fff;
|
||||
color: #333;
|
||||
border-radius: 5px 5px 0px 0px;
|
||||
}
|
||||
|
||||
ul.tabs li a.linkclosed:hover,ul.tabs li a.linkclosed:active,ul.tabs li a.linkclosed:focus,ul.tabs li a.linkopen:hover,ul.tabs li a.linkopen:active,ul.tabs li a.linkopen:focus
|
||||
{
|
||||
background: #555;
|
||||
color: #fff
|
||||
}
|
||||
|
||||
#footer-inner,#footer {
|
||||
background: #f5f5f5;
|
||||
box-shadow: 0px 20px 10px #555
|
||||
}
|
||||
|
||||
#footer {
|
||||
background: #555;
|
||||
max-width: 1025px;
|
||||
margin: 0 auto;
|
||||
box-shadow: 0px 0px 10px #555555;
|
||||
color: #fff
|
||||
}
|
||||
|
||||
#footer a {
|
||||
color: #fff;
|
||||
background: none
|
||||
}
|
||||
|
||||
#bottom a {
|
||||
background: none
|
||||
}
|
||||
|
||||
.box1 {
|
||||
border-right: solid 1px #ccc
|
||||
}
|
||||
|
||||
.box3 {
|
||||
border-left: solid 1px #ccc
|
||||
}
|
||||
|
||||
#bottom ul li a {
|
||||
background-image: none;
|
||||
padding-left: 0
|
||||
}
|
||||
|
||||
/* responsive */
|
||||
#mobile_select h2 {border:0; margin:-17px 0 0 0; padding:0; background:@uxelmentshovergradientto;text-align:right}
|
||||
#mobile_select h2 a {
|
||||
display:inline-block;
|
||||
font-size:0.8em;
|
||||
border-radius:4px 4px 0 0;
|
||||
padding:6px;
|
||||
font-size:0.75em;
|
||||
margin-right:5px;
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 480px) {
|
||||
|
||||
img {
|
||||
max-width: 100%;
|
||||
height: auto;
|
||||
border: 0;
|
||||
-ms-interpolation-mode: bicubic;
|
||||
}
|
||||
|
||||
#fontsize{display:none}
|
||||
#nav,#wrapper2,#wrapper,.cols-3 .column-1,.cols-3 .column-2,.cols-3 .column-3,#right,.box,#header form
|
||||
{
|
||||
float: none;
|
||||
width: 100%
|
||||
}
|
||||
#header {padding-top:3em}
|
||||
#header form {margin:0}
|
||||
.logoheader {background:@uxelmentshovergradientto; min-height:100px; margin:0}
|
||||
.box {
|
||||
border-left: 0 !important;
|
||||
border-bottom: solid 1px #ddd;
|
||||
}
|
||||
#line {
|
||||
text-align: center;
|
||||
top: 0;
|
||||
right: auto;
|
||||
max-width: 100% ;
|
||||
min-width:100%;
|
||||
|
||||
margin: 0 0px; background:@uxelmentshovergradientfrom;
|
||||
}
|
||||
#header form input {
|
||||
float: none; margin-bottom:4px
|
||||
}
|
||||
#menuwrapper { margin-top:10px; }
|
||||
#header ul.menu {position:relative; top:0;left:20px; right:20px; margin:0; width:90%; border-radius:4px}
|
||||
#header ul.menu li:first-child a {border-radius: 4px 4px 0 0}
|
||||
#header ul.menu li:last-child a {border-radius:0 0 4px 4px }
|
||||
#header ul.menu li a:link,
|
||||
|
||||
#header ul.menu li a:visited {
|
||||
display: block;
|
||||
padding: 6px 10px;
|
||||
border-bottom: solid 1px #ccc
|
||||
}
|
||||
}
|
||||
|
||||
@media only screen and (min-width: 600px) {
|
||||
}
|
||||
|
||||
@media only screen and (min-width: 768px) {
|
||||
}
|
||||
|
||||
@media only screen and (min-width: 992px) {
|
||||
}
|
||||
|
||||
@media only screen and (min-width: 1382px) { /* Styles */
|
||||
}
|
||||
|
||||
@media only screen and (-webkit-min-device-pixel-ratio: 1.5) , only screen and
|
||||
(min--moz-device-pixel-ratio: 1.5) , only screen and
|
||||
(min-device-pixel-ratio: 1.5) { /* Styles */
|
||||
}
|
||||
255
templates/beez3/error.php
Normal file
@ -0,0 +1,255 @@
|
||||
<?php
|
||||
/**
|
||||
* @package Joomla.Site
|
||||
* @subpackage Templates.beez3
|
||||
*
|
||||
* @copyright Copyright (C) 2005 - 2013 Open Source Matters, Inc. All rights reserved.
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
$params = JFactory::getApplication()->getTemplate(true)->params;
|
||||
$logo = $params->get('logo');
|
||||
$showRightColumn = 0;
|
||||
$showleft = 0;
|
||||
$showbottom = 0;
|
||||
|
||||
// get params
|
||||
$color = $params->get('templatecolor');
|
||||
$navposition = $params->get('navposition');
|
||||
|
||||
//get language and direction
|
||||
$doc = JFactory::getDocument();
|
||||
$this->language = $doc->language;
|
||||
$this->direction = $doc->direction;
|
||||
?>
|
||||
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $this->language; ?>" lang="<?php echo $this->language; ?>" dir="<?php echo $this->direction; ?>">
|
||||
<head>
|
||||
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
|
||||
|
||||
<meta name="language" content="<?php echo $this->language; ?>" />
|
||||
|
||||
<title><?php echo $this->error->getCode(); ?> - <?php echo $this->title; ?></title>
|
||||
<?php if ($this->error->getCode() >= 400 && $this->error->getCode() < 500) { ?>
|
||||
|
||||
|
||||
<link rel="stylesheet" href="<?php echo $this->baseurl ?>/templates/system/css/system.css" type="text/css" />
|
||||
<link rel="stylesheet" href="<?php echo $this->baseurl ?>/templates/<?php echo $this->template; ?>/css/position.css" type="text/css" media="screen,projection" />
|
||||
<link rel="stylesheet" href="<?php echo $this->baseurl ?>/templates/<?php echo $this->template; ?>/css/layout.css" type="text/css" media="screen,projection" />
|
||||
<link rel="stylesheet" href="<?php echo $this->baseurl ?>/templates/<?php echo $this->template; ?>/css/print.css" type="text/css" media="Print" />
|
||||
<link rel="stylesheet" href="<?php echo $this->baseurl ?>/templates/<?php echo $this->template; ?>/css/<?php echo htmlspecialchars($color); ?>.css" type="text/css" />
|
||||
<?php
|
||||
$files = JHtml::_('stylesheet', 'templates/'.$this->template.'/css/general.css', null, false, true);
|
||||
if ($files):
|
||||
if (!is_array($files)):
|
||||
$files = array($files);
|
||||
endif;
|
||||
foreach ($files as $file) :
|
||||
?>
|
||||
<link rel="stylesheet" href="<?php echo $file;?>" type="text/css" />
|
||||
<?php
|
||||
endforeach;
|
||||
endif;
|
||||
?>
|
||||
<link rel="stylesheet" href="<?php echo $this->baseurl ?>/templates/<?php echo $this->template; ?>/css/<?php echo htmlspecialchars($color); ?>.css" type="text/css" />
|
||||
<?php if ($this->direction == 'rtl') : ?>
|
||||
<link rel="stylesheet" href="<?php echo $this->baseurl ?>/templates/<?php echo $this->template; ?>/css/template_rtl.css" type="text/css" />
|
||||
<?php if (file_exists(JPATH_SITE . '/templates/'.$this->template.'/css/' . $color . '_rtl.css')) :?>
|
||||
<link rel="stylesheet" href="<?php echo $this->baseurl ?>/templates/<?php echo $this->template; ?>/css/<?php echo $color ?>_rtl.css" type="text/css" />
|
||||
<?php endif; ?>
|
||||
<?php endif; ?>
|
||||
<?php
|
||||
$debug = JFactory::getConfig()->get('debug_lang');
|
||||
if (JDEBUG || $debug)
|
||||
{
|
||||
?>
|
||||
<link rel="stylesheet" href="<?php echo $this->baseurl ?>/media/cms/css/debug.css" type="text/css" />
|
||||
<?php
|
||||
}
|
||||
?>
|
||||
<!--[if lte IE 6]>
|
||||
<link href="<?php echo $this->baseurl ?>/templates/<?php echo $this->template; ?>/css/ieonly.css" rel="stylesheet" type="text/css" />
|
||||
<![endif]-->
|
||||
<!--[if IE 7]>
|
||||
<link href="<?php echo $this->baseurl ?>/templates/<?php echo $this->template; ?>/css/ie7only.css" rel="stylesheet" type="text/css" />
|
||||
<![endif]-->
|
||||
<!--[if lt IE 9]>
|
||||
<script src="<?php echo $this->baseurl ?>/media/jui/js/html5.js"></script>
|
||||
<![endif]-->
|
||||
|
||||
|
||||
<style type="text/css">
|
||||
<!--
|
||||
#errorboxbody
|
||||
{margin:30px}
|
||||
#errorboxbody h2
|
||||
{font-weight:normal;
|
||||
font-size:1.5em}
|
||||
#searchbox
|
||||
{background:#eee;
|
||||
padding:10px;
|
||||
margin-top:20px;
|
||||
border:solid 1px #ddd
|
||||
}
|
||||
-->
|
||||
</style>
|
||||
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
|
||||
<div id="all">
|
||||
<div id="back">
|
||||
|
||||
<div id="header">
|
||||
|
||||
<div class="logoheader">
|
||||
<?php
|
||||
$params = JFactory::getApplication()->getTemplate(true)->params;
|
||||
$logo = $params->get('logo');
|
||||
?>
|
||||
|
||||
<h1 id="logo">
|
||||
|
||||
<?php if ($logo) : ?>
|
||||
<img src="<?php echo $this->baseurl ?>/<?php echo htmlspecialchars($logo); ?>" alt="<?php echo htmlspecialchars($params->get('sitetitle'));?>" />
|
||||
<?php endif;?>
|
||||
<?php if (!$logo ) : ?>
|
||||
<?php echo htmlspecialchars($params->get('sitetitle'));?>
|
||||
<?php endif; ?>
|
||||
<span class="header1">
|
||||
<?php echo htmlspecialchars($params->get('sitedescription'));?>
|
||||
</span></h1>
|
||||
</div><!-- end logoheader -->
|
||||
|
||||
<ul class="skiplinks">
|
||||
<li><a href="#wrapper2" class="u2"><?php echo JText::_('TPL_BEEZ3_SKIP_TO_ERROR_CONTENT'); ?></a></li>
|
||||
<li><a href="#nav" class="u2"><?php echo JText::_('TPL_BEEZ3_ERROR_JUMP_TO_NAV'); ?></a></li>
|
||||
|
||||
</ul>
|
||||
<div id="line"></div>
|
||||
|
||||
|
||||
|
||||
</div><!-- end header -->
|
||||
|
||||
<div id="contentarea2" >
|
||||
|
||||
|
||||
<div class="left1" id="nav">
|
||||
|
||||
<h2 class="unseen"><?php echo JText::_('TPL_BEEZ3_NAVIGATION'); ?></h2>
|
||||
<?php $module = JModuleHelper::getModule('menu');
|
||||
echo JModuleHelper::renderModule($module); ?>
|
||||
|
||||
</div>
|
||||
|
||||
<!-- end navi -->
|
||||
<div id="wrapper2">
|
||||
<div id="errorboxbody">
|
||||
<h2><?php echo JText::_('JERROR_AN_ERROR_HAS_OCCURRED'); ?><br />
|
||||
<?php echo JText::_('JERROR_LAYOUT_PAGE_NOT_FOUND'); ?></h2>
|
||||
<?php if (JModuleHelper::getModule('search')) : ?>
|
||||
<div id="searchbox">
|
||||
<h3 class="unseen"><?php echo JText::_('TPL_BEEZ3_SEARCH'); ?></h3>
|
||||
<p><?php echo JText::_('JERROR_LAYOUT_SEARCH'); ?></p>
|
||||
<?php $module = JModuleHelper::getModule('search');
|
||||
echo JModuleHelper::renderModule($module); ?>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
<div>
|
||||
<p><a href="<?php echo $this->baseurl; ?>/index.php" title="<?php echo JText::_('JERROR_LAYOUT_GO_TO_THE_HOME_PAGE'); ?>"><?php echo JText::_('JERROR_LAYOUT_HOME_PAGE'); ?></a></p>
|
||||
</div>
|
||||
|
||||
<h3><?php echo JText::_('JERROR_LAYOUT_PLEASE_CONTACT_THE_SYSTEM_ADMINISTRATOR'); ?></h3>
|
||||
|
||||
<h2>#<?php echo $this->error->getCode(); ?> <?php echo $this->error->getMessage();?></h2> <br />
|
||||
|
||||
|
||||
</div><!-- end wrapper -->
|
||||
</div><!-- end contentarea -->
|
||||
|
||||
<?php if ($this->debug) :
|
||||
echo $this->renderBacktrace();
|
||||
endif; ?>
|
||||
|
||||
|
||||
</div> <!--end all -->
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<div id="footer-outer">
|
||||
|
||||
<div id="footer-sub">
|
||||
|
||||
|
||||
<div id="footer">
|
||||
<p>
|
||||
<?php echo JText::_('TPL_BEEZ3_POWERED_BY');?> <a href="http://www.joomla.org/">Joomla!®</a>
|
||||
</p>
|
||||
|
||||
</div><!-- end footer -->
|
||||
</div><!-- end footer-sub -->
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
<?php } else { ?>
|
||||
<?php
|
||||
if (!isset($this->error))
|
||||
{
|
||||
$this->error = JError::raiseWarning(404, JText::_('JERROR_ALERTNOAUTHOR'));
|
||||
$this->debug = false;
|
||||
}
|
||||
?>
|
||||
<link rel="stylesheet" href="<?php echo $this->baseurl; ?>/templates/system/css/error.css" type="text/css" />
|
||||
</head>
|
||||
<body>
|
||||
<div class="error">
|
||||
<div id="outline">
|
||||
<div id="errorboxoutline">
|
||||
<div id="errorboxheader"> <?php echo $this->title; ?></div>
|
||||
<div id="errorboxbody">
|
||||
<p><strong><?php echo JText::_('JERROR_LAYOUT_NOT_ABLE_TO_VISIT'); ?></strong></p>
|
||||
<ol>
|
||||
<li><?php echo JText::_('JERROR_LAYOUT_AN_OUT_OF_DATE_BOOKMARK_FAVOURITE'); ?></li>
|
||||
<li><?php echo JText::_('JERROR_LAYOUT_SEARCH_ENGINE_OUT_OF_DATE_LISTING'); ?></li>
|
||||
<li><?php echo JText::_('JERROR_LAYOUT_MIS_TYPED_ADDRESS'); ?></li>
|
||||
<li><?php echo JText::_('JERROR_LAYOUT_YOU_HAVE_NO_ACCESS_TO_THIS_PAGE'); ?></li>
|
||||
<li><?php echo JText::_('JERROR_LAYOUT_REQUESTED_RESOURCE_WAS_NOT_FOUND'); ?></li>
|
||||
<li><?php echo JText::_('JERROR_LAYOUT_ERROR_HAS_OCCURRED_WHILE_PROCESSING_YOUR_REQUEST'); ?></li>
|
||||
</ol>
|
||||
<p><strong><?php echo JText::_('JERROR_LAYOUT_PLEASE_TRY_ONE_OF_THE_FOLLOWING_PAGES'); ?></strong></p>
|
||||
|
||||
<ul>
|
||||
<li><a href="<?php echo $this->baseurl; ?>/index.php" title="<?php echo JText::_('JERROR_LAYOUT_GO_TO_THE_HOME_PAGE'); ?>"><?php echo JText::_('JERROR_LAYOUT_HOME_PAGE'); ?></a></li>
|
||||
<li><a href="<?php echo $this->baseurl; ?>/index.php?option=com_search" title="<?php echo JText::_('JERROR_LAYOUT_SEARCH_PAGE'); ?>"><?php echo JText::_('JERROR_LAYOUT_SEARCH_PAGE'); ?></a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
<p><?php echo JText::_('JERROR_LAYOUT_PLEASE_CONTACT_THE_SYSTEM_ADMINISTRATOR'); ?>.</p>
|
||||
<div id="techinfo">
|
||||
<p><?php echo $this->error->getMessage(); ?></p>
|
||||
<p>
|
||||
<?php if ($this->debug) :
|
||||
echo $this->renderBacktrace();
|
||||
endif; ?>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
|
||||
<?php } ?>
|
||||
BIN
templates/beez3/favicon.ico
Normal file
|
After Width: | Height: | Size: 1.1 KiB |
40
templates/beez3/html/com_contact/categories/default.php
Normal file
@ -0,0 +1,40 @@
|
||||
<?php
|
||||
/**
|
||||
* @package Joomla.Site
|
||||
* @subpackage com_contact
|
||||
*
|
||||
* @copyright Copyright (C) 2005 - 2013 Open Source Matters, Inc. All rights reserved.
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
JHtml::addIncludePath(JPATH_COMPONENT.'/helpers');
|
||||
|
||||
JHtml::_('behavior.caption');
|
||||
?>
|
||||
<div class="categories-list<?php echo $this->pageclass_sfx;?>">
|
||||
<?php if ($this->params->get('show_page_heading')) : ?>
|
||||
<h1>
|
||||
<?php echo $this->escape($this->params->get('page_heading')); ?>
|
||||
</h1>
|
||||
<?php endif; ?>
|
||||
<?php if ($this->params->get('show_base_description')) : ?>
|
||||
<?php //If there is a description in the menu parameters use that; ?>
|
||||
<?php if ($this->params->get('categories_description')) : ?>
|
||||
<div class="category-desc base-desc">
|
||||
<?php echo JHtml::_('content.prepare', $this->params->get('categories_description'), '', 'com_contact.categories'); ?>
|
||||
</div>
|
||||
<?php else: ?>
|
||||
<?php //Otherwise get one from the database if it exists. ?>
|
||||
<?php if ($this->parent->description) : ?>
|
||||
<div class="category-desc base-desc">
|
||||
<?php echo JHtml::_('content.prepare', $this->parent->description, '', 'com_contact.categories'); ?>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
<?php endif; ?>
|
||||
<?php endif; ?>
|
||||
<?php
|
||||
echo $this->loadTemplate('items');
|
||||
?>
|
||||
</div>
|
||||
@ -0,0 +1,57 @@
|
||||
<?php
|
||||
/**
|
||||
* @package Joomla.Site
|
||||
* @subpackage com_contact
|
||||
*
|
||||
* @copyright Copyright (C) 2005 - 2013 Open Source Matters, Inc. All rights reserved.
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
$class = ' class="first"';
|
||||
if (count($this->items[$this->parent->id]) > 0 && $this->maxLevelcat != 0) :
|
||||
?>
|
||||
<ul>
|
||||
<?php foreach ($this->items[$this->parent->id] as $id => $item) : ?>
|
||||
<?php
|
||||
if ($this->params->get('show_empty_categories_cat') || $item->numitems || count($item->getChildren())) :
|
||||
if (!isset($this->items[$this->parent->id][$id + 1]))
|
||||
{
|
||||
$class = ' class="last"';
|
||||
}
|
||||
?>
|
||||
<li<?php echo $class; ?>>
|
||||
<?php $class = ''; ?>
|
||||
<span class="item-title"><a href="<?php echo JRoute::_(ContactHelperRoute::getCategoryRoute($item->id));?>">
|
||||
<?php echo $this->escape($item->title); ?></a>
|
||||
</span>
|
||||
|
||||
<?php if ($this->params->get('show_subcat_desc_cat') == 1) :?>
|
||||
<?php if ($item->description) : ?>
|
||||
<div class="category-desc">
|
||||
<?php echo JHtml::_('content.prepare', $item->description, '', 'com_contact.categories'); ?>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php if ($this->params->get('show_cat_items_cat') == 1) :?>
|
||||
<dl><dt>
|
||||
<?php echo JText::_('COM_CONTACT_COUNT'); ?></dt>
|
||||
<dd><?php echo $item->numitems; ?></dd>
|
||||
</dl>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php if (count($item->getChildren()) > 0) :
|
||||
$this->items[$item->id] = $item->getChildren();
|
||||
$this->parent = $item;
|
||||
$this->maxLevelcat--;
|
||||
echo $this->loadTemplate('items');
|
||||
$this->parent = $item->getParent();
|
||||
$this->maxLevelcat++;
|
||||
endif; ?>
|
||||
|
||||
</li>
|
||||
<?php endif; ?>
|
||||
<?php endforeach; ?>
|
||||
</ul>
|
||||
<?php endif; ?>
|
||||
1
templates/beez3/html/com_contact/categories/index.html
Normal file
@ -0,0 +1 @@
|
||||
<!DOCTYPE html><title></title>
|
||||
44
templates/beez3/html/com_contact/category/default.php
Normal file
@ -0,0 +1,44 @@
|
||||
<?php
|
||||
/**
|
||||
* @package Joomla.Site
|
||||
* @subpackage com_contact
|
||||
*
|
||||
* @copyright Copyright (C) 2005 - 2013 Open Source Matters, Inc. All rights reserved.
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
?>
|
||||
<div class="contact-category<?php echo $this->pageclass_sfx;?>">
|
||||
<?php if ($this->params->get('show_page_heading')) : ?>
|
||||
<h1>
|
||||
<?php echo $this->escape($this->params->get('page_heading')); ?>
|
||||
</h1>
|
||||
<?php endif; ?>
|
||||
<?php if ($this->params->get('show_category_title', 1)) : ?>
|
||||
<h2>
|
||||
<?php echo JHtml::_('content.prepare', $this->category->title, '', 'com_contact.category'); ?>
|
||||
</h2>
|
||||
<?php endif; ?>
|
||||
<?php if ($this->params->def('show_description', 1) || $this->params->def('show_description_image', 1)) : ?>
|
||||
<div class="category-desc">
|
||||
<?php if ($this->params->get('show_description_image') && $this->category->getParams()->get('image')) : ?>
|
||||
<img src="<?php echo $this->category->getParams()->get('image'); ?>"/>
|
||||
<?php endif; ?>
|
||||
<?php if ($this->params->get('show_description') && $this->category->description) : ?>
|
||||
<?php echo JHtml::_('content.prepare', $this->category->description, '', 'com_contact.category'); ?>
|
||||
<?php endif; ?>
|
||||
<div class="clr"></div>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php echo $this->loadTemplate('items'); ?>
|
||||
|
||||
<?php if (!empty($this->children[$this->category->id])&& $this->maxLevel != 0) : ?>
|
||||
<div class="cat-children">
|
||||
<h3><?php echo JText::_('JGLOBAL_SUBCATEGORIES'); ?></h3>
|
||||
<?php echo $this->loadTemplate('children'); ?>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
</div>
|
||||
@ -0,0 +1,55 @@
|
||||
<?php
|
||||
/**
|
||||
* @package Joomla.Site
|
||||
* @subpackage com_contact
|
||||
*
|
||||
* @copyright Copyright (C) 2005 - 2013 Open Source Matters, Inc. All rights reserved.
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
$class = ' class="first"';
|
||||
if (count($this->children[$this->category->id]) > 0 && $this->maxLevel != 0) :
|
||||
?>
|
||||
<ul>
|
||||
<?php foreach ($this->children[$this->category->id] as $id => $child) : ?>
|
||||
<?php
|
||||
if ($this->params->get('show_empty_categories') || $child->numitems || count($child->getChildren())) :
|
||||
if (!isset($this->children[$this->category->id][$id + 1]))
|
||||
{
|
||||
$class = ' class="last"';
|
||||
}
|
||||
?>
|
||||
<li<?php echo $class; ?>>
|
||||
<?php $class = ''; ?>
|
||||
<span class="item-title"><a href="<?php echo JRoute::_(ContactHelperRoute::getCategoryRoute($child->id));?>">
|
||||
<?php echo $this->escape($child->title); ?></a>
|
||||
</span>
|
||||
|
||||
<?php if ($this->params->get('show_subcat_desc') == 1) :?>
|
||||
<?php if ($child->description) : ?>
|
||||
<div class="category-desc">
|
||||
<?php echo JHtml::_('content.prepare', $child->description, '', 'com_contact.category'); ?>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php if ($this->params->get('show_cat_items') == 1) :?>
|
||||
<dl><dt>
|
||||
<?php echo JText::_('COM_CONTACT_CAT_NUM'); ?></dt>
|
||||
<dd><?php echo $child->numitems; ?></dd>
|
||||
</dl>
|
||||
<?php endif; ?>
|
||||
<?php if (count($child->getChildren()) > 0 ) :
|
||||
$this->children[$child->id] = $child->getChildren();
|
||||
$this->category = $child;
|
||||
$this->maxLevel--;
|
||||
echo $this->loadTemplate('children');
|
||||
$this->category = $child->getParent();
|
||||
$this->maxLevel++;
|
||||
endif; ?>
|
||||
</li>
|
||||
<?php endif; ?>
|
||||
<?php endforeach; ?>
|
||||
</ul>
|
||||
<?php endif;
|
||||
171
templates/beez3/html/com_contact/category/default_items.php
Normal file
@ -0,0 +1,171 @@
|
||||
<?php
|
||||
/**
|
||||
* @package Joomla.Site
|
||||
* @subpackage com_contact
|
||||
*
|
||||
* @copyright Copyright (C) 2005 - 2013 Open Source Matters, Inc. All rights reserved.
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
JHtml::_('behavior.framework');
|
||||
|
||||
$listOrder = $this->escape($this->state->get('list.ordering'));
|
||||
$listDirn = $this->escape($this->state->get('list.direction'));
|
||||
?>
|
||||
<?php if (empty($this->items)) : ?>
|
||||
<p> <?php echo JText::_('COM_CONTACT_NO_ARTICLES'); ?> </p>
|
||||
<?php else : ?>
|
||||
|
||||
<form action="<?php echo htmlspecialchars(JUri::getInstance()->toString()); ?>" method="post" name="adminForm" id="adminForm">
|
||||
<?php if ($this->params->get('show_pagination_limit')) : ?>
|
||||
<fieldset class="filters">
|
||||
<legend class="hidelabeltxt"><?php echo JText::_('JGLOBAL_FILTER_LABEL'); ?></legend>
|
||||
|
||||
<div class="display-limit">
|
||||
<?php echo JText::_('JGLOBAL_DISPLAY_NUM'); ?> 
|
||||
<?php echo $this->pagination->getLimitBox(); ?>
|
||||
</div>
|
||||
</fieldset>
|
||||
<?php endif; ?>
|
||||
<table class="category">
|
||||
<?php if ($this->params->get('show_headings')) : ?>
|
||||
<thead><tr>
|
||||
|
||||
<th class="item-title">
|
||||
<?php echo JHtml::_('grid.sort', 'COM_CONTACT_CONTACT_EMAIL_NAME_LABEL', 'a.name', $listDirn, $listOrder); ?>
|
||||
</th>
|
||||
<?php if ($this->params->get('show_position_headings')) : ?>
|
||||
<th class="item-position">
|
||||
<?php echo JHtml::_('grid.sort', 'COM_CONTACT_POSITION', 'a.con_position', $listDirn, $listOrder); ?>
|
||||
</th>
|
||||
<?php endif; ?>
|
||||
<?php if ($this->params->get('show_email_headings')) : ?>
|
||||
<th class="item-email">
|
||||
<?php echo JText::_('JGLOBAL_EMAIL'); ?>
|
||||
</th>
|
||||
<?php endif; ?>
|
||||
<?php if ($this->params->get('show_telephone_headings')) : ?>
|
||||
<th class="item-phone">
|
||||
<?php echo JText::_('COM_CONTACT_TELEPHONE'); ?>
|
||||
</th>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php if ($this->params->get('show_mobile_headings')) : ?>
|
||||
<th class="item-phone">
|
||||
<?php echo JText::_('COM_CONTACT_MOBILE'); ?>
|
||||
</th>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php if ($this->params->get('show_fax_headings')) : ?>
|
||||
<th class="item-phone">
|
||||
<?php echo JText::_('COM_CONTACT_FAX'); ?>
|
||||
</th>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php if ($this->params->get('show_suburb_headings')) : ?>
|
||||
<th class="item-suburb">
|
||||
<?php echo JHtml::_('grid.sort', 'COM_CONTACT_SUBURB', 'a.suburb', $listDirn, $listOrder); ?>
|
||||
</th>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php if ($this->params->get('show_state_headings')) : ?>
|
||||
<th class="item-state">
|
||||
<?php echo JHtml::_('grid.sort', 'COM_CONTACT_STATE', 'a.state', $listDirn, $listOrder); ?>
|
||||
</th>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php if ($this->params->get('show_country_headings')) : ?>
|
||||
<th class="item-state">
|
||||
<?php echo JHtml::_('grid.sort', 'COM_CONTACT_COUNTRY', 'a.country', $listDirn, $listOrder); ?>
|
||||
</th>
|
||||
<?php endif; ?>
|
||||
|
||||
</tr>
|
||||
</thead>
|
||||
<?php endif; ?>
|
||||
|
||||
<tbody>
|
||||
<?php foreach ($this->items as $i => $item) : ?>
|
||||
<?php if ($this->items[$i]->published == 0) : ?>
|
||||
<tr class="system-unpublished cat-list-row<?php echo $i % 2; ?>">
|
||||
<?php else: ?>
|
||||
<tr class="cat-list-row<?php echo $i % 2; ?>" >
|
||||
<?php endif; ?>
|
||||
|
||||
<td class="item-title">
|
||||
<a href="<?php echo JRoute::_(ContactHelperRoute::getContactRoute($item->slug, $item->catid)); ?>">
|
||||
<?php echo $item->name; ?></a>
|
||||
</td>
|
||||
|
||||
<?php if ($this->params->get('show_position_headings')) : ?>
|
||||
<td class="item-position">
|
||||
<?php echo $item->con_position; ?>
|
||||
</td>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php if ($this->params->get('show_email_headings')) : ?>
|
||||
<td class="item-email">
|
||||
<?php echo $item->email_to; ?>
|
||||
</td>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php if ($this->params->get('show_telephone_headings')) : ?>
|
||||
<td class="item-phone">
|
||||
<?php echo $item->telephone; ?>
|
||||
</td>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php if ($this->params->get('show_mobile_headings')) : ?>
|
||||
<td class="item-phone">
|
||||
<?php echo $item->mobile; ?>
|
||||
</td>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php if ($this->params->get('show_fax_headings')) : ?>
|
||||
<td class="item-phone">
|
||||
<?php echo $item->fax; ?>
|
||||
</td>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php if ($this->params->get('show_suburb_headings')) : ?>
|
||||
<td class="item-suburb">
|
||||
<?php echo $item->suburb; ?>
|
||||
</td>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php if ($this->params->get('show_state_headings')) : ?>
|
||||
<td class="item-state">
|
||||
<?php echo $item->state; ?>
|
||||
</td>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php if ($this->params->get('show_country_headings')) : ?>
|
||||
<td class="item-state">
|
||||
<?php echo $item->country; ?>
|
||||
</td>
|
||||
<?php endif; ?>
|
||||
|
||||
</tr>
|
||||
<?php endforeach; ?>
|
||||
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
<?php if ($this->params->get('show_pagination')) : ?>
|
||||
<div class="pagination">
|
||||
<?php if ($this->params->def('show_pagination_results', 1)) : ?>
|
||||
<p class="counter">
|
||||
<?php echo $this->pagination->getPagesCounter(); ?>
|
||||
</p>
|
||||
<?php endif; ?>
|
||||
<?php echo $this->pagination->getPagesLinks(); ?>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
<div>
|
||||
<input type="hidden" name="filter_order" value="<?php echo $listOrder; ?>" />
|
||||
<input type="hidden" name="filter_order_Dir" value="<?php echo $listDirn; ?>" />
|
||||
</div>
|
||||
</form>
|
||||
<?php endif; ?>
|
||||
1
templates/beez3/html/com_contact/category/index.html
Normal file
@ -0,0 +1 @@
|
||||
<!DOCTYPE html><title></title>
|
||||
198
templates/beez3/html/com_contact/contact/default.php
Normal file
@ -0,0 +1,198 @@
|
||||
<?php
|
||||
/**
|
||||
* @package Joomla.Site
|
||||
* @subpackage com_contact
|
||||
*
|
||||
* @copyright Copyright (C) 2005 - 2013 Open Source Matters, Inc. All rights reserved.
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
$cparams = JComponentHelper::getParams('com_media');
|
||||
?>
|
||||
<div class="contact<?php echo $this->pageclass_sfx?>">
|
||||
<?php if ($this->params->get('show_page_heading')) : ?>
|
||||
<h1>
|
||||
<?php echo $this->escape($this->params->get('page_heading')); ?>
|
||||
</h1>
|
||||
<?php endif; ?>
|
||||
<?php if ($this->contact->name && $this->params->get('show_name')) : ?>
|
||||
<div class="page-header">
|
||||
<h2>
|
||||
<span class="contact-name"><?php echo $this->contact->name; ?></span>
|
||||
</h2>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
<?php if ($this->params->get('show_contact_category') == 'show_no_link') : ?>
|
||||
<h3>
|
||||
<span class="contact-category"><?php echo $this->contact->category_title; ?></span>
|
||||
</h3>
|
||||
<?php endif; ?>
|
||||
<?php if ($this->params->get('show_contact_category') == 'show_with_link') : ?>
|
||||
<?php $contactLink = ContactHelperRoute::getCategoryRoute($this->contact->catid);?>
|
||||
<h3>
|
||||
<span class="contact-category"><a href="<?php echo $contactLink; ?>">
|
||||
<?php echo $this->escape($this->contact->category_title); ?></a>
|
||||
</span>
|
||||
</h3>
|
||||
<?php endif; ?>
|
||||
<?php if ($this->params->get('show_contact_list') && count($this->contacts) > 1) : ?>
|
||||
<form action="#" method="get" name="selectForm" id="selectForm">
|
||||
<?php echo JText::_('COM_CONTACT_SELECT_CONTACT'); ?>
|
||||
<?php echo JHtml::_('select.genericlist', $this->contacts, 'id', 'class="inputbox" onchange="document.location.href = this.value"', 'link', 'name', $this->contact->link);?>
|
||||
</form>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php if ($this->params->get('show_tags', 1) && !empty($this->item->tags)) : ?>
|
||||
<?php $this->item->tagLayout = new JLayoutFile('joomla.content.tags'); ?>
|
||||
<?php echo $this->item->tagLayout->render($this->item->tags->itemTags); ?>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php if ($this->params->get('presentation_style') == 'sliders'):?>
|
||||
<div class="accordion" id="accordionContact">
|
||||
<div class="accordion-group">
|
||||
<div class="accordion-heading">
|
||||
<a class="accordion-toggle" data-toggle="collapse" data-parent="accordionContact" href="#basic-details">
|
||||
<?php echo JText::_('COM_CONTACT_DETAILS');?>
|
||||
</a>
|
||||
</div>
|
||||
<div id="basic-details" class="accordion-body collapse in">
|
||||
<div class="accordion-inner">
|
||||
<?php endif; ?>
|
||||
<?php if ($this->params->get('presentation_style') == 'plain'):?>
|
||||
<?php echo '<h3>' . JText::_('COM_CONTACT_DETAILS') . '</h3>'; ?>
|
||||
<?php endif; ?>
|
||||
<?php if ($this->contact->image && $this->params->get('show_image')) : ?>
|
||||
<div class="thumbnail pull-right">
|
||||
<?php echo JHtml::_('image', $this->contact->image, JText::_('COM_CONTACT_IMAGE_DETAILS'), array('align' => 'middle')); ?>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php if ($this->contact->con_position && $this->params->get('show_position')) : ?>
|
||||
<dl class="contact-position dl-horizontal">
|
||||
<dd>
|
||||
<?php echo $this->contact->con_position; ?>
|
||||
</dd>
|
||||
</dl>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php echo $this->loadTemplate('address'); ?>
|
||||
|
||||
<?php if ($this->params->get('allow_vcard')) : ?>
|
||||
<?php echo JText::_('COM_CONTACT_DOWNLOAD_INFORMATION_AS');?>
|
||||
<a href="<?php echo JRoute::_('index.php?option=com_contact&view=contact&id='.$this->contact->id . '&format=vcf'); ?>">
|
||||
<?php echo JText::_('COM_CONTACT_VCARD');?></a>
|
||||
<?php endif; ?>
|
||||
<?php if ($this->params->get('presentation_style') == 'sliders'):?>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
<?php if ($this->params->get('show_email_form') && ($this->contact->email_to || $this->contact->user_id)) : ?>
|
||||
|
||||
<?php if ($this->params->get('presentation_style') == 'sliders'):?>
|
||||
<div class="accordion-group">
|
||||
<div class="accordion-heading">
|
||||
<a class="accordion-toggle" data-toggle="collapse" data-parent="accordionContact" href="#display-form">
|
||||
<?php echo JText::_('COM_CONTACT_EMAIL_FORM');?>
|
||||
</a>
|
||||
</div>
|
||||
<div id="display-form" class="accordion-body collapse">
|
||||
<div class="accordion-inner">
|
||||
<?php endif; ?>
|
||||
<?php if ($this->params->get('presentation_style') == 'plain'):?>
|
||||
<?php echo '<h3>'. JText::_('COM_CONTACT_EMAIL_FORM').'</h3>'; ?>
|
||||
<?php endif; ?>
|
||||
<?php echo $this->loadTemplate('form'); ?>
|
||||
<?php if ($this->params->get('presentation_style') == 'sliders'):?>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php if ($this->params->get('show_links')) : ?>
|
||||
<?php echo $this->loadTemplate('links'); ?>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php if ($this->params->get('show_articles') && $this->contact->user_id && $this->contact->articles) : ?>
|
||||
<?php if ($this->params->get('presentation_style') == 'sliders'):?>
|
||||
<div class="accordion-group">
|
||||
<div class="accordion-heading">
|
||||
<a class="accordion-toggle" data-toggle="collapse" data-parent="accordionContact" href="#display-articles">
|
||||
<?php echo JText::_('JGLOBAL_ARTICLES');?>
|
||||
</a>
|
||||
</div>
|
||||
<div id="display-articles" class="accordion-body collapse">
|
||||
<div class="accordion-inner">
|
||||
<?php endif; ?>
|
||||
<?php if ($this->params->get('presentation_style') == 'plain'):?>
|
||||
<?php echo '<h3>'. JText::_('JGLOBAL_ARTICLES').'</h3>'; ?>
|
||||
<?php endif; ?>
|
||||
<?php echo $this->loadTemplate('articles'); ?>
|
||||
<?php if ($this->params->get('presentation_style') == 'sliders'):?>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
<?php endif; ?>
|
||||
<?php if ($this->params->get('show_profile') && $this->contact->user_id && JPluginHelper::isEnabled('user', 'profile')) : ?>
|
||||
<?php if ($this->params->get('presentation_style') == 'sliders'):?>
|
||||
<div class="accordion-group">
|
||||
<div class="accordion-heading">
|
||||
<a class="accordion-toggle" data-toggle="collapse" data-parent="accordionContact" href="#display-profile">
|
||||
<?php echo JText::_('COM_CONTACT_PROFILE');?>
|
||||
</a>
|
||||
</div>
|
||||
<div id="display-profile" class="accordion-body collapse">
|
||||
<div class="accordion-inner">
|
||||
<?php endif; ?>
|
||||
<?php if ($this->params->get('presentation_style') == 'plain'):?>
|
||||
<?php echo '<h3>'. JText::_('COM_CONTACT_PROFILE').'</h3>'; ?>
|
||||
<?php endif; ?>
|
||||
<?php echo $this->loadTemplate('profile'); ?>
|
||||
<?php if ($this->params->get('presentation_style') == 'sliders'):?>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
<?php endif; ?>
|
||||
<?php if ($this->contact->misc && $this->params->get('show_misc')) : ?>
|
||||
<?php if ($this->params->get('presentation_style') == 'sliders'):?>
|
||||
<div class="accordion-group">
|
||||
<div class="accordion-heading">
|
||||
<a class="accordion-toggle" data-toggle="collapse" data-parent="accordionContact" href="#display-misc">
|
||||
<?php echo JText::_('COM_CONTACT_OTHER_INFORMATION');?>
|
||||
</a>
|
||||
</div>
|
||||
<div id="display-misc" class="accordion-body collapse">
|
||||
<div class="accordion-inner">
|
||||
<?php endif; ?>
|
||||
<?php if ($this->params->get('presentation_style') == 'plain'):?>
|
||||
<?php echo '<h3>'. JText::_('COM_CONTACT_OTHER_INFORMATION').'</h3>'; ?>
|
||||
<?php endif; ?>
|
||||
<div class="contact-miscinfo">
|
||||
<dl class="dl-horizontal">
|
||||
<dt>
|
||||
<span class="<?php echo $this->params->get('marker_class'); ?>">
|
||||
<?php echo $this->params->get('marker_misc'); ?>
|
||||
</span>
|
||||
</dt>
|
||||
<dd>
|
||||
<span class="contact-misc">
|
||||
<?php echo $this->contact->misc; ?>
|
||||
</span>
|
||||
</dd>
|
||||
</dl>
|
||||
</div>
|
||||
<?php if ($this->params->get('presentation_style') == 'sliders'):?>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
<?php endif; ?>
|
||||
<?php if ($this->params->get('presentation_style') == 'sliders'):?>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
119
templates/beez3/html/com_contact/contact/default_address.php
Normal file
@ -0,0 +1,119 @@
|
||||
<?php
|
||||
/**
|
||||
* @package Joomla.Site
|
||||
* @subpackage com_contact
|
||||
*
|
||||
* @copyright Copyright (C) 2005 - 2013 Open Source Matters, Inc. All rights reserved.
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
/* marker_class: Class based on the selection of text, none, or icons
|
||||
* jicon-text, jicon-none, jicon-icon
|
||||
*/
|
||||
?>
|
||||
<dl class="contact-address dl-horizontal">
|
||||
<?php if (($this->params->get('address_check') > 0) && ($this->contact->address || $this->contact->suburb || $this->contact->state || $this->contact->country || $this->contact->postcode)) : ?>
|
||||
<?php if ($this->params->get('address_check') > 0) : ?>
|
||||
<dt>
|
||||
<span class="<?php echo $this->params->get('marker_class'); ?>" >
|
||||
<?php echo $this->params->get('marker_address'); ?>
|
||||
</span>
|
||||
</dt>
|
||||
<dd>
|
||||
<address>
|
||||
<?php endif; ?>
|
||||
<?php if ($this->contact->address && $this->params->get('show_street_address')) : ?>
|
||||
<span class="contact-street">
|
||||
<?php echo nl2br($this->contact->address); ?>
|
||||
</span>
|
||||
<?php endif; ?>
|
||||
<?php if ($this->contact->suburb && $this->params->get('show_suburb')) : ?>
|
||||
<span class="contact-suburb">
|
||||
<?php echo $this->contact->suburb; ?>
|
||||
</span>
|
||||
<?php endif; ?>
|
||||
<?php if ($this->contact->state && $this->params->get('show_state')) : ?>
|
||||
<span class="contact-state">
|
||||
<?php echo $this->contact->state; ?>
|
||||
</span>
|
||||
<?php endif; ?>
|
||||
<?php if ($this->contact->postcode && $this->params->get('show_postcode')) : ?>
|
||||
<span class="contact-postcode">
|
||||
<?php echo $this->contact->postcode; ?>
|
||||
</span>
|
||||
<?php endif; ?>
|
||||
<?php if ($this->contact->country && $this->params->get('show_country')) : ?>
|
||||
<span class="contact-country">
|
||||
<?php echo $this->contact->country; ?>
|
||||
</span>
|
||||
<?php endif; ?>
|
||||
<?php endif; ?>
|
||||
<?php if ($this->params->get('address_check') > 0) : ?>
|
||||
</address>
|
||||
</dd>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php if ($this->contact->email_to && $this->params->get('show_email')) : ?>
|
||||
<dt>
|
||||
<span class="<?php echo $this->params->get('marker_class'); ?>" >
|
||||
<?php echo $this->params->get('marker_email'); ?>
|
||||
</span>
|
||||
</dt>
|
||||
<dd>
|
||||
<span class="contact-emailto">
|
||||
<?php echo $this->contact->email_to; ?>
|
||||
</span>
|
||||
</dd>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php if ($this->contact->telephone && $this->params->get('show_telephone')) : ?>
|
||||
<dt>
|
||||
<span class="<?php echo $this->params->get('marker_class'); ?>" >
|
||||
<?php echo $this->params->get('marker_telephone'); ?>
|
||||
</span>
|
||||
</dt>
|
||||
<dd>
|
||||
<span class="contact-telephone">
|
||||
<?php echo nl2br($this->contact->telephone); ?>
|
||||
</span>
|
||||
</dd>
|
||||
<?php endif; ?>
|
||||
<?php if ($this->contact->fax && $this->params->get('show_fax')) : ?>
|
||||
<dt>
|
||||
<span class="<?php echo $this->params->get('marker_class'); ?>" >
|
||||
<?php echo $this->params->get('marker_fax'); ?>
|
||||
</span>
|
||||
</dt>
|
||||
<dd>
|
||||
<span class="contact-fax">
|
||||
<?php echo nl2br($this->contact->fax); ?>
|
||||
</span>
|
||||
</dd>
|
||||
<?php endif; ?>
|
||||
<?php if ($this->contact->mobile && $this->params->get('show_mobile')) :?>
|
||||
<dt>
|
||||
<span class="<?php echo $this->params->get('marker_class'); ?>" >
|
||||
<?php echo $this->params->get('marker_mobile'); ?>
|
||||
</span>
|
||||
</dt>
|
||||
<dd>
|
||||
<span class="contact-mobile">
|
||||
<?php echo nl2br($this->contact->mobile); ?>
|
||||
</span>
|
||||
</dd>
|
||||
<?php endif; ?>
|
||||
<?php if ($this->contact->webpage && $this->params->get('show_webpage')) : ?>
|
||||
<dt>
|
||||
<span class="<?php echo $this->params->get('marker_class'); ?>" >
|
||||
</span>
|
||||
</dt>
|
||||
<dd>
|
||||
<span class="contact-webpage">
|
||||
<a href="<?php echo $this->contact->webpage; ?>" target="_blank">
|
||||
<?php echo $this->contact->webpage; ?></a>
|
||||
</span>
|
||||
</dd>
|
||||
<?php endif; ?>
|
||||
</dl>
|
||||
@ -0,0 +1,26 @@
|
||||
<?php
|
||||
/**
|
||||
* @package Joomla.Site
|
||||
* @subpackage com_contact
|
||||
*
|
||||
* @copyright Copyright (C) 2005 - 2013 Open Source Matters, Inc. All rights reserved.
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
require_once JPATH_SITE . '/components/com_content/helpers/route.php';
|
||||
|
||||
?>
|
||||
<?php if ($this->params->get('show_articles')) : ?>
|
||||
<div class="contact-articles">
|
||||
|
||||
<ol>
|
||||
<?php foreach ($this->item->articles as $article) : ?>
|
||||
<li>
|
||||
<?php echo JHtml::_('link', JRoute::_(ContentHelperRoute::getArticleRoute($article->slug, $article->catslug)), htmlspecialchars($article->title, ENT_COMPAT, 'UTF-8')); ?>
|
||||
</li>
|
||||
<?php endforeach; ?>
|
||||
</ol>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
79
templates/beez3/html/com_contact/contact/default_form.php
Normal file
@ -0,0 +1,79 @@
|
||||
<?php
|
||||
/**
|
||||
* @package Joomla.Site
|
||||
* @subpackage com_contact
|
||||
*
|
||||
* @copyright Copyright (C) 2005 - 2013 Open Source Matters, Inc. All rights reserved.
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
JHtml::_('behavior.keepalive');
|
||||
JHtml::_('behavior.formvalidation');
|
||||
|
||||
if (isset($this->error)) : ?>
|
||||
<div class="contact-error">
|
||||
<?php echo $this->error; ?>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
|
||||
<div class="contact-form">
|
||||
<form id="contact-form" action="<?php echo JRoute::_('index.php'); ?>" method="post" class="form-validate form-horizontal">
|
||||
<fieldset>
|
||||
<legend><?php echo JText::_('COM_CONTACT_FORM_LABEL'); ?></legend>
|
||||
<div class="control-group">
|
||||
<div class="control-label"><?php echo $this->form->getLabel('contact_name'); ?></div>
|
||||
<div class="controls"><?php echo $this->form->getInput('contact_name'); ?></div>
|
||||
</div>
|
||||
<div class="control-group">
|
||||
<div class="control-label"><?php echo $this->form->getLabel('contact_email'); ?></div>
|
||||
<div class="controls"><?php echo $this->form->getInput('contact_email'); ?></div>
|
||||
</div>
|
||||
<div class="control-group">
|
||||
<div class="control-label"><?php echo $this->form->getLabel('contact_subject'); ?></div>
|
||||
<div class="controls"><?php echo $this->form->getInput('contact_subject'); ?></div>
|
||||
</div>
|
||||
<div class="control-group">
|
||||
<div class="control-label"><?php echo $this->form->getLabel('contact_message'); ?></div>
|
||||
<div class="controls"><?php echo $this->form->getInput('contact_message'); ?></div>
|
||||
</div>
|
||||
<?php if ($this->params->get('show_email_copy')){ ?>
|
||||
<div class="control-group">
|
||||
<div class="control-label"><?php echo $this->form->getLabel('contact_email_copy'); ?></div>
|
||||
<div class="controls"><?php echo $this->form->getInput('contact_email_copy'); ?></div>
|
||||
</div>
|
||||
<?php } ?>
|
||||
<?php //Dynamically load any additional fields from plugins. ?>
|
||||
<?php foreach ($this->form->getFieldsets() as $fieldset) : ?>
|
||||
<?php if ($fieldset->name != 'contact'):?>
|
||||
<?php $fields = $this->form->getFieldset($fieldset->name);?>
|
||||
<?php foreach ($fields as $field) : ?>
|
||||
<div class="control-group">
|
||||
<?php if ($field->hidden) : ?>
|
||||
<div class="controls">
|
||||
<?php echo $field->input;?>
|
||||
</div>
|
||||
<?php else:?>
|
||||
<div class="control-label">
|
||||
<?php echo $field->label; ?>
|
||||
<?php if (!$field->required && $field->type != "Spacer") : ?>
|
||||
<span class="optional"><?php echo JText::_('COM_CONTACT_OPTIONAL');?></span>
|
||||
<?php endif; ?>
|
||||
</div>
|
||||
<div class="controls"><?php echo $field->input;?></div>
|
||||
<?php endif;?>
|
||||
</div>
|
||||
<?php endforeach;?>
|
||||
<?php endif ?>
|
||||
<?php endforeach;?>
|
||||
<div class="form-actions"><button class="btn btn-primary validate" type="submit"><?php echo JText::_('COM_CONTACT_CONTACT_SEND'); ?></button>
|
||||
<input type="hidden" name="option" value="com_contact" />
|
||||
<input type="hidden" name="task" value="contact.submit" />
|
||||
<input type="hidden" name="return" value="<?php echo $this->return_page;?>" />
|
||||
<input type="hidden" name="id" value="<?php echo $this->contact->slug; ?>" />
|
||||
<?php echo JHtml::_('form.token'); ?>
|
||||
</div>
|
||||
</fieldset>
|
||||
</form>
|
||||
</div>
|
||||
56
templates/beez3/html/com_contact/contact/default_links.php
Normal file
@ -0,0 +1,56 @@
|
||||
<?php
|
||||
/**
|
||||
* @package Joomla.Site
|
||||
* @subpackage com_contact
|
||||
*
|
||||
* @copyright Copyright (C) 2005 - 2013 Open Source Matters, Inc. All rights reserved.
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
if ($this->params->get('presentation_style') == 'sliders'):?>
|
||||
<div class="accordion-group">
|
||||
<div class="accordion-heading">
|
||||
<a class="accordion-toggle" data-toggle="collapse" data-parent="accordionContact" href="#display-links">
|
||||
<?php echo JText::_('COM_CONTACT_LINKS');?>
|
||||
</a>
|
||||
</div>
|
||||
<div id="display-links" class="accordion-body collapse">
|
||||
<div class="accordion-inner">
|
||||
<?php endif; ?>
|
||||
<?php if ($this->params->get('presentation_style') == 'plain'):?>
|
||||
<?php echo '<h3>'. JText::_('JGLOBAL_ARTICLES').'</h3>'; ?>
|
||||
<?php endif; ?>
|
||||
|
||||
<div class="contact-links">
|
||||
<ul class="nav nav-list">
|
||||
<?php
|
||||
foreach (range('a', 'e') as $char) :// letters 'a' to 'e'
|
||||
$link = $this->contact->params->get('link'.$char);
|
||||
$label = $this->contact->params->get('link'.$char.'_name');
|
||||
|
||||
if (!$link) :
|
||||
continue;
|
||||
endif;
|
||||
|
||||
// Add 'http://' if not present
|
||||
$link = (0 === strpos($link, 'http')) ? $link : 'http://'.$link;
|
||||
|
||||
// If no label is present, take the link
|
||||
$label = ($label) ? $label : $link;
|
||||
?>
|
||||
<li>
|
||||
<a href="<?php echo $link; ?>">
|
||||
<?php echo $label; ?>
|
||||
</a>
|
||||
</li>
|
||||
<?php endforeach; ?>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<?php if ($this->params->get('presentation_style') == 'sliders'):?>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
40
templates/beez3/html/com_contact/contact/default_profile.php
Normal file
@ -0,0 +1,40 @@
|
||||
<?php
|
||||
/**
|
||||
* @package Joomla.Site
|
||||
* @subpackage com_contact
|
||||
*
|
||||
* @copyright Copyright (C) 2005 - 2013 Open Source Matters, Inc. All rights reserved.
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
?>
|
||||
<?php if (JPluginHelper::isEnabled('user', 'profile')) :
|
||||
$fields = $this->item->profile->getFieldset('profile'); ?>
|
||||
<div class="contact-profile" id="users-profile-custom">
|
||||
<dl class="dl-horizontal">
|
||||
<?php foreach ($fields as $profile) :
|
||||
if ($profile->value) :
|
||||
echo '<dt>'.$profile->label.'</dt>';
|
||||
$profile->text = htmlspecialchars($profile->value, ENT_COMPAT, 'UTF-8');
|
||||
|
||||
switch ($profile->id) :
|
||||
case "profile_website" :
|
||||
$v_http = substr($profile->profile_value, 0, 4);
|
||||
|
||||
if ($v_http == "http") :
|
||||
echo '<dd><a href="'.$profile->text.'">'.$profile->text.'</a></dd>';
|
||||
else :
|
||||
echo '<dd><a href="http://'.$profile->text.'">'.$profile->text.'</a></dd>';
|
||||
endif;
|
||||
break;
|
||||
|
||||
default:
|
||||
echo '<dd>'.$profile->text.'</dd>';
|
||||
break;
|
||||
endswitch;
|
||||
endif;
|
||||
endforeach; ?>
|
||||
</dl>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
75
templates/beez3/html/com_contact/contact/encyclopedia.php
Normal file
@ -0,0 +1,75 @@
|
||||
<?php
|
||||
/**
|
||||
* @package Joomla.Site
|
||||
* @subpackage Templates.beez3
|
||||
*
|
||||
* @copyright Copyright (C) 2005 - 2013 Open Source Matters, Inc. All rights reserved.
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
$cparams = JComponentHelper::getParams('com_media');
|
||||
?>
|
||||
<div class="contact<?php echo $this->pageclass_sfx?>">
|
||||
<?php $contactLink = ContactHelperRoute::getCategoryRoute($this->contact->catid);?>
|
||||
<h3>
|
||||
<span class="contact-category"><a href="<?php echo $contactLink; ?>">
|
||||
<?php echo $this->escape($this->contact->category_title); ?></a>
|
||||
</span>
|
||||
</h3>
|
||||
<?php if ($this->contact->name && $this->params->get('show_name')) : ?>
|
||||
<h2>
|
||||
<span class="contact-name"><?php echo $this->contact->name; ?></span>
|
||||
</h2>
|
||||
<?php endif; ?>
|
||||
|
||||
<div class="encyclopedia_col1">
|
||||
<?php if ($this->contact->image ) : ?>
|
||||
<div class="contact-image">
|
||||
<?php // We are going to use the contact address field for the main image caption.
|
||||
// If we have a caption load the caption behavior. ?>
|
||||
<?php if ($this->contact->address)
|
||||
{
|
||||
JHtml::_('behavior.caption');
|
||||
}?>
|
||||
<?php echo JHtml::_('image', $this->contact->image, JText::_('COM_CONTACT_IMAGE_DETAILS'), array('align' => 'middle', 'class' => 'caption', 'title' => $this->contact->address)); ?>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
</div>
|
||||
<div class="encyclopedia_col2">
|
||||
<?php // We are going to use some of the standard content fields in non standard ways. ?>
|
||||
<div class="contact-miscinfo">
|
||||
|
||||
<div class="contact-misc">
|
||||
<?php echo $this->contact->misc; ?>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<?php //Let's use position for the scientific name. ?>
|
||||
<?php if ($this->contact->con_position && $this->params->get('show_position')) : ?>
|
||||
<p class="contact-position"><?php echo $this->contact->con_position; ?></p>
|
||||
<?php endif; ?>
|
||||
<?php //Let's use state to put the family name. ?>
|
||||
<?php if ($this->contact->state && $this->params->get('show_state')) : ?>
|
||||
<p class="contact-state"><?php echo $this->contact->state; ?></p>
|
||||
<?php endif; ?>
|
||||
<?php // Let's use contry to list the main countries it grows in. '?>
|
||||
<?php if ($this->contact->country && $this->params->get('show_country')) : ?>
|
||||
<p class="contact-country"><?php echo $this->contact->country; ?></p>
|
||||
<?php endif; ?>
|
||||
</div>
|
||||
|
||||
<div class="clr"> </div>
|
||||
<?php if ($this->params->get('presentation_style') != 'plain'):?>
|
||||
<?php echo JHtml::_($this->params->get('presentation_style').'.start', 'contact-slider'); ?>
|
||||
<?php endif ?>
|
||||
<div class="encyclopedia_links">
|
||||
<?php echo $this->loadTemplate('links'); ?>
|
||||
|
||||
</div>
|
||||
<?php if ($this->params->get('presentation_style') != 'plain'):?>
|
||||
<?php echo JHtml::_($this->params->get('presentation_style').'.end'); ?>
|
||||
<?php endif; ?>
|
||||
</div>
|
||||
1
templates/beez3/html/com_contact/contact/index.html
Normal file
@ -0,0 +1 @@
|
||||
<!DOCTYPE html><title></title>
|
||||
1
templates/beez3/html/com_contact/index.html
Normal file
@ -0,0 +1 @@
|
||||
<!DOCTYPE html><title></title>
|
||||
51
templates/beez3/html/com_content/archive/default.php
Normal file
@ -0,0 +1,51 @@
|
||||
<?php
|
||||
/**
|
||||
* @package Joomla.Site
|
||||
* @subpackage Template.beez5
|
||||
*
|
||||
* @copyright Copyright (C) 2005 - 2013 Open Source Matters, Inc. All rights reserved.
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
$app = JFactory::getApplication();
|
||||
$templateparams = $app->getTemplate(true)->params;
|
||||
|
||||
if (!$templateparams->get('html5', 0))
|
||||
{
|
||||
require JPATH_BASE.'/components/com_content/views/archive/tmpl/default.php';
|
||||
//evtl. ersetzen durch JPATH_COMPONENT.'/views/...'
|
||||
} else {
|
||||
JHtml::addIncludePath(JPATH_COMPONENT . '/helpers');
|
||||
|
||||
JHtml::_('behavior.caption');
|
||||
?><div class="archive<?php echo $this->pageclass_sfx;?>">
|
||||
<?php if ($this->params->get('show_page_heading')) : ?>
|
||||
<h1>
|
||||
<?php echo $this->escape($this->params->get('page_heading')); ?>
|
||||
</h1>
|
||||
<?php endif; ?>
|
||||
<form id="adminForm" action="<?php echo JRoute::_('index.php')?>" method="post">
|
||||
<fieldset class="filters">
|
||||
<legend class="hidelabeltxt"><?php echo JText::_('JGLOBAL_FILTER_LABEL'); ?></legend>
|
||||
<div class="filter-search">
|
||||
<?php if ($this->params->get('filter_field') != 'hide') : ?>
|
||||
<label class="filter-search-lbl" for="filter-search"><?php echo JText::_('COM_CONTENT_'.$this->params->get('filter_field').'_FILTER_LABEL').' '; ?></label>
|
||||
<input type="text" name="filter-search" id="filter-search" value="<?php echo $this->escape($this->filter); ?>" class="inputbox" onchange="document.getElementById('adminForm').submit();" />
|
||||
<?php endif; ?>
|
||||
|
||||
<?php echo $this->form->monthField; ?>
|
||||
<?php echo $this->form->yearField; ?>
|
||||
<?php echo $this->form->limitField; ?>
|
||||
<button type="submit" class="button"><?php echo JText::_('JGLOBAL_FILTER_BUTTON'); ?></button>
|
||||
</div>
|
||||
<input type="hidden" name="view" value="archive" />
|
||||
<input type="hidden" name="option" value="com_content" />
|
||||
<input type="hidden" name="limitstart" value="0" />
|
||||
</fieldset>
|
||||
|
||||
<?php echo $this->loadTemplate('items'); ?>
|
||||
</form>
|
||||
</div>
|
||||
<?php } ?>
|
||||
116
templates/beez3/html/com_content/archive/default_items.php
Normal file
@ -0,0 +1,116 @@
|
||||
<?php
|
||||
/**
|
||||
* @package Joomla.Site
|
||||
* @subpackage Template.beez5
|
||||
*
|
||||
* @copyright Copyright (C) 2005 - 2013 Open Source Matters, Inc. All rights reserved.
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
$app = JFactory::getApplication();
|
||||
$templateparams = $app->getTemplate(true)->params;
|
||||
|
||||
if (!$templateparams->get('html5', 0))
|
||||
{
|
||||
require JPATH_BASE.'/components/com_content/views/archive/tmpl/default_items.php';
|
||||
//evtl. ersetzen durch JPATH_COMPONENT.'/views/...'
|
||||
} else {
|
||||
JHtml::addIncludePath(JPATH_COMPONENT . '/helpers');
|
||||
$params = &$this->params;
|
||||
?>
|
||||
<ul id="archive-items">
|
||||
<?php foreach ($this->items as $i => $item) : ?>
|
||||
<li class="row<?php echo $i % 2; ?>">
|
||||
|
||||
<h2>
|
||||
<?php if ($params->get('link_titles')) : ?>
|
||||
<a href="<?php echo JRoute::_(ContentHelperRoute::getArticleRoute($item->slug)); ?>">
|
||||
<?php echo $this->escape($item->title); ?></a>
|
||||
<?php else: ?>
|
||||
<?php echo $this->escape($item->title); ?>
|
||||
<?php endif; ?>
|
||||
</h2>
|
||||
|
||||
|
||||
<?php if (($params->get('show_author')) or ($params->get('show_parent_category')) or ($params->get('show_category')) or ($params->get('show_create_date')) or ($params->get('show_modify_date')) or ($params->get('show_publish_date')) or ($params->get('show_hits'))) : ?>
|
||||
<dl class="article-info">
|
||||
<dt class="article-info-term"><?php echo JText::_('COM_CONTENT_ARTICLE_INFO'); ?></dt>
|
||||
<?php endif; ?>
|
||||
<?php if ($params->get('show_parent_category')) : ?>
|
||||
<dd class="parent-category-name">
|
||||
<?php $title = $this->escape($item->parent_title);
|
||||
$url = '<a href="'.JRoute::_(ContentHelperRoute::getCategoryRoute($item->parent_slug)).'">'.$title.'</a>';?>
|
||||
<?php if ($params->get('link_parent_category') && $item->parent_slug) : ?>
|
||||
<?php echo JText::sprintf('COM_CONTENT_PARENT', $url); ?>
|
||||
<?php else : ?>
|
||||
<?php echo JText::sprintf('COM_CONTENT_PARENT', $title); ?>
|
||||
<?php endif; ?>
|
||||
</dd>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php if ($params->get('show_category')) : ?>
|
||||
<dd class="category-name">
|
||||
<?php $title = $this->escape($item->category_title);
|
||||
$url = '<a href="' . JRoute::_(ContentHelperRoute::getCategoryRoute($item->catslug)) . '">' . $title . '</a>'; ?>
|
||||
<?php if ($params->get('link_category') && $item->catslug) : ?>
|
||||
<?php echo JText::sprintf('COM_CONTENT_CATEGORY', $url); ?>
|
||||
<?php else : ?>
|
||||
<?php echo JText::sprintf('COM_CONTENT_CATEGORY', $title); ?>
|
||||
<?php endif; ?>
|
||||
</dd>
|
||||
<?php endif; ?>
|
||||
<?php if ($params->get('show_create_date')) : ?>
|
||||
<dd class="create">
|
||||
<?php echo JText::sprintf('COM_CONTENT_CREATED_DATE_ON', JHtml::_('date', $item->created, JText::_('DATE_FORMAT_LC2'))); ?>
|
||||
</dd>
|
||||
<?php endif; ?>
|
||||
<?php if ($params->get('show_modify_date')) : ?>
|
||||
<dd class="modified">
|
||||
<?php echo JText::sprintf('COM_CONTENT_LAST_UPDATED', JHtml::_('date', $item->modified, JText::_('DATE_FORMAT_LC2'))); ?>
|
||||
</dd>
|
||||
<?php endif; ?>
|
||||
<?php if ($params->get('show_publish_date')) : ?>
|
||||
<dd class="published">
|
||||
<?php echo JText::sprintf('COM_CONTENT_PUBLISHED_DATE_ON', JHtml::_('date', $item->publish_up, JText::_('DATE_FORMAT_LC2'))); ?>
|
||||
</dd>
|
||||
<?php endif; ?>
|
||||
<?php if ($params->get('show_author') && !empty($item->author )) : ?>
|
||||
<dd class="createdby">
|
||||
<?php $author = $item->author; ?>
|
||||
<?php $author = ($item->created_by_alias ? $item->created_by_alias : $author);?>
|
||||
|
||||
<?php if (!empty($item->contactid ) && $params->get('link_author') == true):?>
|
||||
<?php echo JText::sprintf('COM_CONTENT_WRITTEN_BY',
|
||||
JHtml::_('link', JRoute::_('index.php?option=com_contact&view=contact&id=' . $item->contactid), $author)
|
||||
); ?>
|
||||
|
||||
<?php else :?>
|
||||
<?php echo JText::sprintf('COM_CONTENT_WRITTEN_BY', $author); ?>
|
||||
<?php endif; ?>
|
||||
</dd>
|
||||
<?php endif; ?>
|
||||
<?php if ($params->get('show_hits')) : ?>
|
||||
<dd class="hits">
|
||||
<?php echo JText::sprintf('COM_CONTENT_ARTICLE_HITS', $item->hits); ?>
|
||||
</dd>
|
||||
<?php endif; ?>
|
||||
<?php if (($params->get('show_author')) or ($params->get('show_category')) or ($params->get('show_create_date')) or ($params->get('show_modify_date')) or ($params->get('show_publish_date')) or ($params->get('show_hits'))) :?>
|
||||
</dl>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php if ($params->get('show_intro')) :?>
|
||||
<div class="intro">
|
||||
<?php echo JHtml::_('string.truncate', $item->introtext, $params->get('introtext_limit')); ?>
|
||||
</div>
|
||||
|
||||
<?php endif; ?>
|
||||
</li>
|
||||
<?php endforeach; ?>
|
||||
</ul>
|
||||
<div id="pagination">
|
||||
<span><?php echo $this->pagination->getPagesLinks(); ?></span>
|
||||
<span><?php echo $this->pagination->getPagesCounter(); ?></span>
|
||||
</div>
|
||||
<?php } ?>
|
||||
1
templates/beez3/html/com_content/archive/index.html
Normal file
@ -0,0 +1 @@
|
||||
<!DOCTYPE html><title></title>
|
||||
199
templates/beez3/html/com_content/article/default.php
Normal file
@ -0,0 +1,199 @@
|
||||
<?php
|
||||
/**
|
||||
* @package Joomla.Site
|
||||
* @subpackage Templates.beez3
|
||||
*
|
||||
* @copyright Copyright (C) 2005 - 2013 Open Source Matters, Inc. All rights reserved.
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
$app = JFactory::getApplication();
|
||||
$templateparams = $app->getTemplate(true)->params;
|
||||
$images = json_decode($this->item->images);
|
||||
$urls = json_decode($this->item->urls);
|
||||
JHtml::addIncludePath(JPATH_COMPONENT . '/helpers');
|
||||
JHtml::_('behavior.caption');
|
||||
|
||||
// Create shortcut to parameters.
|
||||
$params = $this->item->params;
|
||||
|
||||
?>
|
||||
<article class="item-page<?php echo $this->pageclass_sfx?>">
|
||||
<?php if ($this->params->get('show_page_heading')) : ?>
|
||||
|
||||
<?php if ($this->params->get('show_page_heading') and $params->get('show_title')) :?>
|
||||
<hgroup>
|
||||
<?php endif; ?>
|
||||
<h1>
|
||||
<?php echo $this->escape($this->params->get('page_heading')); ?>
|
||||
</h1>
|
||||
<?php endif; ?>
|
||||
<?php
|
||||
if (!empty($this->item->pagination) && $this->item->pagination && !$this->item->paginationposition && $this->item->paginationrelative)
|
||||
{
|
||||
echo $this->item->pagination;
|
||||
}
|
||||
|
||||
if ($params->get('show_title')) : ?>
|
||||
<h2>
|
||||
<?php echo $this->escape($this->item->title); ?>
|
||||
</h2>
|
||||
<?php endif; ?>
|
||||
<?php if ($this->params->get('show_page_heading') and $params->get('show_title')) :?>
|
||||
</hgroup>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php if ($params->get('access-edit') || $params->get('show_print_icon') || $params->get('show_email_icon')) : ?>
|
||||
<ul class="actions">
|
||||
<?php if (!$this->print) : ?>
|
||||
<?php if ($params->get('show_print_icon')) : ?>
|
||||
<li class="print-icon">
|
||||
<?php echo JHtml::_('icon.print_popup', $this->item, $params, array(), true); ?>
|
||||
</li>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php if ($params->get('show_email_icon')) : ?>
|
||||
<li class="email-icon">
|
||||
<?php echo JHtml::_('icon.email', $this->item, $params, array(), true); ?>
|
||||
</li>
|
||||
<?php endif; ?>
|
||||
<?php if ($this->user->authorise('core.edit', 'com_content.article.'.$this->item->id)) : ?>
|
||||
<li class="edit-icon">
|
||||
<?php echo JHtml::_('icon.edit', $this->item, $params, array(), true); ?>
|
||||
</li>
|
||||
<?php endif; ?>
|
||||
<?php else : ?>
|
||||
<li>
|
||||
<?php echo JHtml::_('icon.print_screen', $this->item, $params, array(), true); ?>
|
||||
</li>
|
||||
<?php endif; ?>
|
||||
</ul>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php if (!$params->get('show_intro')) :
|
||||
echo $this->item->event->afterDisplayTitle;
|
||||
endif; ?>
|
||||
|
||||
<?php echo $this->item->event->beforeDisplayContent; ?>
|
||||
|
||||
<?php $useDefList = (($params->get('show_author')) or ($params->get('show_category')) or ($params->get('show_parent_category'))
|
||||
or ($params->get('show_create_date')) or ($params->get('show_modify_date')) or ($params->get('show_publish_date'))
|
||||
or ($params->get('show_hits'))); ?>
|
||||
|
||||
<?php if ($useDefList) : ?>
|
||||
<dl class="article-info">
|
||||
<dt class="article-info-term"><?php echo JText::_('COM_CONTENT_ARTICLE_INFO'); ?></dt>
|
||||
<?php endif; ?>
|
||||
<?php if ($params->get('show_parent_category') && $this->item->parent_slug != '1:root') : ?>
|
||||
<dd class="parent-category-name">
|
||||
<?php $title = $this->escape($this->item->parent_title);
|
||||
$url = '<a href="'.JRoute::_(ContentHelperRoute::getCategoryRoute($this->item->parent_slug)).'">'.$title.'</a>';?>
|
||||
<?php if ($params->get('link_parent_category') and $this->item->parent_slug) : ?>
|
||||
<?php echo JText::sprintf('COM_CONTENT_PARENT', $url); ?>
|
||||
<?php else : ?>
|
||||
<?php echo JText::sprintf('COM_CONTENT_PARENT', $title); ?>
|
||||
<?php endif; ?>
|
||||
</dd>
|
||||
<?php endif; ?>
|
||||
<?php if ($params->get('show_category')) : ?>
|
||||
<dd class="category-name">
|
||||
<?php $title = $this->escape($this->item->category_title);
|
||||
$url = '<a href="'.JRoute::_(ContentHelperRoute::getCategoryRoute($this->item->catslug)).'">'.$title.'</a>';?>
|
||||
<?php if ($params->get('link_category') and $this->item->catslug) : ?>
|
||||
<?php echo JText::sprintf('COM_CONTENT_CATEGORY', $url); ?>
|
||||
<?php else : ?>
|
||||
<?php echo JText::sprintf('COM_CONTENT_CATEGORY', $title); ?>
|
||||
<?php endif; ?>
|
||||
</dd>
|
||||
<?php endif; ?>
|
||||
<?php if ($params->get('show_create_date')) : ?>
|
||||
<dd class="create">
|
||||
<?php echo JText::sprintf('COM_CONTENT_CREATED_DATE_ON', JHtml::_('date', $this->item->created, JText::_('DATE_FORMAT_LC2'))); ?>
|
||||
</dd>
|
||||
<?php endif; ?>
|
||||
<?php if ($params->get('show_modify_date')) : ?>
|
||||
<dd class="modified">
|
||||
<?php echo JText::sprintf('COM_CONTENT_LAST_UPDATED', JHtml::_('date', $this->item->modified, JText::_('DATE_FORMAT_LC2'))); ?>
|
||||
</dd>
|
||||
<?php endif; ?>
|
||||
<?php if ($params->get('show_publish_date')) : ?>
|
||||
<dd class="published">
|
||||
<?php echo JText::sprintf('COM_CONTENT_PUBLISHED_DATE_ON', JHtml::_('date', $this->item->publish_up, JText::_('DATE_FORMAT_LC2'))); ?>
|
||||
</dd>
|
||||
<?php endif; ?>
|
||||
<?php if ($params->get('show_author') && !empty($this->item->author )) : ?>
|
||||
<dd class="createdby">
|
||||
<?php $author = $this->item->author; ?>
|
||||
<?php $author = ($this->item->created_by_alias ? $this->item->created_by_alias : $author);?>
|
||||
|
||||
<?php if (!empty($this->item->contactid ) && $params->get('link_author') == true):?>
|
||||
<?php echo JText::sprintf('COM_CONTENT_WRITTEN_BY',
|
||||
JHtml::_('link', JRoute::_('index.php?option=com_contact&view=contact&id=' . $this->item->contactid), $author)
|
||||
); ?>
|
||||
|
||||
<?php else :?>
|
||||
<?php echo JText::sprintf('COM_CONTENT_WRITTEN_BY', $author); ?>
|
||||
<?php endif; ?>
|
||||
</dd>
|
||||
<?php endif; ?>
|
||||
<?php if ($params->get('show_hits')) : ?>
|
||||
<dd class="hits">
|
||||
<?php echo JText::sprintf('COM_CONTENT_ARTICLE_HITS', $this->item->hits); ?>
|
||||
</dd>
|
||||
<?php endif; ?>
|
||||
<?php if ($useDefList) : ?>
|
||||
</dl>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php if (isset ($this->item->toc)) : ?>
|
||||
<?php echo $this->item->toc; ?>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php if (isset($urls) AND ((!empty($urls->urls_position) AND ($urls->urls_position == '0')) OR ($params->get('urls_position') == '0' AND empty($urls->urls_position)))
|
||||
OR (empty($urls->urls_position) AND (!$params->get('urls_position')))) : ?>
|
||||
|
||||
<?php echo $this->loadTemplate('links'); ?>
|
||||
<?php endif; ?>
|
||||
<?php if (isset($images->image_fulltext) and !empty($images->image_fulltext)) : ?>
|
||||
<?php $imgfloat = (empty($images->float_fulltext)) ? $params->get('float_fulltext') : $images->float_fulltext; ?>
|
||||
|
||||
<div class="img-fulltext-<?php echo htmlspecialchars($imgfloat); ?>">
|
||||
<img
|
||||
<?php if ($images->image_fulltext_caption):
|
||||
echo 'class="caption"'.' title="' .htmlspecialchars($images->image_fulltext_caption) .'"';
|
||||
endif; ?>
|
||||
src="<?php echo htmlspecialchars($images->image_fulltext); ?>" alt="<?php echo htmlspecialchars($images->image_fulltext_alt); ?>"/>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
<?php
|
||||
if (!empty($this->item->pagination) AND $this->item->pagination AND !$this->item->paginationposition AND !$this->item->paginationrelative):
|
||||
echo $this->item->pagination;
|
||||
endif;
|
||||
?>
|
||||
<?php echo $this->item->text; ?>
|
||||
|
||||
<?php // TAGS ?>
|
||||
<?php if ($params->get('show_tags', 1) && !empty($this->item->tags)) : ?>
|
||||
<?php $this->item->tagLayout = new JLayoutFile('joomla.content.tags'); ?>
|
||||
<?php echo $this->item->tagLayout->render($this->item->tags->itemTags); ?>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php
|
||||
if (!empty($this->item->pagination) AND $this->item->pagination AND $this->item->paginationposition AND!$this->item->paginationrelative):
|
||||
echo $this->item->pagination;?>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php if (isset($urls) AND ((!empty($urls->urls_position) AND ($urls->urls_position == '1')) OR ( $params->get('urls_position') == '1'))) : ?>
|
||||
|
||||
<?php echo $this->loadTemplate('links'); ?>
|
||||
<?php endif; ?>
|
||||
<?php
|
||||
if (!empty($this->item->pagination) AND $this->item->pagination AND $this->item->paginationposition AND $this->item->paginationrelative):
|
||||
echo $this->item->pagination;?>
|
||||
<?php endif; ?>
|
||||
<?php echo $this->item->event->afterDisplayContent; ?>
|
||||
</article>
|
||||
|
||||
|
||||
79
templates/beez3/html/com_content/article/default_links.php
Normal file
@ -0,0 +1,79 @@
|
||||
<?php
|
||||
/**
|
||||
* @package Joomla.Site
|
||||
* @subpackage Templates.beez3
|
||||
*
|
||||
* @copyright Copyright (C) 2005 - 2013 Open Source Matters, Inc. All rights reserved.
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
// Create shortcut
|
||||
$urls = json_decode($this->item->urls);
|
||||
|
||||
// Create shortcuts to some parameters.
|
||||
$params = $this->item->params;
|
||||
if ($urls && (!empty($urls->urla) || !empty($urls->urlb) || !empty($urls->urlc))) :
|
||||
?>
|
||||
<div class="content-links">
|
||||
<ul class="nav nav-tabs nav-stacked">
|
||||
<?php
|
||||
$urlarray = array(
|
||||
array($urls->urla, $urls->urlatext, $urls->targeta, 'a'),
|
||||
array($urls->urlb, $urls->urlbtext, $urls->targetb, 'b'),
|
||||
array($urls->urlc, $urls->urlctext, $urls->targetc, 'c')
|
||||
);
|
||||
foreach ($urlarray as $url) :
|
||||
$link = $url[0];
|
||||
$label = $url[1];
|
||||
$target = $url[2];
|
||||
$id = $url[3];
|
||||
|
||||
if ( ! $link) :
|
||||
continue;
|
||||
endif;
|
||||
|
||||
// If no label is present, take the link
|
||||
$label = ($label) ? $label : $link;
|
||||
|
||||
// If no target is present, use the default
|
||||
$target = $target ? $target : $params->get('target'.$id);
|
||||
?>
|
||||
<li class="content-links-<?php echo $id; ?>">
|
||||
<?php
|
||||
// Compute the correct link
|
||||
|
||||
switch ($target)
|
||||
{
|
||||
case 1:
|
||||
// open in a new window
|
||||
echo '<a href="'. htmlspecialchars($link) .'" target="_blank" rel="nofollow">'.
|
||||
htmlspecialchars($label) .'</a>';
|
||||
break;
|
||||
|
||||
case 2:
|
||||
// open in a popup window
|
||||
$attribs = 'toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=600,height=600';
|
||||
echo "<a href=\"" . htmlspecialchars($link) . "\" onclick=\"window.open(this.href, 'targetWindow', '".$attribs."'); return false;\">".
|
||||
htmlspecialchars($label).'</a>';
|
||||
break;
|
||||
case 3:
|
||||
// open in a modal window
|
||||
JHtml::_('behavior.modal', 'a.modal');
|
||||
echo '<a class="modal" href="'.htmlspecialchars($link).'" rel="{handler: \'iframe\', size: {x:600, y:600}}">'.
|
||||
htmlspecialchars($label) . ' </a>';
|
||||
break;
|
||||
|
||||
default:
|
||||
// open in parent window
|
||||
echo '<a href="'. htmlspecialchars($link) . '" rel="nofollow">'.
|
||||
htmlspecialchars($label) . ' </a>';
|
||||
break;
|
||||
}
|
||||
?>
|
||||
</li>
|
||||
<?php endforeach; ?>
|
||||
</ul>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
1
templates/beez3/html/com_content/article/index.html
Normal file
@ -0,0 +1 @@
|
||||
<!DOCTYPE html><title></title>
|
||||
40
templates/beez3/html/com_content/categories/default.php
Normal file
@ -0,0 +1,40 @@
|
||||
<?php
|
||||
/**
|
||||
* @package Joomla.Site
|
||||
* @subpackage Template.beez5
|
||||
*
|
||||
* @copyright Copyright (C) 2005 - 2013 Open Source Matters, Inc. All rights reserved.
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
$app = JFactory::getApplication();
|
||||
JHtml::addIncludePath(JPATH_COMPONENT.'/helpers');
|
||||
|
||||
JHtml::_('behavior.caption');
|
||||
?>
|
||||
<div class="categories-list<?php echo $this->pageclass_sfx;?>">
|
||||
<?php if ($this->params->get('show_page_heading')) : ?>
|
||||
<h1>
|
||||
<?php echo $this->escape($this->params->get('page_heading')); ?>
|
||||
</h1>
|
||||
<?php endif; ?>
|
||||
<?php if ($this->params->get('show_base_description')) : ?>
|
||||
<?php //If there is a description in the menu parameters use that; ?>
|
||||
<?php if ($this->params->get('categories_description')) : ?>
|
||||
<?php echo JHtml::_('content.prepare', $this->params->get('categories_description'), '', 'com_content.categories'); ?>
|
||||
<?php else: ?>
|
||||
<?php //Otherwise get one from the database if it exists. ?>
|
||||
<?php if ($this->parent->description) : ?>
|
||||
<div class="category-desc">
|
||||
<?php echo JHtml::_('content.prepare', $this->parent->description, '', 'com_content.categories'); ?>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
<?php endif; ?>
|
||||
<?php endif; ?>
|
||||
<?php
|
||||
echo $this->loadTemplate('items');
|
||||
?>
|
||||
</div>
|
||||
|
||||
@ -0,0 +1,57 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @package Joomla.Site
|
||||
* @subpackage com_content
|
||||
* @copyright Copyright (C) 2005 - 2010 Open Source Matters, Inc. All rights reserved.
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
// no direct access
|
||||
defined('_JEXEC') or die;
|
||||
$class = ' class="first"';
|
||||
if (count($this->items[$this->parent->id]) > 0 && $this->maxLevelcat != 0) :
|
||||
?>
|
||||
<ul>
|
||||
<?php foreach ($this->items[$this->parent->id] as $id => $item) : ?>
|
||||
<?php
|
||||
if ($this->params->get('show_empty_categories_cat') || $item->numitems || count($item->getChildren())) :
|
||||
if (!isset($this->items[$this->parent->id][$id + 1]))
|
||||
{
|
||||
$class = ' class="last"';
|
||||
}
|
||||
?>
|
||||
<li<?php echo $class; ?>>
|
||||
<?php $class = ''; ?>
|
||||
<h3 class="item-title"><a href="<?php echo JRoute::_(ContentHelperRoute::getCategoryRoute($item->id));?>">
|
||||
<?php echo $this->escape($item->title); ?></a>
|
||||
</h3>
|
||||
|
||||
<?php if ($this->params->get('show_subcat_desc_cat') == 1) :?>
|
||||
<?php if ($item->description) : ?>
|
||||
<div class="category-desc">
|
||||
<?php echo JHtml::_('content.prepare', $item->description); ?>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
<?php endif; ?>
|
||||
<?php if ($this->params->get('show_cat_num_articles_cat') == 1) :?>
|
||||
<dl class="article-count"><dt>
|
||||
<?php echo JText::_('COM_CONTENT_NUM_ITEMS'); ?></dt>
|
||||
<dd><?php echo $item->numitems; ?></dd>
|
||||
</dl>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php if (count($item->getChildren()) > 0) :
|
||||
$this->items[$item->id] = $item->getChildren();
|
||||
$this->parent = $item;
|
||||
$this->maxLevelcat--;
|
||||
echo $this->loadTemplate('items');
|
||||
$this->parent = $item->getParent();
|
||||
$this->maxLevelcat++;
|
||||
endif; ?>
|
||||
|
||||
</li>
|
||||
<?php endif; ?>
|
||||
<?php endforeach; ?>
|
||||
</ul>
|
||||
<?php endif; ?>
|
||||
1
templates/beez3/html/com_content/categories/index.html
Normal file
@ -0,0 +1 @@
|
||||
<!DOCTYPE html><title></title>
|
||||
131
templates/beez3/html/com_content/category/blog.php
Normal file
@ -0,0 +1,131 @@
|
||||
<?php
|
||||
/**
|
||||
* @package Joomla.Site
|
||||
* @subpackage Templates.beez3
|
||||
*
|
||||
* @copyright Copyright (C) 2005 - 2013 Open Source Matters, Inc. All rights reserved.
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
$app = JFactory::getApplication();
|
||||
$templateparams = $app->getTemplate(true)->params;
|
||||
|
||||
JHtml::addIncludePath(JPATH_COMPONENT . '/helpers');
|
||||
JHtml::_('behavior.caption');
|
||||
|
||||
$cparams = JComponentHelper::getParams('com_media');
|
||||
|
||||
// If the page class is defined, add to class as suffix.
|
||||
// It will be a separate class if the user starts it with a space
|
||||
?>
|
||||
<section class="blog<?php echo $this->pageclass_sfx;?>">
|
||||
<?php if ($this->params->get('show_page_heading') != 0 or $this->params->get('show_category_title')) : ?>
|
||||
<h1>
|
||||
<?php echo $this->escape($this->params->get('page_heading')); ?>
|
||||
<?php if ($this->params->get('show_category_title'))
|
||||
{
|
||||
|
||||
echo '<span class="subheading-category">'.$this->category->title.'</span>';
|
||||
}
|
||||
?>
|
||||
</h1>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php if ($this->params->get('show_description', 1) || $this->params->def('show_description_image', 1)) : ?>
|
||||
<div class="category-desc">
|
||||
<?php if ($this->params->get('show_description_image') && $this->category->getParams()->get('image')) : ?>
|
||||
<img src="<?php echo $this->category->getParams()->get('image'); ?>"/>
|
||||
<?php endif; ?>
|
||||
<?php if ($this->params->get('show_description') && $this->category->description) : ?>
|
||||
<?php echo JHtml::_('content.prepare', $this->category->description, '', 'com_content.category'); ?>
|
||||
<?php endif; ?>
|
||||
<div class="clr"></div>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
|
||||
|
||||
|
||||
<?php $leadingcount = 0; ?>
|
||||
<?php if (!empty($this->lead_items)) : ?>
|
||||
<div class="items-leading">
|
||||
<?php foreach ($this->lead_items as &$item) : ?>
|
||||
<article class="leading-<?php echo $leadingcount; ?><?php echo $item->state == 0 ? 'system-unpublished' : null; ?>">
|
||||
<?php
|
||||
$this->item = &$item;
|
||||
echo $this->loadTemplate('item');
|
||||
?>
|
||||
</article>
|
||||
<?php
|
||||
$leadingcount++;
|
||||
?>
|
||||
<?php endforeach; ?>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
<?php
|
||||
$introcount = (count($this->intro_items));
|
||||
$counter = 0;
|
||||
?>
|
||||
<?php if (!empty($this->intro_items)) : ?>
|
||||
|
||||
<?php foreach ($this->intro_items as $key => &$item) : ?>
|
||||
<?php
|
||||
$key = ($key - $leadingcount) + 1;
|
||||
$rowcount = (((int) $key - 1) % (int) $this->columns) + 1;
|
||||
$row = $counter / $this->columns;
|
||||
|
||||
if ($rowcount == 1) : ?>
|
||||
<div class="items-row cols-<?php echo (int) $this->columns;?> <?php echo 'row-'.$row; ?>">
|
||||
<?php endif; ?>
|
||||
<article class="item column-<?php echo $rowcount;?><?php echo $item->state == 0 ? ' system-unpublished' : null; ?>">
|
||||
<?php
|
||||
$this->item = &$item;
|
||||
echo $this->loadTemplate('item');
|
||||
?>
|
||||
</article>
|
||||
<?php $counter++; ?>
|
||||
<?php if (($rowcount == $this->columns) or ($counter == $introcount)) : ?>
|
||||
<span class="row-separator"></span>
|
||||
</div>
|
||||
|
||||
<?php endif; ?>
|
||||
<?php endforeach; ?>
|
||||
|
||||
|
||||
<?php endif; ?>
|
||||
|
||||
<?php if (!empty($this->link_items)) : ?>
|
||||
|
||||
<?php echo $this->loadTemplate('links'); ?>
|
||||
|
||||
<?php endif; ?>
|
||||
|
||||
<div class="cat-children">
|
||||
<?php if (is_array($this->children[$this->category->id]) && count($this->children[$this->category->id]) > 0 && $this->params->get('maxLevel') != 0) : ?>
|
||||
|
||||
<?php if ($this->params->get('show_category_heading_title_text', 1) == 1) : ?>
|
||||
<h3>
|
||||
<?php echo JTEXT::_('JGLOBAL_SUBCATEGORIES'); ?>
|
||||
</h3>
|
||||
<?php endif; ?>
|
||||
<?php endif; ?>
|
||||
<?php echo $this->loadTemplate('children'); ?>
|
||||
</div>
|
||||
|
||||
|
||||
<?php if (($this->params->def('show_pagination', 1) == 1 || ($this->params->get('show_pagination') == 2)) && ($this->pagination->pagesTotal > 1)) : ?>
|
||||
<div class="pagination">
|
||||
<?php if ($this->params->def('show_pagination_results', 1)) : ?>
|
||||
<p class="counter">
|
||||
<?php echo $this->pagination->getPagesCounter(); ?>
|
||||
</p>
|
||||
|
||||
<?php endif; ?>
|
||||
<?php echo $this->pagination->getPagesLinks(); ?>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
|
||||
</section>
|
||||
|
||||
|
||||
67
templates/beez3/html/com_content/category/blog_children.php
Normal file
@ -0,0 +1,67 @@
|
||||
<?php
|
||||
/**
|
||||
* @package Joomla.Site
|
||||
* @subpackage Templates.beez3
|
||||
*
|
||||
* @copyright Copyright (C) 2005 - 2013 Open Source Matters, Inc. All rights reserved.
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
$app = JFactory::getApplication();
|
||||
$templateparams = $app->getTemplate(true)->params;
|
||||
|
||||
$class = ' class="first"';
|
||||
?>
|
||||
|
||||
|
||||
<?php if (count($this->children[$this->category->id]) > 0) : ?>
|
||||
<ul>
|
||||
<?php foreach ($this->children[$this->category->id] as $id => $child) : ?>
|
||||
<?php
|
||||
if ($this->params->get('show_empty_categories') || $child->numitems || count($child->getChildren())) :
|
||||
if (!isset($this->children[$this->category->id][$id + 1])) :
|
||||
$class = ' class="last"';
|
||||
endif;
|
||||
?>
|
||||
<li<?php echo $class; ?>>
|
||||
<?php $class = ''; ?>
|
||||
<span class="item-title"><a href="<?php echo JRoute::_(ContentHelperRoute::getCategoryRoute($child->id));?>">
|
||||
<?php echo $this->escape($child->title); ?></a>
|
||||
</span>
|
||||
|
||||
<?php if ($this->params->get('show_subcat_desc') == 1) :?>
|
||||
<?php if ($child->description) : ?>
|
||||
<div class="category-desc">
|
||||
<?php echo JHtml::_('content.prepare', $child->description, '', 'com_content.category'); ?>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php if ( $this->params->get('show_cat_num_articles', 1)) : ?>
|
||||
<dl>
|
||||
<dt>
|
||||
<?php echo JText::_('COM_CONTENT_NUM_ITEMS'); ?>
|
||||
</dt>
|
||||
<dd>
|
||||
<?php echo $child->getNumItems(true); ?>
|
||||
</dd>
|
||||
</dl>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php if (count($child->getChildren()) > 0):
|
||||
$this->children[$child->id] = $child->getChildren();
|
||||
$this->category = $child;
|
||||
$this->maxLevel--;
|
||||
if ($this->maxLevel != 0) :
|
||||
echo $this->loadTemplate('children');
|
||||
endif;
|
||||
$this->category = $child->getParent();
|
||||
$this->maxLevel++;
|
||||
endif; ?>
|
||||
</li>
|
||||
<?php endif; ?>
|
||||
<?php endforeach; ?>
|
||||
</ul>
|
||||
<?php endif; ?>
|
||||
174
templates/beez3/html/com_content/category/blog_item.php
Normal file
@ -0,0 +1,174 @@
|
||||
<?php
|
||||
/**
|
||||
* @package Joomla.Site
|
||||
* @subpackage Templates.beez3
|
||||
*
|
||||
* @copyright Copyright (C) 2005 - 2013 Open Source Matters, Inc. All rights reserved.
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
$params =& $this->item->params;
|
||||
$images = json_decode($this->item->images);
|
||||
$app = JFactory::getApplication();
|
||||
$canEdit = $this->item->params->get('access-edit');
|
||||
|
||||
JHtml::addIncludePath(JPATH_COMPONENT . '/helpers');
|
||||
?>
|
||||
|
||||
|
||||
<?php if ($this->item->state == 0) : ?>
|
||||
<div class="system-unpublished">
|
||||
<?php endif; ?>
|
||||
<?php if ($params->get('show_title')) : ?>
|
||||
<h2>
|
||||
<?php if ($params->get('link_titles') && $params->get('access-view')) : ?>
|
||||
<a href="<?php echo JRoute::_(ContentHelperRoute::getArticleRoute($this->item->slug, $this->item->catid)); ?>">
|
||||
<?php echo $this->escape($this->item->title); ?></a>
|
||||
<?php else : ?>
|
||||
<?php echo $this->escape($this->item->title); ?>
|
||||
<?php endif; ?>
|
||||
</h2>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php if ($params->get('show_print_icon') || $params->get('show_email_icon') || $canEdit) : ?>
|
||||
<ul class="actions">
|
||||
<?php if ($params->get('show_print_icon')) : ?>
|
||||
<li class="print-icon">
|
||||
<?php echo JHtml::_('icon.print_popup', $this->item, $params, array(), true); ?>
|
||||
</li>
|
||||
<?php endif; ?>
|
||||
<?php if ($params->get('show_email_icon')) : ?>
|
||||
<li class="email-icon">
|
||||
<?php echo JHtml::_('icon.email', $this->item, $params, array(), true); ?>
|
||||
</li>
|
||||
<?php endif; ?>
|
||||
<?php if ($canEdit) : ?>
|
||||
<li class="edit-icon">
|
||||
<?php echo JHtml::_('icon.edit', $this->item, $params, array(), true); ?>
|
||||
</li>
|
||||
<?php endif; ?>
|
||||
</ul>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php if (!$params->get('show_intro')) : ?>
|
||||
<?php echo $this->item->event->afterDisplayTitle; ?>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php echo $this->item->event->beforeDisplayContent; ?>
|
||||
|
||||
<?php // to do not that elegant would be nice to group the params ?>
|
||||
|
||||
<?php if (($params->get('show_author')) or ($params->get('show_category')) or ($params->get('show_create_date')) or ($params->get('show_modify_date')) or ($params->get('show_publish_date')) or ($params->get('show_parent_category')) or ($params->get('show_hits'))) : ?>
|
||||
<dl class="article-info">
|
||||
<dt class="article-info-term"><?php echo JText::_('COM_CONTENT_ARTICLE_INFO'); ?></dt>
|
||||
<?php endif; ?>
|
||||
<?php if ($params->get('show_parent_category') && $this->item->parent_id != 1) : ?>
|
||||
<dd class="parent-category-name">
|
||||
<?php $title = $this->escape($this->item->parent_title);
|
||||
$url = '<a href="' . JRoute::_(ContentHelperRoute::getCategoryRoute($this->item->parent_id)) . '">' . $title . '</a>'; ?>
|
||||
<?php if ($params->get('link_parent_category')) : ?>
|
||||
<?php echo JText::sprintf('COM_CONTENT_PARENT', $url); ?>
|
||||
<?php else : ?>
|
||||
<?php echo JText::sprintf('COM_CONTENT_PARENT', $title); ?>
|
||||
<?php endif; ?>
|
||||
</dd>
|
||||
<?php endif; ?>
|
||||
<?php if ($params->get('show_category')) : ?>
|
||||
<dd class="category-name">
|
||||
<?php $title = $this->escape($this->item->category_title);
|
||||
$url = '<a href="' . JRoute::_(ContentHelperRoute::getCategoryRoute($this->item->catid)) . '">' . $title . '</a>'; ?>
|
||||
<?php if ($params->get('link_category')) : ?>
|
||||
<?php echo JText::sprintf('COM_CONTENT_CATEGORY', $url); ?>
|
||||
<?php else : ?>
|
||||
<?php echo JText::sprintf('COM_CONTENT_CATEGORY', $title); ?>
|
||||
<?php endif; ?>
|
||||
</dd>
|
||||
<?php endif; ?>
|
||||
<?php if ($params->get('show_create_date')) : ?>
|
||||
<dd class="create">
|
||||
<?php echo JText::sprintf('COM_CONTENT_CREATED_DATE_ON', JHtml::_('date', $this->item->created, JText::_('DATE_FORMAT_LC2'))); ?>
|
||||
</dd>
|
||||
<?php endif; ?>
|
||||
<?php if ($params->get('show_modify_date')) : ?>
|
||||
<dd class="modified">
|
||||
<?php echo JText::sprintf('COM_CONTENT_LAST_UPDATED', JHtml::_('date', $this->item->modified, JText::_('DATE_FORMAT_LC2'))); ?>
|
||||
</dd>
|
||||
<?php endif; ?>
|
||||
<?php if ($params->get('show_publish_date')) : ?>
|
||||
<dd class="published">
|
||||
<?php echo JText::sprintf('COM_CONTENT_PUBLISHED_DATE_ON', JHtml::_('date', $this->item->publish_up, JText::_('DATE_FORMAT_LC2'))); ?>
|
||||
</dd>
|
||||
<?php endif; ?>
|
||||
<?php if ($params->get('show_author') && !empty($this->item->author )) : ?>
|
||||
<dd class="createdby">
|
||||
<?php $author = $this->item->author; ?>
|
||||
<?php $author = ($this->item->created_by_alias ? $this->item->created_by_alias : $author);?>
|
||||
|
||||
<?php if (!empty($this->item->contactid ) && $params->get('link_author') == true):?>
|
||||
<?php echo JText::sprintf('COM_CONTENT_WRITTEN_BY',
|
||||
JHtml::_('link', JRoute::_('index.php?option=com_contact&view=contact&id=' . $this->item->contactid), $author)
|
||||
); ?>
|
||||
|
||||
<?php else :?>
|
||||
<?php echo JText::sprintf('COM_CONTENT_WRITTEN_BY', $author); ?>
|
||||
<?php endif; ?>
|
||||
</dd>
|
||||
<?php endif; ?>
|
||||
<?php if ($params->get('show_hits')) : ?>
|
||||
<dd class="hits">
|
||||
<?php echo JText::sprintf('COM_CONTENT_ARTICLE_HITS', $this->item->hits); ?>
|
||||
</dd>
|
||||
<?php endif; ?>
|
||||
<?php if (($params->get('show_author')) or ($params->get('show_category')) or ($params->get('show_create_date')) or ($params->get('show_modify_date')) or ($params->get('show_publish_date')) or ($params->get('show_parent_category')) or ($params->get('show_hits'))) :?>
|
||||
</dl>
|
||||
<?php endif; ?>
|
||||
<?php if (isset($images->image_intro) and !empty($images->image_intro)) : ?>
|
||||
<?php $imgfloat = (empty($images->float_intro)) ? $params->get('float_intro') : $images->float_intro; ?>
|
||||
<div class="img-intro-<?php echo htmlspecialchars($imgfloat); ?>">
|
||||
<img
|
||||
<?php if ($images->image_intro_caption):
|
||||
echo 'class="caption"'.' title="' .htmlspecialchars($images->image_intro_caption) .'"';
|
||||
endif; ?>
|
||||
src="<?php echo htmlspecialchars($images->image_intro); ?>" alt="<?php echo htmlspecialchars($images->image_intro_alt); ?>"/>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
<?php echo $this->item->introtext; ?>
|
||||
|
||||
<?php if ($params->get('show_readmore') && $this->item->readmore) :
|
||||
if ($params->get('access-view')) :
|
||||
$link = JRoute::_(ContentHelperRoute::getArticleRoute($this->item->slug, $this->item->catid));
|
||||
else :
|
||||
$menu = JFactory::getApplication()->getMenu();
|
||||
$active = $menu->getActive();
|
||||
$itemId = $active->id;
|
||||
$link1 = JRoute::_('index.php?option=com_users&view=login&Itemid=' . $itemId);
|
||||
$returnURL = JRoute::_(ContentHelperRoute::getArticleRoute($this->item->slug));
|
||||
$link = new JUri($link1);
|
||||
$link->setVar('return', base64_encode($returnURL));
|
||||
endif;
|
||||
?>
|
||||
<p class="readmore">
|
||||
<a href="<?php echo $link; ?>">
|
||||
<?php if (!$params->get('access-view')) :
|
||||
echo JText::_('COM_CONTENT_REGISTER_TO_READ_MORE');
|
||||
elseif ($readmore = $this->item->alternative_readmore) :
|
||||
echo $readmore;
|
||||
if ($params->get('show_readmore_title', 0) != 0) :
|
||||
echo JHtml::_('string.truncate', ($this->item->title), $params->get('readmore_limit'));
|
||||
endif;
|
||||
elseif ($params->get('show_readmore_title', 0) == 0) :
|
||||
echo JText::sprintf('COM_CONTENT_READ_MORE_TITLE');
|
||||
else :
|
||||
echo JText::_('COM_CONTENT_READ_MORE');
|
||||
echo JHtml::_('string.truncate', ($this->item->title), $params->get('readmore_limit'));
|
||||
endif; ?></a>
|
||||
</p>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php if ($this->item->state == 0) : ?>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
|
||||
<div class="item-separator"></div>
|
||||
<?php echo $this->item->event->afterDisplayContent; ?>
|
||||
35
templates/beez3/html/com_content/category/blog_links.php
Normal file
@ -0,0 +1,35 @@
|
||||
<?php
|
||||
/**
|
||||
* @package Joomla.Site
|
||||
* @subpackage Templates.beez3
|
||||
*
|
||||
* @copyright Copyright (C) 2005 - 2013 Open Source Matters, Inc. All rights reserved.
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
$params =& $this->item->params;
|
||||
$app = JFactory::getApplication();
|
||||
|
||||
JHtml::addIncludePath(JPATH_COMPONENT . '/helpers');
|
||||
|
||||
?>
|
||||
|
||||
<div class="items-more">
|
||||
<h3><?php echo JText::_('COM_CONTENT_MORE_ARTICLES'); ?></h3>
|
||||
|
||||
<ol>
|
||||
|
||||
<?php
|
||||
foreach ($this->link_items as &$item) :
|
||||
?>
|
||||
<li>
|
||||
<a href="<?php echo JRoute::_(ContentHelperRoute::getArticleRoute($item->slug, $item->catid)); ?>">
|
||||
<?php echo $item->title; ?></a>
|
||||
</li>
|
||||
<?php endforeach; ?>
|
||||
</ol>
|
||||
</div>
|
||||
|
||||
|
||||
91
templates/beez3/html/com_content/category/default.php
Normal file
@ -0,0 +1,91 @@
|
||||
<?php
|
||||
/**
|
||||
* @package Joomla.Site
|
||||
* @subpackage Templates.beez3
|
||||
*
|
||||
* @copyright Copyright (C) 2005 - 2013 Open Source Matters, Inc. All rights reserved.
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
$app = JFactory::getApplication();
|
||||
$templateparams = $app->getTemplate(true)->params;
|
||||
|
||||
|
||||
JHtml::addIncludePath(JPATH_COMPONENT . '/helpers');
|
||||
JHtml::_('behavior.caption');
|
||||
|
||||
$pageClass = $this->params->get('pageclass_sfx');
|
||||
?>
|
||||
<section class="category-list<?php echo $this->pageclass_sfx;?>">
|
||||
<?php if ($this->params->get('show_page_heading')) : ?>
|
||||
<?php if ($this->params->get('show_page_heading') and ($this->params->get('show_category_title') or $this->params->get('page_subheading'))) : ?>
|
||||
<hgroup>
|
||||
<?php endif; ?>
|
||||
<h1>
|
||||
<?php echo $this->escape($this->params->get('page_heading')); ?>
|
||||
</h1>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php if ($this->params->get('show_category_title') or $this->params->get('page_subheading')) : ?>
|
||||
<h2>
|
||||
<?php echo $this->escape($this->params->get('page_subheading')); ?>
|
||||
<?php if ($this->params->get('show_category_title'))
|
||||
{
|
||||
|
||||
echo '<span class="subheading-category">'.$this->category->title.'</span>';
|
||||
}
|
||||
?>
|
||||
</h2>
|
||||
<?php if ($this->params->get('show_page_heading') and ($this->params->get('show_category_title', 1) or $this->params->get('page_subheading'))) : ?>
|
||||
</hgroup>
|
||||
<?php endif; ?>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php if ($this->params->get('show_description', 1) || $this->params->def('show_description_image', 1)) : ?>
|
||||
<div class="category-desc">
|
||||
<?php if ($this->params->get('show_description_image') && $this->category->getParams()->get('image')) : ?>
|
||||
<img src="<?php echo $this->category->getParams()->get('image'); ?>"/>
|
||||
<?php endif; ?>
|
||||
<?php if ($this->params->get('show_description') && $this->category->description) : ?>
|
||||
<?php echo JHtml::_('content.prepare', $this->category->description, '', 'com_content.category'); ?>
|
||||
<?php endif; ?>
|
||||
<div class="clr"></div>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
|
||||
|
||||
<?php if (is_array($this->children[$this->category->id]) && count($this->children[$this->category->id]) > 0 && $this->params->get('maxLevel') != 0) : ?>
|
||||
<div class="cat-children">
|
||||
|
||||
<?php if ($this->params->get('show_category_title') or $this->params->get('page_subheading'))
|
||||
{
|
||||
echo '<h3>';
|
||||
}
|
||||
elseif ($this->params->get('show_category_heading_title_text', 1) == 1)
|
||||
{
|
||||
echo '<h2>';
|
||||
} ?>
|
||||
<?php if ($this->params->get('show_category_heading_title_text', 1) == 1) : ?>
|
||||
<?php echo JTEXT::_('JGLOBAL_SUBCATEGORIES'); ?>
|
||||
<?php endif; ?>
|
||||
<?php if ($this->params->get('show_category_title') or $this->params->get('page_subheading'))
|
||||
{
|
||||
echo '</h3>';
|
||||
}
|
||||
elseif ($this->params->get('show_category_heading_title_text', 1) == 1)
|
||||
{
|
||||
echo '</h2>';
|
||||
} ?>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
<?php echo $this->loadTemplate('children'); ?>
|
||||
|
||||
|
||||
<div class="cat-items">
|
||||
<?php echo $this->loadTemplate('articles'); ?>
|
||||
</div>
|
||||
|
||||
</section>
|
||||
|
||||
192
templates/beez3/html/com_content/category/default_articles.php
Normal file
@ -0,0 +1,192 @@
|
||||
<?php
|
||||
/**
|
||||
* @package Joomla.Site
|
||||
* @subpackage Templates.beez3
|
||||
*
|
||||
* @copyright Copyright (C) 2005 - 2013 Open Source Matters, Inc. All rights reserved.
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
$app = JFactory::getApplication();
|
||||
|
||||
|
||||
JHtml::addIncludePath(JPATH_COMPONENT.'/helpers/html');
|
||||
JHtml::_('behavior.framework');
|
||||
|
||||
$n = count($this->items);
|
||||
$listOrder = $this->escape($this->state->get('list.ordering'));
|
||||
$listDirn = $this->escape($this->state->get('list.direction'));
|
||||
?>
|
||||
|
||||
<?php if (empty($this->items)) : ?>
|
||||
|
||||
<?php if ($this->params->get('show_no_articles', 1)) : ?>
|
||||
<p><?php echo JText::_('COM_CONTENT_NO_ARTICLES'); ?></p>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php else : ?>
|
||||
|
||||
<form action="<?php echo htmlspecialchars(JUri::getInstance()->toString()); ?>" method="post" name="adminForm" id="adminForm">
|
||||
<?php if ($this->params->get('filter_field') != 'hide') : ?>
|
||||
<fieldset class="filters">
|
||||
<legend class="hidelabeltxt">
|
||||
<?php echo JText::_('JGLOBAL_FILTER_LABEL'); ?>
|
||||
</legend>
|
||||
|
||||
<div class="filter-search">
|
||||
<label class="filter-search-lbl" for="filter-search"><?php echo JText::_('COM_CONTENT_'.$this->params->get('filter_field').'_FILTER_LABEL').' '; ?></label>
|
||||
<input type="text" name="filter-search" id="filter-search" value="<?php echo $this->escape($this->state->get('list.filter')); ?>" class="inputbox" onchange="document.adminForm.submit();" title="<?php echo JText::_('COM_CONTENT_FILTER_SEARCH_DESC'); ?>" />
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php if ($this->params->get('show_pagination_limit')) : ?>
|
||||
<div class="display-limit">
|
||||
<?php echo JText::_('JGLOBAL_DISPLAY_NUM'); ?> 
|
||||
<?php echo $this->pagination->getLimitBox(); ?>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php if ($this->params->get('filter_field') != 'hide') :?>
|
||||
</fieldset>
|
||||
<?php endif; ?>
|
||||
|
||||
<div class="clr"></div>
|
||||
|
||||
<table class="category">
|
||||
<?php if ($this->params->get('show_headings')) :?>
|
||||
<thead>
|
||||
<tr>
|
||||
|
||||
<th class="list-title" id="tableOrdering">
|
||||
<?php echo JHtml::_('grid.sort', 'COM_CONTENT_HEADING_TITLE', 'a.title', $listDirn, $listOrder); ?>
|
||||
</th>
|
||||
|
||||
<?php if ($date = $this->params->get('list_show_date')) : ?>
|
||||
<th class="list-date" id="tableOrdering2">
|
||||
<?php if ($date == "created") : ?>
|
||||
<?php echo JHtml::_('grid.sort', 'COM_CONTENT_'.$date.'_DATE', 'a.created', $listDirn, $listOrder); ?>
|
||||
<?php elseif ($date == "modified") : ?>
|
||||
<?php echo JHtml::_('grid.sort', 'COM_CONTENT_'.$date.'_DATE', 'a.modified', $listDirn, $listOrder); ?>
|
||||
<?php elseif ($date == "published") : ?>
|
||||
<?php echo JHtml::_('grid.sort', 'COM_CONTENT_'.$date.'_DATE', 'a.publish_up', $listDirn, $listOrder); ?>
|
||||
<?php endif; ?>
|
||||
</th>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php if ($this->params->get('list_show_author', 1)) : ?>
|
||||
<th class="list-author" id="tableOrdering3">
|
||||
<?php echo JHtml::_('grid.sort', 'JAUTHOR', 'author', $listDirn, $listOrder); ?>
|
||||
</th>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php if ($this->params->get('list_show_hits', 1)) : ?>
|
||||
<th class="list-hits" id="tableOrdering4">
|
||||
<?php echo JHtml::_('grid.sort', 'JGLOBAL_HITS', 'a.hits', $listDirn, $listOrder); ?>
|
||||
</th>
|
||||
<?php endif; ?>
|
||||
</tr>
|
||||
</thead>
|
||||
<?php endif; ?>
|
||||
|
||||
<tbody>
|
||||
|
||||
<?php foreach ($this->items as $i => &$article) : ?>
|
||||
<tr class="cat-list-row<?php echo $i % 2; ?>">
|
||||
|
||||
<?php if (in_array($article->access, $this->user->getAuthorisedViewLevels())) : ?>
|
||||
|
||||
<td class="list-title">
|
||||
<a href="<?php echo JRoute::_(ContentHelperRoute::getArticleRoute($article->slug, $article->catid)); ?>">
|
||||
<?php echo $this->escape($article->title); ?></a>
|
||||
</td>
|
||||
|
||||
<?php if ($this->params->get('list_show_date')) : ?>
|
||||
<td class="list-date">
|
||||
<?php
|
||||
echo JHtml::_(
|
||||
'date', $article->displayDate, $this->escape(
|
||||
$this->params->get('date_format', JText::_('DATE_FORMAT_LC3'))
|
||||
)
|
||||
); ?>
|
||||
</td>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php if ($this->params->get('list_show_author', 1)) : ?>
|
||||
<td class="list-author">
|
||||
<?php if (!empty($article->author) || !empty($article->created_by_alias)) : ?>
|
||||
<?php $author = $article->author ?>
|
||||
<?php $author = ($article->created_by_alias ? $article->created_by_alias : $author);?>
|
||||
|
||||
<?php if (!empty($article->contactid ) && $this->params->get('link_author') == true):?>
|
||||
<?php echo JHtml::_(
|
||||
'link',
|
||||
JRoute::_('index.php?option=com_contact&view=contact&id='.$article->contactid),
|
||||
$author
|
||||
); ?>
|
||||
|
||||
<?php else :?>
|
||||
<?php echo JText::sprintf('COM_CONTENT_WRITTEN_BY', $author); ?>
|
||||
<?php endif; ?>
|
||||
<?php endif; ?>
|
||||
</td>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php if ($this->params->get('list_show_hits', 1)) : ?>
|
||||
<td class="list-hits">
|
||||
<?php echo $article->hits; ?>
|
||||
</td>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php else : ?>
|
||||
<td>
|
||||
<?php
|
||||
echo $this->escape($article->title).' : ';
|
||||
$menu = JFactory::getApplication()->getMenu();
|
||||
$active = $menu->getActive();
|
||||
$itemId = $active->id;
|
||||
$link = JRoute::_('index.php?option=com_users&view=login&Itemid='.$itemId);
|
||||
$returnURL = JRoute::_(ContentHelperRoute::getArticleRoute($article->slug));
|
||||
$fullURL = new JUri($link);
|
||||
$fullURL->setVar('return', base64_encode($returnURL));
|
||||
?>
|
||||
<a href="<?php echo $fullURL; ?>" class="register">
|
||||
<?php echo JText::_('COM_CONTENT_REGISTER_TO_READ_MORE'); ?></a>
|
||||
</td>
|
||||
<?php endif; ?>
|
||||
|
||||
</tr>
|
||||
<?php endforeach; ?>
|
||||
</tbody>
|
||||
</table>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php // Code to add a link to submit an article. ?>
|
||||
<?php if ($this->category->getParams()->get('access-create')) : ?>
|
||||
<?php echo JHtml::_('icon.create', $this->category, $this->category->params, array(), true); ?>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php // Add pagination links ?>
|
||||
<?php if (!empty($this->items)) : ?>
|
||||
<?php if (($this->params->def('show_pagination', 2) == 1 || ($this->params->get('show_pagination') == 2)) && ($this->pagination->pagesTotal > 1)) : ?>
|
||||
<div class="pagination">
|
||||
|
||||
<?php if ($this->params->def('show_pagination_results', 1)) : ?>
|
||||
<p class="counter">
|
||||
<?php echo $this->pagination->getPagesCounter(); ?>
|
||||
</p>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php echo $this->pagination->getPagesLinks(); ?>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
|
||||
<div>
|
||||
<input type="hidden" name="task" value="" />
|
||||
<input type="hidden" name="filter_order" value="" />
|
||||
<input type="hidden" name="filter_order_Dir" value="" />
|
||||
<input type="hidden" name="limitstart" value="" />
|
||||
</div>
|
||||
</form>
|
||||
<?php endif; ?>
|
||||
@ -0,0 +1,70 @@
|
||||
<?php
|
||||
/**
|
||||
* @package Joomla.Site
|
||||
* @subpackage Templates.beez3
|
||||
*
|
||||
* @copyright Copyright (C) 2005 - 2013 Open Source Matters, Inc. All rights reserved.
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
$app = JFactory::getApplication();
|
||||
$templateparams = $app->getTemplate(true)->params;
|
||||
|
||||
|
||||
|
||||
$class = ' class="first"';
|
||||
?>
|
||||
|
||||
<?php if (count($this->children[$this->category->id]) > 0) :?>
|
||||
|
||||
<ul>
|
||||
<?php foreach ($this->children[$this->category->id] as $id => $child) : ?>
|
||||
<?php
|
||||
if ($this->params->get('show_empty_categories') || $child->getNumItems(true) || count($child->getChildren())) :
|
||||
if (!isset($this->children[$this->category->id][$id + 1])) :
|
||||
$class = ' class="last"';
|
||||
endif;
|
||||
?>
|
||||
<li<?php echo $class; ?>>
|
||||
<?php $class = ''; ?>
|
||||
<h3 class="item-title"><a href="<?php echo JRoute::_(ContentHelperRoute::getCategoryRoute($child->id));?>">
|
||||
<?php echo $this->escape($child->title); ?></a>
|
||||
</h3>
|
||||
<?php if ($this->params->get('show_subcat_desc') == 1) :?>
|
||||
<?php if ($child->description and $this->params->get('show_description') != 0 ) : ?>
|
||||
<div class="category-desc">
|
||||
<?php echo JHtml::_('content.prepare', $child->description, '', 'com_content.category'); ?>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php if ($this->params->get('show_cat_num_articles', 1)) : ?>
|
||||
<?php if ($child->getNumItems() == true) : ?>
|
||||
<dl>
|
||||
<dt>
|
||||
<?php echo JText::_('COM_CONTENT_NUM_ITEMS'); ?>
|
||||
</dt>
|
||||
<dd>
|
||||
<?php echo $child->getNumItems(true); ?>
|
||||
</dd>
|
||||
</dl>
|
||||
<?php endif; ?>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php if (count($child->getChildren()) > 0 ) :
|
||||
$this->children[$child->id] = $child->getChildren();
|
||||
$this->category = $child;
|
||||
$this->maxLevel--;
|
||||
if ($this->maxLevel != 0) :
|
||||
echo $this->loadTemplate('children');
|
||||
endif;
|
||||
$this->category = $child->getParent();
|
||||
$this->maxLevel++;
|
||||
endif; ?>
|
||||
</li>
|
||||
<?php endif; ?>
|
||||
<?php endforeach; ?>
|
||||
</ul>
|
||||
<?php endif; ?>
|
||||
1
templates/beez3/html/com_content/category/index.html
Normal file
@ -0,0 +1 @@
|
||||
<!DOCTYPE html><title></title>
|
||||
89
templates/beez3/html/com_content/featured/default.php
Normal file
@ -0,0 +1,89 @@
|
||||
<?php
|
||||
/**
|
||||
* @package Joomla.Site
|
||||
* @subpackage Templates.beez3
|
||||
*
|
||||
* @copyright Copyright (C) 2005 - 2013 Open Source Matters, Inc. All rights reserved.
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
JHtml::addIncludePath(JPATH_COMPONENT . '/helpers');
|
||||
|
||||
JHtml::_('behavior.caption');
|
||||
|
||||
?>
|
||||
|
||||
<section class="blog-featured<?php echo $this->pageclass_sfx;?>">
|
||||
<?php if ( $this->params->get('show_page_heading') != 0) : ?>
|
||||
<h1>
|
||||
<?php echo $this->escape($this->params->get('page_heading')); ?>
|
||||
</h1>
|
||||
<?php endif; ?>
|
||||
<?php $leadingcount = 0; ?>
|
||||
<?php if (!empty($this->lead_items)) : ?>
|
||||
<div class="items-leading">
|
||||
<?php foreach ($this->lead_items as &$item) : ?>
|
||||
<article class="leading-<?php echo $leadingcount; ?><?php echo $item->state == 0 ? ' system-unpublished' : null; ?>">
|
||||
<?php
|
||||
$this->item = &$item;
|
||||
echo $this->loadTemplate('item');
|
||||
?>
|
||||
</article>
|
||||
<?php
|
||||
$leadingcount++;
|
||||
?>
|
||||
<?php endforeach; ?>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
<?php
|
||||
$introcount = (count($this->intro_items));
|
||||
$counter = 0;
|
||||
?>
|
||||
<?php if (!empty($this->intro_items)) : ?>
|
||||
<?php foreach ($this->intro_items as $key => &$item) : ?>
|
||||
|
||||
<?php
|
||||
$key = ($key - $leadingcount) + 1;
|
||||
$rowcount = (((int) $key - 1) % (int) $this->columns) + 1;
|
||||
$row = $counter / $this->columns;
|
||||
|
||||
if ($rowcount == 1) : ?>
|
||||
|
||||
<div class="items-row cols-<?php echo (int) $this->columns;?> <?php echo 'row-'.$row; ?>">
|
||||
<?php endif; ?>
|
||||
<article class="item column-<?php echo $rowcount;?><?php echo $item->state == 0 ? ' system-unpublished"' : null; ?>">
|
||||
<?php
|
||||
$this->item = &$item;
|
||||
echo $this->loadTemplate('item');
|
||||
?>
|
||||
</article>
|
||||
<?php $counter++; ?>
|
||||
<?php if (($rowcount == $this->columns) or ($counter == $introcount)) : ?>
|
||||
<span class="row-separator"></span>
|
||||
</div>
|
||||
|
||||
<?php endif; ?>
|
||||
<?php endforeach; ?>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php if (!empty($this->link_items)) : ?>
|
||||
<div class="items-more">
|
||||
<?php echo $this->loadTemplate('links'); ?>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php if ($this->params->def('show_pagination', 2) == 1 || ($this->params->get('show_pagination') == 2 && $this->pagination->pagesTotal > 1)) : ?>
|
||||
<div class="pagination">
|
||||
|
||||
<?php if ($this->params->def('show_pagination_results', 1)) : ?>
|
||||
<p class="counter">
|
||||
<?php echo $this->pagination->getPagesCounter(); ?>
|
||||
</p>
|
||||
<?php endif; ?>
|
||||
<?php echo $this->pagination->getPagesLinks(); ?>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
</section>
|
||||
|
||||
|
||||
180
templates/beez3/html/com_content/featured/default_item.php
Normal file
@ -0,0 +1,180 @@
|
||||
<?php
|
||||
/**
|
||||
* @package Joomla.Site
|
||||
* @subpackage Templates.beez3
|
||||
*
|
||||
* @copyright Copyright (C) 2005 - 2013 Open Source Matters, Inc. All rights reserved.
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
// Create a shortcut for params.
|
||||
$canEdit = $this->item->params->get('access-edit');
|
||||
$params = &$this->item->params;
|
||||
$images = json_decode($this->item->images);
|
||||
$app = JFactory::getApplication();
|
||||
$templateparams = $app->getTemplate(true)->params;
|
||||
|
||||
?>
|
||||
|
||||
<?php if ($this->item->state == 0) : ?>
|
||||
<div class="system-unpublished">
|
||||
<?php endif; ?>
|
||||
<?php if ($params->get('show_title')) : ?>
|
||||
<h2>
|
||||
<?php if ($params->get('link_titles') && $params->get('access-view')) : ?>
|
||||
<a href="<?php echo JRoute::_(ContentHelperRoute::getArticleRoute($this->item->slug, $this->item->catid)); ?>">
|
||||
<?php echo $this->escape($this->item->title); ?></a>
|
||||
<?php else : ?>
|
||||
<?php echo $this->escape($this->item->title); ?>
|
||||
<?php endif; ?>
|
||||
</h2>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php if ($params->get('show_print_icon') || $params->get('show_email_icon') || $canEdit) : ?>
|
||||
<ul class="actions">
|
||||
<?php if ($params->get('show_print_icon')) : ?>
|
||||
<li class="print-icon">
|
||||
<?php echo JHtml::_('icon.print_popup', $this->item, $params, array(), true); ?>
|
||||
</li>
|
||||
<?php endif; ?>
|
||||
<?php if ($params->get('show_email_icon')) : ?>
|
||||
<li class="email-icon">
|
||||
<?php echo JHtml::_('icon.email', $this->item, $params, array(), true); ?>
|
||||
</li>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php if ($canEdit) : ?>
|
||||
<li class="edit-icon">
|
||||
<?php echo JHtml::_('icon.edit', $this->item, $params, array(), true); ?>
|
||||
</li>
|
||||
<?php endif; ?>
|
||||
</ul>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php if (!$params->get('show_intro')) : ?>
|
||||
<?php echo $this->item->event->afterDisplayTitle; ?>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php echo $this->item->event->beforeDisplayContent; ?>
|
||||
|
||||
<?php // to do not that elegant would be nice to group the params ?>
|
||||
|
||||
<?php if (($params->get('show_author')) or ($params->get('show_category')) or ($params->get('show_create_date')) or ($params->get('show_modify_date')) or ($params->get('show_publish_date')) or ($params->get('show_parent_category')) or ($params->get('show_hits'))) : ?>
|
||||
<dl class="article-info">
|
||||
<dt class="article-info-term"><?php echo JText::_('COM_CONTENT_ARTICLE_INFO'); ?></dt>
|
||||
<?php endif; ?>
|
||||
<?php if ($params->get('show_parent_category') && $this->item->parent_id != 1) : ?>
|
||||
<dd class="parent-category-name">
|
||||
<?php $title = $this->escape($this->item->parent_title);
|
||||
$title = ($title) ? $title : JText::_('JGLOBAL_UNCATEGORISED');
|
||||
$url = '<a href="' . JRoute::_(ContentHelperRoute::getCategoryRoute($this->item->parent_slug)) . '">' . $title . '</a>'; ?>
|
||||
<?php if ($params->get('link_parent_category') and $this->item->parent_slug) : ?>
|
||||
<?php echo JText::sprintf('COM_CONTENT_PARENT', $url); ?>
|
||||
<?php else : ?>
|
||||
<?php echo JText::sprintf('COM_CONTENT_PARENT', $title); ?>
|
||||
<?php endif; ?>
|
||||
</dd>
|
||||
<?php endif; ?>
|
||||
<?php if ($params->get('show_category')) : ?>
|
||||
<dd class="category-name">
|
||||
<?php $title = $this->escape($this->item->category_title);
|
||||
$title = ($title) ? $title : JText::_('JGLOBAL_UNCATEGORISED');
|
||||
$url = '<a href="'.JRoute::_(ContentHelperRoute::getCategoryRoute($this->item->catslug)).'">'.$title.'</a>';?>
|
||||
<?php if ($params->get('link_category') and $this->item->catslug) : ?>
|
||||
<?php echo JText::sprintf('COM_CONTENT_CATEGORY', $url); ?>
|
||||
<?php else : ?>
|
||||
<?php echo JText::sprintf('COM_CONTENT_CATEGORY', $title); ?>
|
||||
<?php endif; ?>
|
||||
</dd>
|
||||
<?php endif; ?>
|
||||
<?php if ($params->get('show_create_date')) : ?>
|
||||
<dd class="create">
|
||||
<?php echo JText::sprintf('COM_CONTENT_CREATED_DATE_ON', JHtml::_('date', $this->item->created, JText::_('DATE_FORMAT_LC2'))); ?>
|
||||
</dd>
|
||||
<?php endif; ?>
|
||||
<?php if ($params->get('show_modify_date')) : ?>
|
||||
<dd class="modified">
|
||||
<?php echo JText::sprintf('COM_CONTENT_LAST_UPDATED', JHtml::_('date', $this->item->modified, JText::_('DATE_FORMAT_LC2'))); ?>
|
||||
</dd>
|
||||
<?php endif; ?>
|
||||
<?php if ($params->get('show_publish_date')) : ?>
|
||||
<dd class="published">
|
||||
<?php echo JText::sprintf('COM_CONTENT_PUBLISHED_DATE_ON', JHtml::_('date', $this->item->publish_up, JText::_('DATE_FORMAT_LC2'))); ?>
|
||||
</dd>
|
||||
<?php endif; ?>
|
||||
<?php if ($params->get('show_author') && !empty($this->item->author )) : ?>
|
||||
<dd class="createdby">
|
||||
<?php $author = $this->item->author; ?>
|
||||
<?php $author = ($this->item->created_by_alias ? $this->item->created_by_alias : $author);?>
|
||||
|
||||
<?php if (!empty($this->item->contactid ) && $params->get('link_author') == true):?>
|
||||
<?php echo JText::sprintf('COM_CONTENT_WRITTEN_BY',
|
||||
JHtml::_('link', JRoute::_('index.php?option=com_contact&view=contact&id=' . $this->item->contactid), $author)
|
||||
); ?>
|
||||
|
||||
<?php else :?>
|
||||
<?php echo JText::sprintf('COM_CONTENT_WRITTEN_BY', $author); ?>
|
||||
<?php endif; ?>
|
||||
</dd>
|
||||
<?php endif; ?>
|
||||
<?php if ($params->get('show_hits')) : ?>
|
||||
<dd class="hits">
|
||||
<?php echo JText::sprintf('COM_CONTENT_ARTICLE_HITS', $this->item->hits); ?>
|
||||
</dd>
|
||||
<?php endif; ?>
|
||||
<?php if (($params->get('show_author')) or ($params->get('show_category')) or ($params->get('show_create_date')) or ($params->get('show_modify_date')) or ($params->get('show_publish_date')) or ($params->get('show_parent_category')) or ($params->get('show_hits'))) : ?>
|
||||
</dl>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php if (isset($images->image_intro) and !empty($images->image_intro)) : ?>
|
||||
<?php $imgfloat = (empty($images->float_intro)) ? $params->get('float_intro') : $images->float_intro; ?>
|
||||
<div class="img-intro-<?php echo htmlspecialchars($imgfloat); ?>">
|
||||
<img
|
||||
<?php if ($images->image_intro_caption):
|
||||
echo 'class="caption"'.' title="' .htmlspecialchars($images->image_intro_caption) .'"';
|
||||
endif; ?>
|
||||
src="<?php echo htmlspecialchars($images->image_intro); ?>" alt="<?php echo htmlspecialchars($images->image_intro_alt); ?>"/>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php echo $this->item->introtext; ?>
|
||||
|
||||
<?php if ($params->get('show_readmore') && $this->item->readmore) :
|
||||
if ($params->get('access-view')) :
|
||||
$link = JRoute::_(ContentHelperRoute::getArticleRoute($this->item->slug, $this->item->catid));
|
||||
else :
|
||||
$menu = JFactory::getApplication()->getMenu();
|
||||
$active = $menu->getActive();
|
||||
$itemId = $active->id;
|
||||
$link1 = JRoute::_('index.php?option=com_users&view=login&Itemid=' . $itemId);
|
||||
$returnURL = JRoute::_(ContentHelperRoute::getArticleRoute($this->item->slug, $this->item->catid));
|
||||
$link = new JUri($link1);
|
||||
$link->setVar('return', base64_encode($returnURL));
|
||||
endif;
|
||||
?>
|
||||
<p class="readmore">
|
||||
<a href="<?php echo $link; ?>">
|
||||
<?php if (!$params->get('access-view')) :
|
||||
echo JText::_('COM_CONTENT_REGISTER_TO_READ_MORE');
|
||||
elseif ($readmore = $this->item->alternative_readmore) :
|
||||
echo $readmore;
|
||||
if ($params->get('show_readmore_title', 0) != 0) :
|
||||
echo JHtml::_('string.truncate', ($this->item->title), $params->get('readmore_limit'));
|
||||
endif;
|
||||
elseif ($params->get('show_readmore_title', 0) == 0) :
|
||||
echo JText::sprintf('COM_CONTENT_READ_MORE_TITLE');
|
||||
else :
|
||||
echo JText::_('COM_CONTENT_READ_MORE');
|
||||
echo JHtml::_('string.truncate', ($this->item->title), $params->get('readmore_limit'));
|
||||
endif; ?></a>
|
||||
</p>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php if ($this->item->state == 0) : ?>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
|
||||
<div class="item-separator"></div>
|
||||
<?php echo $this->item->event->afterDisplayContent; ?>
|
||||
24
templates/beez3/html/com_content/featured/default_links.php
Normal file
@ -0,0 +1,24 @@
|
||||
<?php
|
||||
/**
|
||||
* @package Joomla.Site
|
||||
* @subpackage Templates.beez3
|
||||
*
|
||||
* @copyright Copyright (C) 2005 - 2013 Open Source Matters, Inc. All rights reserved.
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
?>
|
||||
|
||||
<h3><?php echo JText::_('COM_CONTENT_MORE_ARTICLES'); ?></h3>
|
||||
|
||||
<ol class="links">
|
||||
<?php foreach ($this->link_items as &$item) : ?>
|
||||
<li>
|
||||
<a href="<?php echo JRoute::_(ContentHelperRoute::getArticleRoute($item->slug, $item->catslug)); ?>">
|
||||
<?php echo $item->title; ?></a>
|
||||
</li>
|
||||
<?php endforeach; ?>
|
||||
</ol>
|
||||
|
||||
1
templates/beez3/html/com_content/featured/index.html
Normal file
@ -0,0 +1 @@
|
||||
<!DOCTYPE html><title></title>
|
||||
324
templates/beez3/html/com_content/form/edit.php
Normal file
@ -0,0 +1,324 @@
|
||||
<?php
|
||||
/**
|
||||
* @package Joomla.Site
|
||||
* @subpackage Templates.beez3
|
||||
*
|
||||
* @copyright Copyright (C) 2005 - 2013 Open Source Matters, Inc. All rights reserved.
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
// no direct access
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
JHtml::_('behavior.keepalive');
|
||||
JHtml::_('behavior.calendar');
|
||||
JHtml::_('behavior.formvalidation');
|
||||
|
||||
// Create shortcut to parameters.
|
||||
$params = $this->state->get('params');
|
||||
//$images = json_decode($this->item->images);
|
||||
//$urls = json_decode($this->item->urls);
|
||||
|
||||
// This checks if the editor config options have ever been saved. If they haven't they will fall back to the original settings.
|
||||
$editoroptions = isset($params->show_publishing_options);
|
||||
if (!$editoroptions):
|
||||
$params->show_urls_images_frontend = '0';
|
||||
endif;
|
||||
?>
|
||||
|
||||
<script type="text/javascript">
|
||||
Joomla.submitbutton = function(task)
|
||||
{
|
||||
if (task == 'article.cancel' || document.formvalidator.isValid(document.id('adminForm')))
|
||||
{
|
||||
<?php echo $this->form->getField('articletext')->save(); ?>
|
||||
Joomla.submitform(task);
|
||||
}
|
||||
}
|
||||
</script>
|
||||
<div class="edit item-page<?php echo $this->pageclass_sfx; ?>">
|
||||
<?php if ($params->get('show_page_heading')) : ?>
|
||||
<h1>
|
||||
<?php echo $this->escape($params->get('page_heading')); ?>
|
||||
</h1>
|
||||
<?php endif; ?>
|
||||
|
||||
<form action="<?php echo JRoute::_('index.php?option=com_content&a_id='.(int) $this->item->id); ?>" method="post" name="adminForm" id="adminForm" class="form-validate">
|
||||
<fieldset>
|
||||
<legend><?php echo JText::_('JEDITOR'); ?></legend>
|
||||
|
||||
<div class="control-group">
|
||||
<div class="control-label">
|
||||
<?php echo $this->form->getLabel('title'); ?>
|
||||
</div>
|
||||
<div class="controls">
|
||||
<?php echo $this->form->getInput('title'); ?>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<?php if (is_null($this->item->id)):?>
|
||||
<div class="control-group">
|
||||
<div class="control-label">
|
||||
<?php echo $this->form->getLabel('alias'); ?>
|
||||
</div>
|
||||
<div class="controls">
|
||||
<?php echo $this->form->getInput('alias'); ?>
|
||||
</div>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
|
||||
<div class="btn-group">
|
||||
<button type="button" class="btn btn-primary" onclick="Joomla.submitbutton('article.save')">
|
||||
<?php echo JText::_('JSAVE') ?>
|
||||
</button>
|
||||
<button type="button" class="btn" onclick="Joomla.submitbutton('article.cancel')">
|
||||
<?php echo JText::_('JCANCEL') ?>
|
||||
</button>
|
||||
</div>
|
||||
|
||||
<?php echo $this->form->getInput('articletext'); ?>
|
||||
|
||||
</fieldset>
|
||||
<?php if ($params->get('show_urls_images_frontend') ) : ?>
|
||||
<fieldset>
|
||||
<legend><?php echo JText::_('COM_CONTENT_IMAGES_AND_URLS'); ?></legend>
|
||||
<div class="control-group">
|
||||
<div class="control-label">
|
||||
<?php echo $this->form->getLabel('image_intro', 'images'); ?>
|
||||
<?php echo $this->form->getInput('image_intro', 'images'); ?>
|
||||
</div>
|
||||
</div>
|
||||
<div class="control-group">
|
||||
<div class="control-label">
|
||||
<?php echo $this->form->getLabel('image_intro_alt', 'images'); ?>
|
||||
</div>
|
||||
<div class="controls">
|
||||
<?php echo $this->form->getInput('image_intro_alt', 'images'); ?>
|
||||
</div>
|
||||
</div>
|
||||
<div class="control-group">
|
||||
<div class="control-label">
|
||||
<?php echo $this->form->getLabel('image_intro_caption', 'images'); ?>
|
||||
</div>
|
||||
<div class="controls">
|
||||
<?php echo $this->form->getInput('image_intro_caption', 'images'); ?>
|
||||
</div>
|
||||
</div>
|
||||
<div class="control-group">
|
||||
<div class="control-label">
|
||||
<?php echo $this->form->getLabel('float_intro', 'images'); ?>
|
||||
</div>
|
||||
<div class="controls">
|
||||
<?php echo $this->form->getInput('float_intro', 'images'); ?>
|
||||
</div>
|
||||
</div>
|
||||
<div class="control-group">
|
||||
<div class="control-label">
|
||||
<?php echo $this->form->getLabel('image_fulltext', 'images'); ?>
|
||||
</div>
|
||||
<div class="controls">
|
||||
<?php echo $this->form->getInput('image_fulltext', 'images'); ?>
|
||||
</div>
|
||||
</div>
|
||||
<div class="control-group">
|
||||
<div class="control-label">
|
||||
<?php echo $this->form->getLabel('image_fulltext_alt', 'images'); ?>
|
||||
</div>
|
||||
<div class="controls">
|
||||
<?php echo $this->form->getInput('image_fulltext_alt', 'images'); ?>
|
||||
</div>
|
||||
</div>
|
||||
<div class="control-group">
|
||||
<div class="control-label">
|
||||
<?php echo $this->form->getLabel('image_fulltext_caption', 'images'); ?>
|
||||
</div>
|
||||
<div class="controls">
|
||||
<?php echo $this->form->getInput('image_fulltext_caption', 'images'); ?>
|
||||
</div>
|
||||
</div>
|
||||
<div class="control-group">
|
||||
<div class="control-label">
|
||||
<?php echo $this->form->getLabel('float_fulltext', 'images'); ?>
|
||||
</div>
|
||||
<div class="controls">
|
||||
<?php echo $this->form->getInput('float_fulltext', 'images'); ?>
|
||||
</div>
|
||||
</div>
|
||||
<div class="control-group">
|
||||
<div class="control-label">
|
||||
<?php echo $this->form->getLabel('urla', 'urls'); ?>
|
||||
</div>
|
||||
<div class="controls">
|
||||
<?php echo $this->form->getInput('urla', 'urls'); ?>
|
||||
</div>
|
||||
</div>
|
||||
<div class="control-group">
|
||||
<div class="control-label">
|
||||
<?php echo $this->form->getLabel('urlatext', 'urls'); ?>
|
||||
</div>
|
||||
<div class="controls">
|
||||
<?php echo $this->form->getInput('urlatext', 'urls'); ?>
|
||||
</div>
|
||||
</div>
|
||||
<div class="control-group">
|
||||
<div class="controls">
|
||||
<?php echo $this->form->getInput('targeta', 'urls'); ?>
|
||||
</div>
|
||||
</div>
|
||||
<div class="control-group">
|
||||
<div class="control-label">
|
||||
<?php echo $this->form->getLabel('urlb', 'urls'); ?>
|
||||
</div>
|
||||
<div class="controls">
|
||||
<?php echo $this->form->getInput('urlb', 'urls'); ?>
|
||||
</div>
|
||||
</div>
|
||||
<div class="control-group">
|
||||
<div class="control-label">
|
||||
<?php echo $this->form->getLabel('urlbtext', 'urls'); ?>
|
||||
</div>
|
||||
<div class="controls">
|
||||
<?php echo $this->form->getInput('urlbtext', 'urls'); ?>
|
||||
</div>
|
||||
</div>
|
||||
<div class="control-group">
|
||||
<div class="controls">
|
||||
<?php echo $this->form->getInput('targetb', 'urls'); ?>
|
||||
</div>
|
||||
</div>
|
||||
<div class="control-group">
|
||||
<div class="control-label">
|
||||
<?php echo $this->form->getLabel('urlc', 'urls'); ?>
|
||||
</div>
|
||||
<div class="controls">
|
||||
<?php echo $this->form->getInput('urlc', 'urls'); ?>
|
||||
</div>
|
||||
</div>
|
||||
<div class="control-group">
|
||||
<div class="control-label">
|
||||
<?php echo $this->form->getLabel('urlctext', 'urls'); ?>
|
||||
</div>
|
||||
<div class="controls">
|
||||
<?php echo $this->form->getInput('urlctext', 'urls'); ?>
|
||||
</div>
|
||||
</div>
|
||||
<div class="control-group">
|
||||
<div class="controls">
|
||||
<?php echo $this->form->getInput('targetc', 'urls'); ?>
|
||||
</div>
|
||||
</div>
|
||||
</fieldset>
|
||||
<?php endif; ?>
|
||||
|
||||
<fieldset>
|
||||
<legend><?php echo JText::_('COM_CONTENT_PUBLISHING'); ?></legend>
|
||||
<div class="control-group">
|
||||
<div class="control-label">
|
||||
<?php echo $this->form->getLabel('catid'); ?>
|
||||
</div>
|
||||
<div class="controls">
|
||||
<?php echo $this->form->getInput('catid'); ?>
|
||||
</div>
|
||||
</div>
|
||||
<div class="control-group">
|
||||
<div class="control-label">
|
||||
<?php echo $this->form->getLabel('created_by_alias'); ?>
|
||||
</div>
|
||||
<div class="controls">
|
||||
<?php echo $this->form->getInput('created_by_alias'); ?>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<?php if ($this->item->params->get('access-change')) : ?>
|
||||
<div class="control-group">
|
||||
<div class="control-label">
|
||||
<?php echo $this->form->getLabel('state'); ?>
|
||||
</div>
|
||||
<div class="controls">
|
||||
<?php echo $this->form->getInput('state'); ?>
|
||||
</div>
|
||||
</div>
|
||||
<div class="control-group">
|
||||
<div class="control-label">
|
||||
<?php echo $this->form->getLabel('featured'); ?>
|
||||
</div>
|
||||
<div class="controls">
|
||||
<?php echo $this->form->getInput('featured'); ?>
|
||||
</div>
|
||||
</div>
|
||||
<div class="control-group">
|
||||
<div class="control-label">
|
||||
<?php echo $this->form->getLabel('publish_up'); ?>
|
||||
</div>
|
||||
<div class="controls">
|
||||
<?php echo $this->form->getInput('publish_up'); ?>
|
||||
</div>
|
||||
</div>
|
||||
<div class="control-group">
|
||||
<div class="control-label">
|
||||
<?php echo $this->form->getLabel('publish_down'); ?>
|
||||
</div>
|
||||
<div class="controls">
|
||||
<?php echo $this->form->getInput('publish_down'); ?>
|
||||
</div>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
<div class="control-group">
|
||||
<div class="control-label">
|
||||
<?php echo $this->form->getLabel('access'); ?>
|
||||
</div>
|
||||
<div class="controls">
|
||||
<?php echo $this->form->getInput('access'); ?>
|
||||
</div>
|
||||
</div>
|
||||
<?php if (is_null($this->item->id)):?>
|
||||
<div class="control-group">
|
||||
<div class="control-label">
|
||||
</div>
|
||||
<div class="controls">
|
||||
<?php echo JText::_('COM_CONTENT_ORDERING'); ?>
|
||||
</div>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
</fieldset>
|
||||
|
||||
<fieldset>
|
||||
<legend><?php echo JText::_('JFIELD_LANGUAGE_LABEL'); ?></legend>
|
||||
<div class="control-group">
|
||||
<div class="control-label">
|
||||
<?php echo $this->form->getLabel('language'); ?>
|
||||
</div>
|
||||
<div class="controls">
|
||||
<?php echo $this->form->getInput('language'); ?>
|
||||
</div>
|
||||
</div>
|
||||
</fieldset>
|
||||
|
||||
<fieldset>
|
||||
<legend><?php echo JText::_('COM_CONTENT_METADATA'); ?></legend>
|
||||
<div class="control-group">
|
||||
<div class="control-label">
|
||||
<?php echo $this->form->getLabel('metadesc'); ?>
|
||||
</div>
|
||||
<div class="controls">
|
||||
<?php echo $this->form->getInput('metadesc'); ?>
|
||||
</div>
|
||||
</div>
|
||||
<div class="control-group">
|
||||
<div class="control-label">
|
||||
<?php echo $this->form->getLabel('metakey'); ?>
|
||||
</div>
|
||||
<div class="controls">
|
||||
<?php echo $this->form->getInput('metakey'); ?>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<input type="hidden" name="task" value="" />
|
||||
<input type="hidden" name="return" value="<?php echo $this->return_page;?>" />
|
||||
<?php if ($this->params->get('enable_category', 0) == 1) : ?>
|
||||
<input type="hidden" name="jform[catid]" value="<?php echo $this->params->get('catid', 1);?>"/>
|
||||
<?php endif;?>
|
||||
<?php echo JHtml::_('form.token'); ?>
|
||||
</fieldset>
|
||||
</form>
|
||||
</div>
|
||||
1
templates/beez3/html/com_content/form/index.html
Normal file
@ -0,0 +1 @@
|
||||
<!DOCTYPE html><title></title>
|
||||
1
templates/beez3/html/com_content/index.html
Normal file
@ -0,0 +1 @@
|
||||
<!DOCTYPE html><title></title>
|
||||
40
templates/beez3/html/com_newsfeeds/categories/default.php
Normal file
@ -0,0 +1,40 @@
|
||||
<?php
|
||||
/**
|
||||
* @package Joomla.Site
|
||||
* @subpackage com_newsfeeds
|
||||
*
|
||||
* @copyright Copyright (C) 2005 - 2013 Open Source Matters, Inc. All rights reserved.
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
JHtml::addIncludePath(JPATH_COMPONENT.'/helpers');
|
||||
JHtml::_('behavior.caption');
|
||||
?>
|
||||
<div class="categories-list<?php echo $this->pageclass_sfx;?>">
|
||||
<?php if ($this->params->get('show_page_heading')) : ?>
|
||||
<h1>
|
||||
<?php echo $this->escape($this->params->get('page_heading')); ?>
|
||||
</h1>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php if ($this->params->get('show_base_description')) : ?>
|
||||
<?php //If there is a description in the menu parameters use that; ?>
|
||||
<?php if ($this->params->get('categories_description')) : ?>
|
||||
<div class="category-desc base-desc">
|
||||
<?php echo JHtml::_('content.prepare', $this->params->get('categories_description'), '', 'com_newsfeeds.categories'); ?>
|
||||
</div>
|
||||
<?php else: ?>
|
||||
<?php //Otherwise get one from the database if it exists. ?>
|
||||
<?php if ($this->parent->description) : ?>
|
||||
<div class="category-desc base-desc">
|
||||
<?php echo JHtml::_('content.prepare', $this->parent->description, '', 'com_newsfeeds.categories'); ?>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
<?php endif; ?>
|
||||
<?php endif; ?>
|
||||
<?php
|
||||
echo $this->loadTemplate('items');
|
||||
?>
|
||||
</div>
|
||||
@ -0,0 +1,55 @@
|
||||
<?php
|
||||
/**
|
||||
* @package Joomla.Site
|
||||
* @subpackage com_newsfeeds
|
||||
*
|
||||
* @copyright Copyright (C) 2005 - 2013 Open Source Matters, Inc. All rights reserved.
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
$class = ' class="first"';
|
||||
if (count($this->items[$this->parent->id]) > 0 && $this->maxLevelcat != 0) :
|
||||
?>
|
||||
<ul>
|
||||
<?php foreach ($this->items[$this->parent->id] as $id => $item) : ?>
|
||||
<?php
|
||||
if ($this->params->get('show_empty_categories_cat') || $item->numitems || count($item->getChildren())) :
|
||||
if (!isset($this->items[$this->parent->id][$id + 1]))
|
||||
{
|
||||
$class = ' class="last"';
|
||||
}
|
||||
?>
|
||||
<li<?php echo $class; ?>>
|
||||
<?php $class = ''; ?>
|
||||
<span class="item-title"><a href="<?php echo JRoute::_(NewsfeedsHelperRoute::getCategoryRoute($item->id));?>">
|
||||
<?php echo $this->escape($item->title); ?></a>
|
||||
</span>
|
||||
<?php if ($this->params->get('show_subcat_desc_cat') == 1) :?>
|
||||
<?php if ($item->description) : ?>
|
||||
<div class="category-desc">
|
||||
<?php echo JHtml::_('content.prepare', $item->description, '', 'com_newsfeeds.categories'); ?>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
<?php endif; ?>
|
||||
<?php if ($this->params->get('show_cat_items_cat') == 1) :?>
|
||||
<dl class="newsfeed-count"><dt>
|
||||
<?php echo JText::_('COM_NEWSFEEDS_CAT_NUM'); ?></dt>
|
||||
<dd><?php echo $item->numitems; ?></dd>
|
||||
</dl>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php if (count($item->getChildren()) > 0) :
|
||||
$this->items[$item->id] = $item->getChildren();
|
||||
$this->parent = $item;
|
||||
$this->maxLevelcat--;
|
||||
echo $this->loadTemplate('items');
|
||||
$this->parent = $item->getParent();
|
||||
$this->maxLevelcat++;
|
||||
endif; ?>
|
||||
|
||||
</li>
|
||||
<?php endif; ?>
|
||||
<?php endforeach; ?>
|
||||
</ul>
|
||||
<?php endif; ?>
|
||||
1
templates/beez3/html/com_newsfeeds/categories/index.html
Normal file
@ -0,0 +1 @@
|
||||
<!DOCTYPE html><title></title>
|
||||
46
templates/beez3/html/com_newsfeeds/category/default.php
Normal file
@ -0,0 +1,46 @@
|
||||
<?php
|
||||
/**
|
||||
* @package Joomla.Site
|
||||
* @subpackage com_newsfeeds
|
||||
*
|
||||
* @copyright Copyright (C) 2005 - 2013 Open Source Matters, Inc. All rights reserved.
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
JHtml::addIncludePath(JPATH_COMPONENT.'/helpers');
|
||||
|
||||
JHtml::_('behavior.caption');
|
||||
?>
|
||||
<div class="newsfeed-category<?php echo $this->pageclass_sfx;?>">
|
||||
<?php if ($this->params->get('show_page_heading')) : ?>
|
||||
<h1>
|
||||
<?php echo $this->escape($this->params->get('page_heading')); ?>
|
||||
</h1>
|
||||
<?php endif; ?>
|
||||
<?php if ($this->params->get('show_category_title', 1)) : ?>
|
||||
<h2>
|
||||
<?php echo JHtml::_('content.prepare', $this->category->title, '', 'com_newsfeeds.category'); ?>
|
||||
</h2>
|
||||
<?php endif; ?>
|
||||
<?php if ($this->params->get('show_description', 1) || $this->params->def('show_description_image', 1)) : ?>
|
||||
<div class="category-desc">
|
||||
<?php if ($this->params->get('show_description_image') && $this->category->getParams()->get('image')) : ?>
|
||||
<img src="<?php echo $this->category->getParams()->get('image'); ?>"/>
|
||||
<?php endif; ?>
|
||||
<?php if ($this->params->get('show_description') && $this->category->description) : ?>
|
||||
<?php echo JHtml::_('content.prepare', $this->category->description, '', 'com_newsfeeds.category'); ?>
|
||||
<?php endif; ?>
|
||||
<div class="clr"></div>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php echo $this->loadTemplate('items'); ?>
|
||||
|
||||
<?php if (!empty($this->children[$this->category->id])&& $this->maxLevel != 0) : ?>
|
||||
<div class="cat-children">
|
||||
<h3><?php echo JText::_('JGLOBAL_SUBCATEGORIES'); ?></h3>
|
||||
<?php echo $this->loadTemplate('children'); ?>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
</div>
|
||||
@ -0,0 +1,57 @@
|
||||
<?php
|
||||
/**
|
||||
* @package Joomla.Site
|
||||
* @subpackage com_newsfeeds
|
||||
*
|
||||
* @copyright Copyright (C) 2005 - 2013 Open Source Matters, Inc. All rights reserved.
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
$class = ' class="first"';
|
||||
if (count($this->children[$this->category->id]) > 0 && $this->maxLevel != 0) :
|
||||
?>
|
||||
<ul>
|
||||
<?php foreach ($this->children[$this->category->id] as $id => $child) : ?>
|
||||
<?php
|
||||
if ($this->params->get('show_empty_categories') || $child->numitems || count($child->getChildren())) :
|
||||
if (!isset($this->children[$this->category->id][$id + 1]))
|
||||
{
|
||||
$class = ' class="last"';
|
||||
}
|
||||
?>
|
||||
<li<?php echo $class; ?>>
|
||||
<?php $class = ''; ?>
|
||||
<span class="item-title"><a href="<?php echo JRoute::_(NewsfeedsHelperRoute::getCategoryRoute($child->id));?>">
|
||||
<?php echo $this->escape($child->title); ?></a>
|
||||
</span>
|
||||
|
||||
<?php if ($this->params->get('show_subcat_desc') == 1) :?>
|
||||
<?php if ($child->description) : ?>
|
||||
<div class="category-desc">
|
||||
<?php echo JHtml::_('content.prepare', $child->description, '', 'com_newsfeeds.category'); ?>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php if ($this->params->get('show_cat_items') == 1) :?>
|
||||
<dl class="newsfeed-count"><dt>
|
||||
<?php echo JText::_('COM_NEWSFEEDS_CAT_NUM'); ?></dt>
|
||||
<dd><?php echo $child->numitems; ?></dd>
|
||||
</dl>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php if (count($child->getChildren()) > 0) :
|
||||
$this->children[$child->id] = $child->getChildren();
|
||||
$this->category = $child;
|
||||
$this->maxLevel--;
|
||||
echo $this->loadTemplate('children');
|
||||
$this->category = $child->getParent();
|
||||
$this->maxLevel++;
|
||||
endif; ?>
|
||||
</li>
|
||||
<?php endif; ?>
|
||||
<?php endforeach; ?>
|
||||
</ul>
|
||||
<?php endif;
|
||||
104
templates/beez3/html/com_newsfeeds/category/default_items.php
Normal file
@ -0,0 +1,104 @@
|
||||
<?php
|
||||
/**
|
||||
* @package Joomla.Site
|
||||
* @subpackage com_newsfeeds
|
||||
*
|
||||
* @copyright Copyright (C) 2005 - 2013 Open Source Matters, Inc. All rights reserved.
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
JHtml::_('behavior.framework');
|
||||
|
||||
$n = count($this->items);
|
||||
$listOrder = $this->escape($this->state->get('list.ordering'));
|
||||
$listDirn = $this->escape($this->state->get('list.direction'));
|
||||
?>
|
||||
|
||||
<?php if (empty($this->items)) : ?>
|
||||
<p> <?php echo JText::_('COM_NEWSFEEDS_NO_ARTICLES'); ?> </p>
|
||||
<?php else : ?>
|
||||
|
||||
<form action="<?php echo htmlspecialchars(JUri::getInstance()->toString()); ?>" method="post" name="adminForm" id="adminForm">
|
||||
<fieldset class="filters">
|
||||
<legend class="hidelabeltxt"><?php echo JText::_('JGLOBAL_FILTER_LABEL'); ?></legend>
|
||||
<?php if ($this->params->get('show_pagination_limit')) : ?>
|
||||
<div class="display-limit">
|
||||
<?php echo JText::_('JGLOBAL_DISPLAY_NUM'); ?> 
|
||||
<?php echo $this->pagination->getLimitBox(); ?>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
<input type="hidden" name="filter_order" value="<?php echo $listOrder; ?>" />
|
||||
<input type="hidden" name="filter_order_Dir" value="<?php echo $listDirn; ?>" />
|
||||
</fieldset>
|
||||
<table class="category">
|
||||
<?php if ($this->params->get('show_headings') == 1) : ?>
|
||||
<thead><tr>
|
||||
|
||||
<th class="item-title" id="tableOrdering">
|
||||
<?php echo JHtml::_('grid.sort', 'COM_NEWSFEEDS_FEED_NAME', 'a.name', $listDirn, $listOrder); ?>
|
||||
</th>
|
||||
|
||||
|
||||
<?php if ($this->params->get('show_articles')) : ?>
|
||||
<th class="item-num-art" id="tableOrdering2">
|
||||
<?php echo JHtml::_('grid.sort', 'COM_NEWSFEEDS_NUM_ARTICLES', 'a.numarticles', $listDirn, $listOrder); ?>
|
||||
</th>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php if ($this->params->get('show_link')) : ?>
|
||||
<th class="item-link" id="tableOrdering3">
|
||||
<?php echo JHtml::_('grid.sort', 'COM_NEWSFEEDS_FEED_LINK', 'a.link', $listDirn, $listOrder); ?>
|
||||
</th>
|
||||
<?php endif; ?>
|
||||
|
||||
</tr>
|
||||
</thead>
|
||||
<?php endif; ?>
|
||||
|
||||
<tbody>
|
||||
<?php foreach ($this->items as $i => $item) : ?>
|
||||
<?php if ($this->items[$i]->published == 0) : ?>
|
||||
<tr class="system-unpublished cat-list-row<?php echo $i % 2; ?>">
|
||||
<?php else: ?>
|
||||
<tr class="cat-list-row<?php echo $i % 2; ?>" >
|
||||
<?php endif; ?>
|
||||
|
||||
<td class="item-title">
|
||||
<a href="<?php echo JRoute::_(NewsFeedsHelperRoute::getNewsfeedRoute($item->slug, $item->catid)); ?>">
|
||||
<?php echo $item->name; ?></a>
|
||||
</td>
|
||||
|
||||
<?php if ($this->params->get('show_articles')) : ?>
|
||||
<td class="item-num-art">
|
||||
<?php echo $item->numarticles; ?>
|
||||
</td>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php if ($this->params->get('show_link')) : ?>
|
||||
<td class="item-link">
|
||||
<a href="<?php echo $item->link; ?>"><?php echo $item->link; ?></a>
|
||||
</td>
|
||||
<?php endif; ?>
|
||||
|
||||
</tr>
|
||||
|
||||
<?php endforeach; ?>
|
||||
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
<?php if ($this->params->get('show_pagination')) : ?>
|
||||
<div class="pagination">
|
||||
<?php if ($this->params->def('show_pagination_results', 1)) : ?>
|
||||
<p class="counter">
|
||||
<?php echo $this->pagination->getPagesCounter(); ?>
|
||||
</p>
|
||||
<?php endif; ?>
|
||||
<?php echo $this->pagination->getPagesLinks(); ?>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
|
||||
</form>
|
||||
<?php endif; ?>
|
||||
1
templates/beez3/html/com_newsfeeds/category/index.html
Normal file
@ -0,0 +1 @@
|
||||
<!DOCTYPE html><title></title>
|
||||
1
templates/beez3/html/com_newsfeeds/index.html
Normal file
@ -0,0 +1 @@
|
||||
<!DOCTYPE html><title></title>
|
||||
40
templates/beez3/html/com_weblinks/categories/default.php
Normal file
@ -0,0 +1,40 @@
|
||||
<?php
|
||||
/**
|
||||
* @package Joomla.Site
|
||||
* @subpackage com_weblinks
|
||||
*
|
||||
* @copyright Copyright (C) 2005 - 2013 Open Source Matters, Inc. All rights reserved.
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
JHtml::addIncludePath(JPATH_COMPONENT.'/helpers');
|
||||
JHtml::_('behavior.caption');
|
||||
?>
|
||||
<div class="categories-list<?php echo $this->pageclass_sfx;?>">
|
||||
<?php if ($this->params->get('show_page_heading')) : ?>
|
||||
<h1>
|
||||
<?php echo $this->escape($this->params->get('page_heading')); ?>
|
||||
</h1>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php if ($this->params->get('show_base_description')) : ?>
|
||||
<?php //If there is a description in the menu parameters use that; ?>
|
||||
<?php if ($this->params->get('categories_description')) : ?>
|
||||
<div class="category-desc base-desc">
|
||||
<?php echo JHtml::_('content.prepare', $this->params->get('categories_description'), '', 'com_weblinks.categories'); ?>
|
||||
</div>
|
||||
<?php else: ?>
|
||||
<?php //Otherwise get one from the database if it exists. ?>
|
||||
<?php if ($this->parent->description) : ?>
|
||||
<div class="category-desc base-desc">
|
||||
<?php echo JHtml::_('content.prepare', $this->parent->description, '', 'com_weblinks.categories'); ?>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
<?php endif; ?>
|
||||
<?php endif; ?>
|
||||
<?php
|
||||
echo $this->loadTemplate('items');
|
||||
?>
|
||||
</div>
|
||||
@ -0,0 +1,56 @@
|
||||
<?php
|
||||
/**
|
||||
* @package Joomla.Site
|
||||
* @subpackage com_weblinks
|
||||
*
|
||||
* @copyright Copyright (C) 2005 - 2013 Open Source Matters, Inc. All rights reserved.
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
$class = ' class="first"';
|
||||
if (count($this->items[$this->parent->id]) > 0 && $this->maxLevelcat != 0) :
|
||||
?>
|
||||
<ul>
|
||||
<?php foreach ($this->items[$this->parent->id] as $id => $item) : ?>
|
||||
<?php
|
||||
if ($this->params->get('show_empty_categories_cat') || $item->numitems || count($item->getChildren())) :
|
||||
if (!isset($this->items[$this->parent->id][$id + 1]))
|
||||
{
|
||||
$class = ' class="last"';
|
||||
}
|
||||
?>
|
||||
<li<?php echo $class; ?>>
|
||||
<?php $class = ''; ?>
|
||||
<span class="item-title"><a href="<?php echo JRoute::_(WeblinksHelperRoute::getCategoryRoute($item->id));?>">
|
||||
<?php echo $this->escape($item->title); ?></a>
|
||||
</span>
|
||||
<?php if ($this->params->get('show_subcat_desc_cat') == 1) :?>
|
||||
<?php if ($item->description) : ?>
|
||||
<div class="category-desc">
|
||||
<?php echo JHtml::_('content.prepare', $item->description, '', 'com_weblinks.categories'); ?>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
<?php endif; ?>
|
||||
<?php if ($this->params->get('show_cat_num_links_cat') == 1) :?>
|
||||
<dl class="weblink-count"><dt>
|
||||
<?php echo JText::_('COM_WEBLINKS_NUM'); ?></dt>
|
||||
<dd><?php echo $item->numitems; ?></dd>
|
||||
</dl>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php if (count($item->getChildren()) > 0) :
|
||||
$this->items[$item->id] = $item->getChildren();
|
||||
$this->parent = $item;
|
||||
$this->maxLevelcat--;
|
||||
echo $this->loadTemplate('items');
|
||||
$this->parent = $item->getParent();
|
||||
$this->maxLevelcat++;
|
||||
endif; ?>
|
||||
|
||||
</li>
|
||||
<?php endif; ?>
|
||||
<?php endforeach; ?>
|
||||
</ul>
|
||||
<?php endif; ?>
|
||||
1
templates/beez3/html/com_weblinks/categories/index.html
Normal file
@ -0,0 +1 @@
|
||||
<!DOCTYPE html><title></title>
|
||||
44
templates/beez3/html/com_weblinks/category/default.php
Normal file
@ -0,0 +1,44 @@
|
||||
<?php
|
||||
/**
|
||||
* @package Joomla.Site
|
||||
* @subpackage com_weblinks
|
||||
*
|
||||
* @copyright Copyright (C) 2005 - 2013 Open Source Matters, Inc. All rights reserved.
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
JHtml::addIncludePath(JPATH_COMPONENT.'/helpers');
|
||||
JHtml::_('behavior.caption');
|
||||
?>
|
||||
<div class="weblink-category<?php echo $this->pageclass_sfx;?>">
|
||||
<?php if ($this->params->get('show_page_heading')) : ?>
|
||||
<h1>
|
||||
<?php echo $this->escape($this->params->get('page_heading')); ?>
|
||||
</h1>
|
||||
<?php endif; ?>
|
||||
<?php if ($this->params->get('show_category_title', 1)) : ?>
|
||||
<h2>
|
||||
<?php echo JHtml::_('content.prepare', $this->category->title, '', 'com_weblinks.category'); ?>
|
||||
</h2>
|
||||
<?php endif; ?>
|
||||
<?php if ($this->params->get('show_description', 1) || $this->params->def('show_description_image', 1)) : ?>
|
||||
<div class="category-desc">
|
||||
<?php if ($this->params->get('show_description_image') && $this->category->getParams()->get('image')) : ?>
|
||||
<img src="<?php echo $this->category->getParams()->get('image'); ?>"/>
|
||||
<?php endif; ?>
|
||||
<?php if ($this->params->get('show_description') && $this->category->description) : ?>
|
||||
<?php echo JHtml::_('content.prepare', $this->category->description, '', 'com_weblinks.category'); ?>
|
||||
<?php endif; ?>
|
||||
<div class="clr"></div>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
<?php echo $this->loadTemplate('items'); ?>
|
||||
<?php if (!empty($this->children[$this->category->id])&& $this->maxLevel != 0) : ?>
|
||||
<div class="cat-children">
|
||||
<h3><?php echo JText::_('JGLOBAL_SUBCATEGORIES'); ?></h3>
|
||||
<?php echo $this->loadTemplate('children'); ?>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
</div>
|
||||
@ -0,0 +1,57 @@
|
||||
<?php
|
||||
/**
|
||||
* @package Joomla.Site
|
||||
* @subpackage com_weblinks
|
||||
*
|
||||
* @copyright Copyright (C) 2005 - 2013 Open Source Matters, Inc. All rights reserved.
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
$class = ' class="first"';
|
||||
if (count($this->children[$this->category->id]) > 0 && $this->maxLevel != 0) :
|
||||
?>
|
||||
<ul>
|
||||
<?php foreach ($this->children[$this->category->id] as $id => $child) : ?>
|
||||
<?php
|
||||
if ($this->params->get('show_empty_categories') || $child->numitems || count($child->getChildren())) :
|
||||
if (!isset($this->children[$this->category->id][$id + 1]))
|
||||
{
|
||||
$class = ' class="last"';
|
||||
}
|
||||
?>
|
||||
<li<?php echo $class; ?>>
|
||||
<?php $class = ''; ?>
|
||||
<span class="item-title"><a href="<?php echo JRoute::_(WeblinksHelperRoute::getCategoryRoute($child->id));?>">
|
||||
<?php echo $this->escape($child->title); ?></a>
|
||||
</span>
|
||||
|
||||
<?php if ($this->params->get('show_subcat_desc') == 1) :?>
|
||||
<?php if ($child->description) : ?>
|
||||
<div class="category-desc">
|
||||
<?php echo JHtml::_('content.prepare', $child->description, '', 'com_weblinks.category'); ?>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php if ($this->params->get('show_cat_num_links') == 1) :?>
|
||||
<dl class="weblink-count"><dt>
|
||||
<?php echo JText::_('COM_WEBLINKS_NUM'); ?></dt>
|
||||
<dd><?php echo $child->numitems; ?></dd>
|
||||
</dl>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php if (count($child->getChildren()) > 0 ) :
|
||||
$this->children[$child->id] = $child->getChildren();
|
||||
$this->category = $child;
|
||||
$this->maxLevel--;
|
||||
echo $this->loadTemplate('children');
|
||||
$this->category = $child->getParent();
|
||||
$this->maxLevel++;
|
||||
endif; ?>
|
||||
</li>
|
||||
<?php endif; ?>
|
||||
<?php endforeach; ?>
|
||||
</ul>
|
||||
<?php endif;
|
||||
185
templates/beez3/html/com_weblinks/category/default_items.php
Normal file
@ -0,0 +1,185 @@
|
||||
<?php
|
||||
/**
|
||||
* @package Joomla.Site
|
||||
* @subpackage com_weblinks
|
||||
*
|
||||
* @copyright Copyright (C) 2005 - 2013 Open Source Matters, Inc. All rights reserved.
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
// Code to support edit links for weblinks
|
||||
// Create a shortcut for params.
|
||||
$params = &$this->item->params;
|
||||
JHtml::addIncludePath(JPATH_COMPONENT.'/helpers/html');
|
||||
JHtml::_('behavior.framework');
|
||||
|
||||
// Get the user object.
|
||||
$user = JFactory::getUser();
|
||||
// Check if user is allowed to add/edit based on weblinks permissinos.
|
||||
$canEdit = $user->authorise('core.edit', 'com_weblinks');
|
||||
$canCreate = $user->authorise('core.create', 'com_weblinks');
|
||||
$canEditState = $user->authorise('core.edit.state', 'com_weblinks');
|
||||
|
||||
$n = count($this->items);
|
||||
$listOrder = $this->escape($this->state->get('list.ordering'));
|
||||
$listDirn = $this->escape($this->state->get('list.direction'));
|
||||
?>
|
||||
|
||||
<?php if (empty($this->items)) : ?>
|
||||
<p> <?php echo JText::_('COM_WEBLINKS_NO_WEBLINKS'); ?></p>
|
||||
<?php else : ?>
|
||||
|
||||
<form action="<?php echo htmlspecialchars(JUri::getInstance()->toString()); ?>" method="post" name="adminForm" id="adminForm">
|
||||
<?php if ($this->params->get('show_pagination_limit')) : ?>
|
||||
<fieldset class="filters">
|
||||
<legend class="hidelabeltxt"><?php echo JText::_('JGLOBAL_FILTER_LABEL'); ?></legend>
|
||||
<div class="display-limit">
|
||||
<?php echo JText::_('JGLOBAL_DISPLAY_NUM'); ?> 
|
||||
<?php echo $this->pagination->getLimitBox(); ?>
|
||||
</div>
|
||||
<input type="hidden" name="filter_order" value="<?php echo $listOrder; ?>" />
|
||||
<input type="hidden" name="filter_order_Dir" value="<?php echo $listDirn; ?>" />
|
||||
</fieldset>
|
||||
<?php endif; ?>
|
||||
|
||||
<table class="category">
|
||||
<?php if ($this->params->get('show_headings') == 1) : ?>
|
||||
|
||||
<thead><tr>
|
||||
|
||||
<th class="title">
|
||||
<?php echo JHtml::_('grid.sort', 'COM_WEBLINKS_GRID_TITLE', 'title', $listDirn, $listOrder); ?>
|
||||
</th>
|
||||
<?php if ($this->params->get('show_link_hits')) : ?>
|
||||
<th class="hits">
|
||||
<?php echo JHtml::_('grid.sort', 'JGLOBAL_HITS', 'hits', $listDirn, $listOrder); ?>
|
||||
</th>
|
||||
<?php endif; ?>
|
||||
</tr>
|
||||
</thead>
|
||||
<?php endif; ?>
|
||||
<tbody>
|
||||
<?php foreach ($this->items as $i => $item) : ?>
|
||||
<?php if ($this->items[$i]->state == 0) : ?>
|
||||
<tr class="system-unpublished cat-list-row<?php echo $i % 2; ?>">
|
||||
<?php else: ?>
|
||||
<tr class="cat-list-row<?php echo $i % 2; ?>" >
|
||||
<?php endif; ?>
|
||||
|
||||
<td class="title">
|
||||
<p>
|
||||
<?php if ($this->params->get('icons') == 0) : ?>
|
||||
<?php echo JText::_('COM_WEBLINKS_LINK'); ?>
|
||||
<?php elseif ($this->params->get('icons') == 1) : ?>
|
||||
<?php if (!$this->params->get('link_icons')) : ?>
|
||||
<?php echo JHtml::_('image', 'system/'.$this->params->get('link_icons', 'weblink.png'), JText::_('COM_WEBLINKS_LINK'), null, true); ?>
|
||||
<?php else: ?>
|
||||
<?php echo '<img src="'.$this->params->get('link_icons').'" alt="'.JText::_('COM_WEBLINKS_LINK').'" />'; ?>
|
||||
<?php endif; ?>
|
||||
<?php endif; ?>
|
||||
<?php
|
||||
// Compute the correct link
|
||||
$menuclass = 'category'.$this->pageclass_sfx;
|
||||
$link = $item->link;
|
||||
$width = $item->params->get('width');
|
||||
$height = $item->params->get('height');
|
||||
if ($width == null || $height == null)
|
||||
{
|
||||
$width = 600;
|
||||
$height = 500;
|
||||
}
|
||||
|
||||
switch ($item->params->get('target', $this->params->get('target')))
|
||||
{
|
||||
case 1:
|
||||
// open in a new window
|
||||
echo '<a href="'. $link .'" target="_blank" class="'. $menuclass .'" rel="nofollow">'.
|
||||
$this->escape($item->title) .'</a>';
|
||||
break;
|
||||
|
||||
case 2:
|
||||
// open in a popup window
|
||||
$attribs = 'toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width='.$this->escape($width).',height='.$this->escape($height).'';
|
||||
echo "<a href=\"$link\" onclick=\"window.open(this.href, 'targetWindow', '".$attribs."'); return false;\">".
|
||||
$this->escape($item->title).'</a>';
|
||||
break;
|
||||
case 3:
|
||||
// open in a modal window
|
||||
JHtml::_('behavior.modal', 'a.modal');
|
||||
echo '<a class="modal" href="'.$link.'" rel="{handler: \'iframe\', size: {x:'.$this->escape($width).', y:'.$this->escape($height).'}}">'.
|
||||
$this->escape($item->title). ' </a>';
|
||||
break;
|
||||
|
||||
default:
|
||||
// open in parent window
|
||||
echo '<a href="'. $link . '" class="'. $menuclass .'" rel="nofollow">'.
|
||||
$this->escape($item->title) . ' </a>';
|
||||
break;
|
||||
}
|
||||
?>
|
||||
<?php // Code to add the edit link for the weblink. ?>
|
||||
|
||||
<?php if ($canEdit) : ?>
|
||||
<ul class="actions">
|
||||
<li class="edit-icon">
|
||||
<?php echo JHtml::_('icon.edit', $item, $params); ?>
|
||||
</li>
|
||||
</ul>
|
||||
<?php endif; ?>
|
||||
</p>
|
||||
<?php $tagsData = $item->tags->getItemTags('com_weblinks.weblink', $item->id); ?>
|
||||
<?php if ($this->params->get('show_tags', 1)) : ?>
|
||||
<?php $this->item->tagLayout = new JLayoutFile('joomla.content.tags'); ?>
|
||||
<?php echo $this->item->tagLayout->render($tagsData); ?>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php if (($this->params->get('show_link_description')) and ($item->description != '')) : ?>
|
||||
<?php $images = json_decode($item->images); ?>
|
||||
<?php if (isset($images->image_first) and !empty($images->image_first)) : ?>
|
||||
<?php $imgfloat = (empty($images->float_first)) ? $this->params->get('float_first') : $images->float_first; ?>
|
||||
<div class="img-intro-<?php echo htmlspecialchars($imgfloat); ?>"> <img
|
||||
<?php if ($images->image_first_caption):
|
||||
echo 'class="caption"'.' title="' .htmlspecialchars($images->image_first_caption) .'"';
|
||||
endif; ?>
|
||||
src="<?php echo htmlspecialchars($images->image_first); ?>" alt="<?php echo htmlspecialchars($images->image_first_alt); ?>"/> </div>
|
||||
<?php endif; ?>
|
||||
<?php if (isset($images->image_second) and !empty($images->image_second)) : ?>
|
||||
<?php $imgfloat = (empty($images->float_second)) ? $this->params->get('float_second') : $images->float_second; ?>
|
||||
<div class="pull-<?php echo htmlspecialchars($imgfloat); ?> item-image"> <img
|
||||
<?php if ($images->image_second_caption):
|
||||
echo 'class="caption"'.' title="' .htmlspecialchars($images->image_second_caption) .'"';
|
||||
endif; ?>
|
||||
src="<?php echo htmlspecialchars($images->image_second); ?>" alt="<?php echo htmlspecialchars($images->image_second_alt); ?>"/> </div>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php echo $item->description; ?>
|
||||
<?php endif; ?>
|
||||
</td>
|
||||
<?php if ($this->params->get('show_link_hits')) : ?>
|
||||
<td class="hits">
|
||||
<?php echo $item->hits; ?>
|
||||
</td>
|
||||
<?php endif; ?>
|
||||
</tr>
|
||||
<?php endforeach; ?>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
<?php // Code to add a link to submit a weblink. ?>
|
||||
<?php /* if ($canCreate) : // TODO This is not working due to some problem in the router, I think. Ref issue #23685 ?>
|
||||
<?php echo JHtml::_('icon.create', $item, $item->params); ?>
|
||||
<?php endif; */ ?>
|
||||
<?php if ($this->params->get('show_pagination')) : ?>
|
||||
<div class="pagination">
|
||||
<?php if ($this->params->def('show_pagination_results', 1)) : ?>
|
||||
<p class="counter">
|
||||
<?php echo $this->pagination->getPagesCounter(); ?>
|
||||
</p>
|
||||
<?php endif; ?>
|
||||
<?php echo $this->pagination->getPagesLinks(); ?>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
</form>
|
||||
<?php endif; ?>
|
||||
1
templates/beez3/html/com_weblinks/category/index.html
Normal file
@ -0,0 +1 @@
|
||||
<!DOCTYPE html><title></title>
|
||||
113
templates/beez3/html/com_weblinks/form/edit.php
Normal file
@ -0,0 +1,113 @@
|
||||
<?php
|
||||
/**
|
||||
* @package Joomla.Site
|
||||
* @subpackage com_weblinks
|
||||
*
|
||||
* @copyright Copyright (C) 2005 - 2013 Open Source Matters, Inc. All rights reserved.
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
JHtml::_('behavior.keepalive');
|
||||
JHtml::_('behavior.formvalidation');
|
||||
|
||||
// Create shortcut to parameters.
|
||||
$params = $this->state->get('params');
|
||||
?>
|
||||
|
||||
<script type="text/javascript">
|
||||
Joomla.submitbutton = function(task)
|
||||
{
|
||||
if (task == 'weblink.cancel' || document.formvalidator.isValid(document.id('adminForm')))
|
||||
{
|
||||
<?php echo $this->form->getField('description')->save(); ?>
|
||||
Joomla.submitform(task);
|
||||
}
|
||||
}
|
||||
</script>
|
||||
<div class="edit<?php echo $this->pageclass_sfx; ?>">
|
||||
<?php if ($this->params->get('show_page_heading')) : ?>
|
||||
<h1>
|
||||
<?php echo $this->escape($this->params->get('page_heading')); ?>
|
||||
</h1>
|
||||
<?php endif; ?>
|
||||
<form action="<?php echo JRoute::_('index.php?option=com_weblinks&view=form&w_id='.(int) $this->item->id); ?>" method="post" name="adminForm" id="adminForm" class="form-validate form-vertical">
|
||||
<div class="btn-toolbar">
|
||||
<div class="btn-group">
|
||||
<button type="button" class="btn btn-primary" onclick="Joomla.submitbutton('weblink.save')">
|
||||
<i class="icon-ok"></i> <?php echo JText::_('JSAVE') ?>
|
||||
</button>
|
||||
</div>
|
||||
<div class="btn-group">
|
||||
<button type="button" class="btn" onclick="Joomla.submitbutton('weblink.cancel')">
|
||||
<i class="icon-cancel"></i> <?php echo JText::_('JCANCEL') ?>
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<hr class="hr-condensed" />
|
||||
<div class="control-group">
|
||||
<div class="control-label">
|
||||
<?php echo $this->form->getLabel('title'); ?>
|
||||
</div>
|
||||
<div class="controls">
|
||||
<?php echo $this->form->getInput('title'); ?>
|
||||
</div>
|
||||
</div>
|
||||
<div class="control-group">
|
||||
<div class="control-label">
|
||||
<?php echo $this->form->getLabel('alias'); ?>
|
||||
</div>
|
||||
<div class="controls">
|
||||
<?php echo $this->form->getInput('alias'); ?>
|
||||
</div>
|
||||
</div>
|
||||
<div class="control-group">
|
||||
<div class="control-label">
|
||||
<?php echo $this->form->getLabel('catid'); ?>
|
||||
</div>
|
||||
<div class="controls">
|
||||
<?php echo $this->form->getInput('catid'); ?>
|
||||
</div>
|
||||
</div>
|
||||
<div class="control-group">
|
||||
<div class="control-label">
|
||||
<?php echo $this->form->getLabel('url'); ?>
|
||||
</div>
|
||||
<div class="controls">
|
||||
<?php echo $this->form->getInput('url'); ?>
|
||||
</div>
|
||||
</div>
|
||||
<?php if ($this->user->authorise('core.edit.state', 'com_weblinks.weblink')) : ?>
|
||||
<div class="control-group">
|
||||
<div class="control-label">
|
||||
<?php echo $this->form->getLabel('state'); ?>
|
||||
</div>
|
||||
<div class="controls">
|
||||
<?php echo $this->form->getInput('state'); ?>
|
||||
</div>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
<div class="control-group">
|
||||
<div class="control-label">
|
||||
<?php echo $this->form->getLabel('language'); ?>
|
||||
</div>
|
||||
<div class="controls">
|
||||
<?php echo $this->form->getInput('language'); ?>
|
||||
</div>
|
||||
</div>
|
||||
<div class="control-group">
|
||||
<div class="control-label">
|
||||
<?php echo $this->form->getLabel('description'); ?>
|
||||
</div>
|
||||
<div class="controls">
|
||||
<?php echo $this->form->getInput('description'); ?>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<input type="hidden" name="return" value="<?php echo $this->return_page;?>" />
|
||||
<input type="hidden" name="task" value="" />
|
||||
<?php echo JHtml::_('form.token'); ?>
|
||||
</form>
|
||||
</div>
|
||||
1
templates/beez3/html/com_weblinks/form/index.html
Normal file
@ -0,0 +1 @@
|
||||
<!DOCTYPE html><title></title>
|
||||
1
templates/beez3/html/com_weblinks/index.html
Normal file
@ -0,0 +1 @@
|
||||
<!DOCTYPE html><title></title>
|
||||
1
templates/beez3/html/index.html
Normal file
@ -0,0 +1 @@
|
||||
<!DOCTYPE html><title></title>
|
||||
40
templates/beez3/html/message.php
Normal file
@ -0,0 +1,40 @@
|
||||
<?php
|
||||
/**
|
||||
* @package Joomla.Site
|
||||
* @subpackage Template.Beez3
|
||||
*
|
||||
* @copyright Copyright (C) 2005 - 2013 Open Source Matters, Inc. All rights reserved.
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
function renderMessage($msgList)
|
||||
{
|
||||
$buffer = null;
|
||||
$buffer .= "\n<div id=\"system-message-container\">";
|
||||
|
||||
if (is_array($msgList))
|
||||
{
|
||||
$buffer .= "\n<dl id=\"system-message\">";
|
||||
foreach ($msgList as $type => $msgs)
|
||||
{
|
||||
if (count($msgs))
|
||||
{
|
||||
$buffer .= "\n<dt class=\"" . strtolower($type) . "\">" . JText::_($type) . "</dt>";
|
||||
$buffer .= "\n<dd class=\"" . strtolower($type) . " message\">";
|
||||
$buffer .= "\n\t<ul>";
|
||||
foreach ($msgs as $msg)
|
||||
{
|
||||
$buffer .= "\n\t\t<li>" . $msg . "</li>";
|
||||
}
|
||||
$buffer .= "\n\t</ul>";
|
||||
$buffer .= "\n</dd>";
|
||||
}
|
||||
$buffer .= "\n</dl>";
|
||||
}
|
||||
|
||||
$buffer .= "\n</div>";
|
||||
return $buffer;
|
||||
}
|
||||
}
|
||||
62
templates/beez3/html/mod_breadcrumbs/default.php
Normal file
@ -0,0 +1,62 @@
|
||||
<?php
|
||||
/**
|
||||
* @package Joomla.Site
|
||||
* @subpackage Templates.beez3
|
||||
*
|
||||
* @copyright Copyright (C) 2005 - 2013 Open Source Matters, Inc. All rights reserved.
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
?>
|
||||
|
||||
<div class = "breadcrumbs<?php echo $moduleclass_sfx; ?>">
|
||||
<?php if ($params->get('showHere', 1))
|
||||
{
|
||||
echo '<span class="showHere">' .JText::_('MOD_BREADCRUMBS_HERE').'</span>';
|
||||
}
|
||||
|
||||
// Get rid of duplicated entries on trail including home page when using multilanguage
|
||||
for ($i = 0; $i < $count; $i++)
|
||||
{
|
||||
if ($i == 1 && !empty($list[$i]->link) && !empty($list[$i - 1]->link) && $list[$i]->link == $list[$i - 1]->link)
|
||||
{
|
||||
unset($list[$i]);
|
||||
}
|
||||
}
|
||||
|
||||
// Find last and penultimate items in breadcrumbs list
|
||||
end($list);
|
||||
$last_item_key = key($list);
|
||||
prev($list);
|
||||
$penult_item_key = key($list);
|
||||
|
||||
// Generate the trail
|
||||
foreach ($list as $key => $item) :
|
||||
// Make a link if not the last item in the breadcrumbs
|
||||
$show_last = $params->get('showLast', 1);
|
||||
if ($key != $last_item_key)
|
||||
{
|
||||
// Render all but last item - along with separator
|
||||
if (!empty($item->link))
|
||||
{
|
||||
echo '<a href="' . $item->link . '" class="pathway">' . $item->name . '</a>';
|
||||
}
|
||||
else
|
||||
{
|
||||
echo '<span>' . $item->name . '</span>';
|
||||
}
|
||||
|
||||
if (($key != $penult_item_key) || $show_last)
|
||||
{
|
||||
echo ' '.$separator.' ';
|
||||
}
|
||||
|
||||
}
|
||||
elseif ($show_last)
|
||||
{
|
||||
// Render last item if reqd.
|
||||
echo '<span>' . $item->name . '</span>';
|
||||
}
|
||||
endforeach; ?>
|
||||
</div>
|
||||
1
templates/beez3/html/mod_breadcrumbs/index.html
Normal file
@ -0,0 +1 @@
|
||||
<!DOCTYPE html><title></title>
|
||||
115
templates/beez3/html/modules.php
Normal file
@ -0,0 +1,115 @@
|
||||
<?php
|
||||
/**
|
||||
* @package Joomla.Site
|
||||
* @subpackage Templates.beez3
|
||||
*
|
||||
* @copyright Copyright (C) 2005 - 2013 Open Source Matters, Inc. All rights reserved.
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
defined('_JEXEC') or die;
|
||||
|
||||
/**
|
||||
* beezDivision chrome.
|
||||
*
|
||||
* @since 3.0
|
||||
*/
|
||||
function modChrome_beezDivision($module, &$params, &$attribs)
|
||||
{
|
||||
$headerLevel = isset($attribs['headerLevel']) ? (int) $attribs['headerLevel'] : 3;
|
||||
if (!empty ($module->content)) { ?>
|
||||
<div class="moduletable<?php echo htmlspecialchars($params->get('moduleclass_sfx')); ?>">
|
||||
<?php if ($module->showtitle) { ?> <h<?php echo $headerLevel; ?>><?php echo $module->title; ?></h<?php echo $headerLevel; ?>>
|
||||
<?php }; ?> <?php echo $module->content; ?></div>
|
||||
<?php };
|
||||
}
|
||||
|
||||
/**
|
||||
* beezHide chrome.
|
||||
*
|
||||
* @since 3.0
|
||||
*/
|
||||
function modChrome_beezHide($module, &$params, &$attribs)
|
||||
{
|
||||
$headerLevel = isset($attribs['headerLevel']) ? (int) $attribs['headerLevel'] : 3;
|
||||
$state = isset($attribs['state']) ? (int) $attribs['state'] :0;
|
||||
|
||||
if (!empty ($module->content)) { ?>
|
||||
|
||||
<div
|
||||
class="moduletable_js <?php echo htmlspecialchars($params->get('moduleclass_sfx'));?>"><?php if ($module->showtitle) : ?>
|
||||
<h<?php echo $headerLevel; ?> class="js_heading"> <?php echo $module->title; ?> <a href="#"
|
||||
title="<?php echo JText::_('TPL_BEEZ3_CLICK'); ?>"
|
||||
onclick="auf('module_<?php echo $module->id; ?>'); return false"
|
||||
class="opencloselink" id="link_<?php echo $module->id?>"> <span
|
||||
class="no"><img src="templates/beez3/images/plus.png"
|
||||
alt="<?php if ($state == 1) { echo JText::_('TPL_BEEZ3_ALTOPEN');} else {echo JText::_('TPL_BEEZ3_ALTCLOSE');} ?>" />
|
||||
</span></a></h<?php echo $headerLevel; ?>> <?php endif; ?>
|
||||
<div class="module_content <?php if ($state == 1){echo "open";} ?>"
|
||||
id="module_<?php echo $module->id; ?>" tabindex="-1"><?php echo $module->content; ?></div>
|
||||
</div>
|
||||
<?php }
|
||||
}
|
||||
|
||||
/**
|
||||
* beezTabs chrome.
|
||||
*
|
||||
* @since 3.0
|
||||
*/
|
||||
function modChrome_beezTabs($module, $params, $attribs)
|
||||
{
|
||||
$area = isset($attribs['id']) ? (int) $attribs['id'] :'1';
|
||||
$area = 'area-'.$area;
|
||||
|
||||
static $modulecount;
|
||||
static $modules;
|
||||
|
||||
if ($modulecount < 1)
|
||||
{
|
||||
$modulecount = count(JModuleHelper::getModules($module->position));
|
||||
$modules = array();
|
||||
}
|
||||
|
||||
if ($modulecount == 1)
|
||||
{
|
||||
$temp = new stdClass;
|
||||
$temp->content = $module->content;
|
||||
$temp->title = $module->title;
|
||||
$temp->params = $module->params;
|
||||
$temp->id = $module->id;
|
||||
$modules[] = $temp;
|
||||
// list of moduletitles
|
||||
// list of moduletitles
|
||||
echo '<div id="'. $area.'" class="tabouter"><ul class="tabs">';
|
||||
|
||||
foreach ($modules as $rendermodule)
|
||||
{
|
||||
echo '<li class="tab"><a href="#" id="link_'.$rendermodule->id.'" class="linkopen" onclick="tabshow(\'module_'. $rendermodule->id.'\');return false">'.$rendermodule->title.'</a></li>';
|
||||
}
|
||||
echo '</ul>';
|
||||
$counter = 0;
|
||||
// modulecontent
|
||||
foreach ($modules as $rendermodule)
|
||||
{
|
||||
$counter ++;
|
||||
|
||||
echo '<div tabindex="-1" class="tabcontent tabopen" id="module_'.$rendermodule->id.'">';
|
||||
echo $rendermodule->content;
|
||||
if ($counter != count($modules))
|
||||
{
|
||||
echo '<a href="#" class="unseen" onclick="nexttab(\'module_'. $rendermodule->id.'\');return false;" id="next_'.$rendermodule->id.'">'.JText::_('TPL_BEEZ3_NEXTTAB').'</a>';
|
||||
}
|
||||
echo '</div>';
|
||||
}
|
||||
$modulecount--;
|
||||
echo '</div>';
|
||||
} else {
|
||||
$temp = new stdClass;
|
||||
$temp->content = $module->content;
|
||||
$temp->params = $module->params;
|
||||
$temp->title = $module->title;
|
||||
$temp->id = $module->id;
|
||||
$modules[] = $temp;
|
||||
$modulecount--;
|
||||
}
|
||||
}
|
||||
BIN
templates/beez3/images/all_bg.gif
Normal file
|
After Width: | Height: | Size: 143 B |
BIN
templates/beez3/images/arrow.png
Normal file
|
After Width: | Height: | Size: 128 B |
BIN
templates/beez3/images/arrow2_grey.png
Normal file
|
After Width: | Height: | Size: 128 B |
BIN
templates/beez3/images/arrow_white_grey.png
Normal file
|
After Width: | Height: | Size: 151 B |
BIN
templates/beez3/images/blog_more.gif
Normal file
|
After Width: | Height: | Size: 230 B |
BIN
templates/beez3/images/blog_more_hover.gif
Normal file
|
After Width: | Height: | Size: 230 B |
BIN
templates/beez3/images/close.png
Normal file
|
After Width: | Height: | Size: 783 B |
BIN
templates/beez3/images/content_bg.gif
Normal file
|
After Width: | Height: | Size: 157 B |
BIN
templates/beez3/images/footer_bg.gif
Normal file
|
After Width: | Height: | Size: 2.2 KiB |
BIN
templates/beez3/images/footer_bg.png
Normal file
|
After Width: | Height: | Size: 368 B |
BIN
templates/beez3/images/header-bg.gif
Normal file
|
After Width: | Height: | Size: 128 B |
1
templates/beez3/images/index.html
Normal file
@ -0,0 +1 @@
|
||||
<!DOCTYPE html><title></title>
|
||||
BIN
templates/beez3/images/minus.png
Normal file
|
After Width: | Height: | Size: 155 B |
BIN
templates/beez3/images/nature/arrow1.gif
Normal file
|
After Width: | Height: | Size: 1.7 KiB |
BIN
templates/beez3/images/nature/arrow1_rtl.gif
Normal file
|
After Width: | Height: | Size: 1.7 KiB |
BIN
templates/beez3/images/nature/arrow2.gif
Normal file
|
After Width: | Height: | Size: 100 B |
BIN
templates/beez3/images/nature/arrow2_grey.png
Normal file
|
After Width: | Height: | Size: 128 B |
BIN
templates/beez3/images/nature/arrow2_rtl.gif
Normal file
|
After Width: | Height: | Size: 101 B |