| 1 |
<?php
|
| 2 |
// $Id$
|
| 3 |
?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
|
| 4 |
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
| 5 |
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php print $language->language ?>" lang="<?php print $language->language ?>" dir="<?php print $language->dir ?>">
|
| 6 |
|
| 7 |
<head>
|
| 8 |
<title><?php print $head_title ?></title>
|
| 9 |
<?php print $head ?>
|
| 10 |
<?php print $styles ?>
|
| 11 |
<?php print $scripts ?>
|
| 12 |
</head>
|
| 13 |
|
| 14 |
<body<?php print phptemplate_body_class(); ?>>
|
| 15 |
<div id="wrapper">
|
| 16 |
<div id="header">
|
| 17 |
<div id="header-image">
|
| 18 |
<img alt="Header image" src="<?php print url(theme_get_setting('tarski_header_image')); ?>" />
|
| 19 |
</div>
|
| 20 |
|
| 21 |
<div id="title">
|
| 22 |
<p id="blog-title"><?php print $site_name; ?></p>
|
| 23 |
<?php if ($site_slogan) { ?>
|
| 24 |
<p id="tagline"><?php print $site_slogan; ?></p>
|
| 25 |
<?php } ?>
|
| 26 |
</div>
|
| 27 |
|
| 28 |
<div id="navigation">
|
| 29 |
<?php if (isset($primary_links)) : ?>
|
| 30 |
<?php print theme('links', $primary_links, array('class' => 'primary xoxo')) ?>
|
| 31 |
<?php endif; ?>
|
| 32 |
|
| 33 |
<div class="secondary">
|
| 34 |
<p><a class="feed" href="http://ceejayoz.com/feed/">Subscribe to feed</a></p>
|
| 35 |
</div>
|
| 36 |
</div>
|
| 37 |
|
| 38 |
<?php if ($breadcrumb): print '<p class="articlenav primary-span">'. $breadcrumb .'</p>'; endif; ?>
|
| 39 |
</div>
|
| 40 |
|
| 41 |
<div id="content">
|
| 42 |
<div class="primary posts">
|
| 43 |
<?php if ($tabs): print '<div id="tabs-wrapper" class="clear-block">'; endif; ?>
|
| 44 |
<?php if ($title): print '<h2 class="title entry-title">'. $title .'</h2>'; endif; ?>
|
| 45 |
<?php if ($tabs): print '<ul class="tabs primary">'. $tabs .'</ul></div>'; endif; ?>
|
| 46 |
<?php if ($tabs2): print '<ul class="tabs secondary">'. $tabs2 .'</ul>'; endif; ?>
|
| 47 |
<?php if ($show_messages && $messages): print $messages; endif; ?>
|
| 48 |
<?php print $help; ?>
|
| 49 |
|
| 50 |
<?php print $content; ?>
|
| 51 |
|
| 52 |
<p class="pagination"><a href="http://ceejayoz.com/page/2/">« Older entries</a></p>
|
| 53 |
</div>
|
| 54 |
|
| 55 |
<div id="sidebar" class="secondary">
|
| 56 |
<?php print $left ?>
|
| 57 |
</div>
|
| 58 |
</div> <!-- /main content -->
|
| 59 |
|
| 60 |
<div id="footer">
|
| 61 |
<div class="secondary">
|
| 62 |
<div id="search" class="widget tarski_widget_search">
|
| 63 |
<div class="searchbox">
|
| 64 |
<?php print $search_box; ?>
|
| 65 |
</div>
|
| 66 |
</div>
|
| 67 |
</div> <!-- /secondary -->
|
| 68 |
|
| 69 |
<div class="primary">
|
| 70 |
<?php print $footer_message . $footer ?>
|
| 71 |
</div> <!-- /primary -->
|
| 72 |
|
| 73 |
<div id="theme-info">
|
| 74 |
<div class="secondary">
|
| 75 |
<?php print $feed_icons ?>
|
| 76 |
</div>
|
| 77 |
|
| 78 |
<div class="primary content">
|
| 79 |
<p>Powered by <a href="http://drupal.org/">Drupal</a> and <a href="http://tarskitheme.com/">Tarski</a></p>
|
| 80 |
</div>
|
| 81 |
</div> <!-- /theme-info -->
|
| 82 |
|
| 83 |
</div> <!-- /footer -->
|
| 84 |
</div>
|
| 85 |
</body>
|
| 86 |
</html>
|