View file modules/pages/tags.php

File size: 1.43Kb
  1. <?php
  2. /**********************************
  3. * @package: PerfCMS *
  4. * @year: 2012 *
  5. * @author: Artas *
  6. * @link: http://perfcms.pp.ua *
  7. **********************************/
  8. $locate = 'in_faq';
  9. $title = $lang->word('tags');
  10. require_once(SYS.'/view/header.php');
  11. $tpl->div('title', $lang->word('tags'));
  12. ?>
  13. <div class="menu">
  14. [b]Text[/b]: <?=output('[b]Text[/b]');?><br/>
  15. [i]Text[/i]: <?=output('[i]Text[/i]');?><br/>
  16. [u]Text[/u]: <?=output('[u]Text[/u]');?><br/>
  17. [s]Text[/s]: <?=output('[s]Text[/s]');?><br/>
  18. [big]Text[/big]: <?=output('[big]Text[/big]');?><br/>
  19. [small]Text[/small]: <?=output('[small]Text[/small]');?><br/>
  20. [green]Text[/green]: <?=output('[green]Text[/green]');?><br/>
  21. [red]Text[/red]: <?=output('[red]Text[/red]');?><br/>
  22. [blue]Text[/blue]: <?=output('[blue]Text[/blue]');?><br/>
  23. [yellow]Text[/yellow]: <?=output('[yellow]Text[/yellow]');?><br/>
  24. [size=(0-13)]Text[/size]: <?=output('[size=13]Text[/size]');?><br/>
  25. [color=(any color)]Text[/color]: <?=output('[color=black]Text[/color]');?><br/>
  26. [url=http://www.google.com]Google[/url]: <?=output('[url=http://www.google.com]Google[/url]');?><br/>
  27. [quote]Quote[/quote]: <?=output('[quote]Quote[/quote]');?><br/>
  28. http://google.com: <?=output('http://google.com');?><br/>
  29. </div>
  30. <?php
  31. $tpl->div('block', NAV .'<a href="/pages/faq.php">'. $lang->word('faq').'</a></br/>'. HICO .'<a href="/">'. $lang->word('home').'</a>');
  32. require_once(SYS.'/view/footer.php');
  33. ?>