View file Modules/Contact.php

File size: 431B
<?PHP
require '../System/core.php';
 $config['title'] = 'Контакты';
require '../System/header.php';

if(empty($system['contact']))
{
 ?>
   <div class="text">
    Пусто
   </div>
 <?
}
else
{
 ?>
  <div class="asd">
   <?=text(bbcode($system['contact']))?>
  </div>
 <?
}
echo '<a class="link_g" href="/"><i class="fa fa-home" aria-hidden="true"></i> На главную</a></div>';
require '../System/footer.php';
?>