recipe_html_node.tpl.php in Recipe 7
Default theme implementation for html version of recipe nodes.
File
includes/recipe_html_node.tpl.phpView 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>