* \n to PHP_EOL * add phpdoc for autocomplete * try to unify indentations * stop mixing quotation marks if possible
18 lines
383 B
PHP
18 lines
383 B
PHP
<?php
|
|
namespace Aowow\Template;
|
|
|
|
use \Aowow\Lang;
|
|
|
|
/** @var PageTemplate $this */
|
|
|
|
if ($this->book): ?>
|
|
|
|
<div class="clear"></div>
|
|
<h3><?=Lang::item('content'); ?></h3>
|
|
|
|
<div id="book-generic"></div>
|
|
<script>//<![CDATA[
|
|
<?=$this->book; ?>
|
|
//]]></script>
|
|
|
|
<?php endif; ?>
|