-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnode.tpl.php
executable file
·35 lines (27 loc) · 973 Bytes
/
node.tpl.php
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
<?php
// $Id: node.tpl.php,v 1.5 2007/10/11 09:51:29 goba Exp $
?>
<div id="node-<?php print $node->nid; ?>" class="node<?php if ($sticky) { print ' sticky'; } ?><?php if (!$status) { print ' node-unpublished'; } ?>">
<?php print $picture ?>
<?php if ($page == 0): ?>
<h2><a href="<?php print $node_url ?>" title="<?php print $title ?>"><?php print $title ?></a></h2>
<?php endif; ?>
<?php if ($submitted): ?>
<span class="submitted"><?php print t('By:') ?> <?php print $name ?></span>
<?php endif; ?>
<div class="date-block">
<span class="year"><?php print $year ?></span><br/>
<span class="day"><?php print $day ?></span><br/>
<span class="month"><?php print $month ?></span><br/>
</div>
<div class="clear-block">
<?php print $content ?>
</div>
<div class="clear-block">
<div class="meta">
</div>
<?php if ($links): ?>
<div class="links"><?php print $links; ?></div>
<?php endif; ?>
</div>
</div>