You are here

recipe_html_node.tpl.php in Recipe 7.2

Default theme implementation for html version of recipe nodes.

File

modules/recipe_html_node.tpl.php
View source
<?php

/**
 * @file
 * Default theme implementation for html version of recipe nodes.
 */
?>
<!DOCTYPE html>
<html>
  <head>
    <title><?php

print $title;
?></title>
    <?php

print $styles;
?>
  </head>
  <body>
    <h2><?php

print $title;
?></h2>
    <hr/>
    <?php

print $contents;
?>
  </body>
</html>