summaryrefslogtreecommitdiff
path: root/node.tpl.php
blob: 692f55fd8779b8fc63ccf17c3de8f3f2dd9f76fa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<div id="node-<?php print $node->nid; ?>" class="<?php print $classes; ?>"<?php print $attributes; ?>>
<div class="b2-post">
    <div class="b2-post-body">
<div class="b2-post-inner b2-article">
<h2 class="b2-postheader"<?php print $title_attributes; ?>><?php print render($title_prefix); ?>
<?php echo nuvemdario_node_title_output($title, $node_url, $page); ?>
<?php print render($title_suffix); ?>
</h2>
<?php if ($display_submitted): ?>
<div class="b2-postheadericons b2-metadata-icons">
<?php echo nuvemdario_submitted_worker($date, $name); ?>

</div>
<?php endif; ?>
<div class="b2-postcontent">
<?php
      // We hide the comments and links now so that we can render them later.
      hide($content['comments']);
      hide($content['links']);
      $terms = nuvemdario_get_terms_D7($content);
      hide($content[$terms['#field_name']]);
      print render($content);
    ?>

</div>
<div class="cleared"></div>
<?php print $user_picture; ?>
<?php if (isset($content['links']) || isset($content['comments'])):
$output = nuvemdario_links_woker_D7($content);
if (!empty($output)):	?>
<div class="b2-postfootericons b2-metadata-icons">
<?php echo $output; ?>

</div>
<?php endif; endif; ?>

</div>

		<div class="cleared"></div>
    </div>
</div>

<?php
	$vars = get_defined_vars();
	$view = get_nuvemdario_drupal_view();
	$view->print_comment_node($vars);
?>
</div>