1
0
mirror of synced 2024-12-17 00:18:42 +03:00
doctrine2/website/apps/frontend/modules/manual/templates/indexSuccess.php

22 lines
717 B
PHP
Raw Normal View History

2007-09-06 22:29:27 +04:00
<div class="content">
<h1><?php echo link_to('Doctrine Manual', '@manual'); ?></h1>
2007-09-06 22:29:27 +04:00
</div>
2007-09-06 19:51:12 +04:00
<div class="content" id="manual">
<?php if( isset($output) ): ?>
<?php echo $output; ?>
<?php else: ?>
<p>There are several different versions of this manual available online:
<ul>
<li>View as <a href="?one-page">all chapters in one page</a>.</li>
<li>View as <a href="?chapter=<?php echo $toc->findByIndex('1.')->getPath(); ?>">one chapter per page</a>.</li>
<li>Download the <a href="?format=pdf">PDF version</a>.</li>
</ul>
</p>
<?php endif; ?>
</div>
2007-09-06 19:51:12 +04:00
<?php slot('right'); ?>
2007-09-06 22:29:27 +04:00
<h2>Table of Contents</h2>
2007-09-06 19:51:12 +04:00
<?php echo $renderer->renderToc(); ?>
<?php end_slot(); ?>