summaryrefslogtreecommitdiff
path: root/node.tpl.php
diff options
context:
space:
mode:
authorbboldi <bboldi@gmail.com>2011-09-13 12:08:50 +0200
committerbboldi <bboldi@gmail.com>2011-09-13 12:08:50 +0200
commit9438279fd24e0309abd1f78a9442b149f7bd6bef (patch)
tree77d5495a6e2d94f625f9d23c5e2dcd26af2d1819 /node.tpl.php
downloadnuvemdario-9438279fd24e0309abd1f78a9442b149f7bd6bef.tar.gz
nuvemdario-9438279fd24e0309abd1f78a9442b149f7bd6bef.tar.bz2
Initial commit.
Diffstat (limited to 'node.tpl.php')
-rw-r--r--node.tpl.php48
1 files changed, 48 insertions, 0 deletions
diff --git a/node.tpl.php b/node.tpl.php
new file mode 100644
index 0000000..f4c0fed
--- /dev/null
+++ b/node.tpl.php
@@ -0,0 +1,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 art_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 art_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 = 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 = art_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_artx_drupal_view();
+ $view->print_comment_node($vars);
+?>
+</div> \ No newline at end of file