source: sipes/cord/modules/book/book-node-export-html.tpl.php @ 8a8efa8

stableversion-3.0
Last change on this file since 8a8efa8 was b354002, checked in by José Gregorio Puentes <jpuentes@…>, 8 años ago

se agrego el directorio del cord

  • Propiedad mode establecida a 100755
File size: 704 octetos
Línea 
1<?php
2
3/**
4 * @file book-node-export-html.tpl.php
5 * Default theme implementation for rendering a single node in a printer
6 * friendly outline.
7 *
8 * @see book-node-export-html.tpl.php
9 * Where it is collected and printed out.
10 *
11 * Available variables:
12 * - $depth: Depth of the current node inside the outline.
13 * - $title: Node title.
14 * - $content: Node content.
15 * - $children: All the child nodes recursively rendered through this file.
16 *
17 * @see template_preprocess_book_node_export_html()
18 */
19?>
20<div id="node-<?php print $node->nid; ?>" class="section-<?php print $depth; ?>">
21  <h1 class="book-heading"><?php print $title; ?></h1>
22  <?php print $content; ?>
23  <?php print $children; ?>
24</div>
Nota: Vea TracBrowser para ayuda de uso del navegador del repositorio.