27 lines
948 B
PHP
27 lines
948 B
PHP
<?php
|
|
/**
|
|
* admin: A very limited theme with almost no features, to maximize screen real estate
|
|
*
|
|
* @version $Id: node.tpl.php,v 1.1 2007-08-20 19:43:07 marand Exp $
|
|
* @copyright 2006-2007 OSI
|
|
* @license CeCILL 2.0
|
|
*/
|
|
?><div style="background-color: <?php print variable_get('admin_background', 'transparent'); ?> ! important" class="node<?php print ($sticky) ? " sticky" : ""; ?>">
|
|
<?php if ($page == 0): ?>
|
|
<h2><a href="<?php print $node_url ?>" title="<?php print $title ?>"><?php print $title ?></a></h2>
|
|
<?php endif; ?>
|
|
<?php print $picture ?>
|
|
<div class="info"><?php print $submitted ?></div>
|
|
<div class="content">
|
|
<?php print $content ?>
|
|
</div>
|
|
<?php if ($links): ?>
|
|
<?php if ($picture): ?>
|
|
<br class='clear' />
|
|
<?php endif; ?>
|
|
<div class="links"><?php print $links ?></div>
|
|
<?php endif; ?>
|
|
<?php if ($terms): ?>
|
|
<div class="terms">( categories: <?php print $terms ?> )</div>
|
|
<?php endif; ?>
|
|
</div>
|