drupal_theme__fg_lemontwist/template.php
root 77eb1b688f Node theme: i18n, layout
- new clear-block class on whole-node <div>
- margin/padding applied to "submitted info
- taxonomy wrapper not translatable
2010-06-02 17:33:55 +02:00

16 lines
299 B
PHP

<?php
// $Id$
/**
* @file
* Preprocess for sub-theme
*/
/**
* Preprocess for theme_node().
*
* @param array $variables
* @return void
*/
function fg_lemontwist_preprocess_node($variables) {
$variables['terms_wrapped'] = t('Published in:!terms', array('!terms' => $variables['terms']));
}