summaryrefslogtreecommitdiff
path: root/sites/brdo.brontosaurus.cz.mrp/themes/mrp/templates/node.tpl.php
diff options
context:
space:
mode:
Diffstat (limited to 'sites/brdo.brontosaurus.cz.mrp/themes/mrp/templates/node.tpl.php')
-rw-r--r--sites/brdo.brontosaurus.cz.mrp/themes/mrp/templates/node.tpl.php43
1 files changed, 0 insertions, 43 deletions
diff --git a/sites/brdo.brontosaurus.cz.mrp/themes/mrp/templates/node.tpl.php b/sites/brdo.brontosaurus.cz.mrp/themes/mrp/templates/node.tpl.php
deleted file mode 100644
index b96ee146f..000000000
--- a/sites/brdo.brontosaurus.cz.mrp/themes/mrp/templates/node.tpl.php
+++ /dev/null
@@ -1,43 +0,0 @@
-<?php
-/**
- * @file
- * Returns the HTML for a node.
- *
- * Complete documentation for this file is available online.
- * @see https://drupal.org/node/1728164
- */
-?>
-<article class="node-<?php print $node->nid; ?> <?php print $classes; ?> clearfix"<?php print $attributes; ?>>
-
- <?php if ($title_prefix || $title_suffix || $display_submitted || $unpublished || !$page && $title): ?>
- <header>
- <?php print render($title_prefix); ?>
- <?php if (!$page && $title): ?>
- <h2<?php print $title_attributes; ?>><a href="<?php print $node_url; ?>"><?php print $title; ?></a></h2>
- <?php endif; ?>
- <?php print render($title_suffix); ?>
-
- <?php if ($display_submitted): ?>
- <p class="submitted">
- <?php print $user_picture; ?>
- <?php print $submitted; ?>
- </p>
- <?php endif; ?>
- <?php if ($unpublished): ?>
- <mark class="unpublished"><?php print t('Unpublished'); ?></mark>
- <?php endif; ?>
- </header>
- <?php endif; ?>
-
- <?php
- // We hide the comments and links now so that we can render them later.
- hide($content['comments']);
- hide($content['links']);
- print render($content);
- ?>
-
- <?php print render($content['links']); ?>
-
- <?php print render($content['comments']); ?>
-
-</article>