26 lines
724 B
PHP
26 lines
724 B
PHP
<?php
|
|
\defined('_JEXEC') or die;
|
|
|
|
use Joomla\CMS\HTML\HTMLHelper;
|
|
use Joomla\CMS\Language\Text;
|
|
|
|
/** @var \Pcrt\Component\Circolari\Site\View\Circolare\HtmlView $this */
|
|
$item = $this->item;
|
|
?>
|
|
|
|
<div class="container my-5 mega-container">
|
|
|
|
<div class="row mb-4 align-items-end">
|
|
<div class="col-md-9 col-12">
|
|
<h1 class="h2 mb-1"><?= $this->escape($item->title); ?></h1>
|
|
</div>
|
|
|
|
<div class="col-md-3 col-12 text-md-end mt-2 mt-md-0">
|
|
<a href="#" class="small text-decoration-none text-uppercase fw-bold">Condividi</a>
|
|
</div>
|
|
<div class="article-body mt-3">
|
|
<?php echo $item->description ?: $item->testo ?: $item->descrizione ?: '<em>(Nessun testo)</em>'; ?>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|