git-svn-id: https://192.168.0.254/svn/Proyectos.FundacionLQDVI_WebCongresos/trunk@2 94ccb1af-fd9d-d947-8d90-7f70ea60afc8
16 lines
523 B
PHP
16 lines
523 B
PHP
<?php // no direct access
|
|
defined('_JEXEC') or die('Restricted access'); ?>
|
|
<?php if ( $this->params->def( 'show_page_title', 1 ) ) : ?>
|
|
<div class="componentheading<?php echo $this->escape($this->params->get('pageclass_sfx')); ?>">
|
|
<?php echo $this->escape($this->params->get('page_title')); ?>
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
<table cellpadding="0" cellspacing="0" border="0" width="100%">
|
|
<tr>
|
|
<td>
|
|
<?php echo nl2br($this->escape($this->params->get('welcome_desc', JText::_( 'WELCOME_DESC' )))); ?>
|
|
</td>
|
|
</tr>
|
|
</table>
|