| Commit | Line | Data |
|---|---|---|
| ec88d6b4 MW |
1 | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> |
| 2 | <html xmlns="http://www.w3.org/1999/xhtml" lang="<?php print $node->language; ?>" xml:lang="<?php print $node->language; ?>"> | |
| 3 | ||
| 4 | <head> | |
| 5 | <title><?php print $node->title; ?></title> | |
| 6 | <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> | |
| 7 | <base href="<?php print $base_url ?>/" /> | |
| 8 | <style type="text/css"> | |
| 88a64312 | 9 | @import url(<?php print $node->printcss; ?>); |
| ec88d6b4 MW |
10 | </style> |
| 11 | </head> | |
| 12 | <body> | |
| 13 | ||
| 88a64312 | 14 | <?php theme_get_setting('logo') ? print '<img src="'.theme_get_setting('logo').'" alt="logo" border="0" />' : '';?> |
| 15 | ||
| 16 | <div class="source_url"> | |
| 17 | <?php variable_get('site_name', 0) && print t('Published on').' '.variable_get('site_name', 0).' ('.l($base_url,'').')'; ?> | |
| 18 | </div> | |
| 19 | ||
| 20 | <h2 class="title"> | |
| ec88d6b4 | 21 | <?php print $node->title; ?> |
| 88a64312 | 22 | </h2> |
| ec88d6b4 MW |
23 | |
| 24 | <div class="submitted"> | |
| 88a64312 | 25 | <?php print theme_get_setting("toggle_node_info_$node->type") ? t('By').' '.$node->name : ''; ?> |
| ec88d6b4 MW |
26 | </div> |
| 27 | ||
| 28 | <div class="created"> | |
| 88a64312 | 29 | <?php print theme_get_setting("toggle_node_info_$node->type") ? t('Created').' '.format_date($node->created, 'small') : '' ?> |
| ec88d6b4 MW |
30 | </div> |
| 31 | ||
| 32 | <div class="content"> | |
| 33 | <?php print $node->body; ?> | |
| 34 | </div> | |
| 35 | ||
| 88a64312 | 36 | <hr size="1" noshade> |
| ec88d6b4 MW |
37 | |
| 38 | <div class="source_url"> | |
| 983afcc1 | 39 | <?php print '<strong>'.t('Source URL:').'</strong><br><a href="'.$node->source_url.'">'.$node->source_url.'</a>'?> |
| 88a64312 | 40 | </div> |
| 41 | ||
| 42 | <div class="pfp-links"> | |
| 43 | <!-- Output printer friendly links --> | |
| 44 | <?php $node->pfp_links ? print '<p class="links"><strong>'.t('Links:').'</strong><br>'.$node->pfp_links.'</p>' : ''; ?> | |
| ec88d6b4 MW |
45 | </div> |
| 46 | ||
| 47 | <div class="footer"> | |
| 48 | <!-- Add your custom footer here. --> | |
| 49 | </div> | |
| 50 | ||
| 51 | </body> | |
| 52 | </html> |