<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -1,27 +1,27 @@
-&lt;?php get_header(); ?&gt;
-
-
-
-&lt;div class=&quot;primary entry&quot;&gt;
-
-	&lt;div class=&quot;meta&quot;&gt;
-		&lt;h1 class=&quot;title&quot;&gt;&lt;?php _e('Error 404','tarski'); ?&gt;&lt;/h1&gt;
-	&lt;/div&gt;
-
-	&lt;div class=&quot;content&quot;&gt;
-		&lt;?php tarski_404_content(); ?&gt;
-	&lt;/div&gt;
-
-	&lt;?php th_postend(); ?&gt;
-
-&lt;/div&gt; &lt;!-- /primary --&gt;
-
-
-
-&lt;div class=&quot;secondary&quot;&gt;
-	&lt;?php tarski_searchform(); ?&gt;
-&lt;/div&gt;
-
-
-
+&lt;?php get_header(); ?&gt;
+
+
+
+&lt;div class=&quot;primary entry&quot;&gt;
+
+	&lt;div class=&quot;meta&quot;&gt;
+		&lt;h1 class=&quot;title&quot;&gt;&lt;?php _e('Error 404','tarski'); ?&gt;&lt;/h1&gt;
+	&lt;/div&gt;
+
+	&lt;div class=&quot;content&quot;&gt;
+		&lt;?php tarski_404_content(); ?&gt;
+	&lt;/div&gt;
+
+	&lt;?php th_postend(); ?&gt;
+
+&lt;/div&gt; &lt;!-- /primary --&gt;
+
+
+
+&lt;div class=&quot;secondary&quot;&gt;
+	&lt;?php tarski_searchform(); ?&gt;
+&lt;/div&gt;
+
+
+
 &lt;?php get_footer(); ?&gt;
\ No newline at end of file</diff>
      <filename>404.php</filename>
    </modified>
    <modified>
      <diff>@@ -1,90 +1,90 @@
-&lt;?php get_header(); ?&gt;
-
-
-
-&lt;div class=&quot;primary posts&quot;&gt;
-	&lt;?php if(have_posts()) { // Gets it all going ?&gt;
-
-		&lt;div class=&quot;archive&quot;&gt;
-			&lt;?php if(is_category()) { // Category header ?&gt;
-				&lt;div class=&quot;meta&quot;&gt;
-					&lt;h1&gt;&lt;?php echo single_cat_title(); ?&gt;&lt;/h1&gt;
-				&lt;/div&gt;
-				&lt;div class=&quot;content&quot;&gt;
-					&lt;?php if(trim(strip_tags(category_description()))) { ?&gt;
-						&lt;?php echo category_description(); ?&gt;
-					&lt;?php } else { ?&gt;
-						&lt;p&gt;&lt;?php printf( __('You are currently browsing the archive for the %s category.','tarski'), '&lt;strong&gt;' . single_cat_title('', false) . '&lt;/strong&gt;' ); ?&gt;&lt;/p&gt;
-					&lt;?php } ?&gt;
-				&lt;/div&gt;
-			
-			&lt;?php } elseif(is_tag()) { // Tag archive header ?&gt;
-
-				&lt;div class=&quot;meta&quot;&gt;
-					&lt;h1 class=&quot;title&quot;&gt;&lt;?php echo multiple_tag_titles(); ?&gt;&lt;/h1&gt;
-				&lt;/div&gt;
-				&lt;div class=&quot;content&quot;&gt;
-					&lt;p&gt;&lt;?php printf( __('You are currently browsing articles tagged %s.','tarski'), multiple_tag_titles('&lt;strong&gt;%s&lt;/strong&gt;') ); ?&gt;&lt;/p&gt;
-				&lt;/div&gt;
-					
-			&lt;?php } elseif(is_author()) { // Author header ?&gt;
-
-				&lt;div class=&quot;meta&quot;&gt;
-					&lt;h1 class=&quot;title&quot;&gt;&lt;?php printf( __('Articles by %s','tarski'), the_archive_author_displayname() ); ?&gt;&lt;/h1&gt;
-				&lt;/div&gt;
-				&lt;div class=&quot;content&quot;&gt;
-					&lt;?php if(the_archive_author_description()) { ?&gt;
-						&lt;?php echo wpautop(wptexturize(stripslashes(the_archive_author_description()))); ?&gt;
-					&lt;?php } else { ?&gt;
-						&lt;p&gt;&lt;?php printf( __('You are currently browsing %s&amp;#8217;s articles.','tarski'), '&lt;strong&gt;'. the_archive_author_displayname(). '&lt;/strong&gt;' ); ?&gt;&lt;/p&gt;
-					&lt;?php } ?&gt;
-				&lt;/div&gt;
-
-			&lt;?php } elseif(is_day()) { // Daily archive header ?&gt;
-
-				&lt;div class=&quot;meta&quot;&gt;
-					&lt;h1 class=&quot;title&quot;&gt;&lt;?php the_time(get_option('date_format')); ?&gt;&lt;/h1&gt;
-				&lt;/div&gt;
-				&lt;div class=&quot;content&quot;&gt;
-					&lt;p&gt;&lt;?php printf( __('You are currently browsing the daily archive for %s.','tarski'), '&lt;strong&gt;' . get_the_time(get_option('date_format')) . '&lt;/strong&gt;' ); ?&gt;&lt;/p&gt;
-				&lt;/div&gt;
-
-			&lt;?php } elseif(is_month()) { // Monthly archive header ?&gt;
-
-				&lt;div class=&quot;meta&quot;&gt;
-					&lt;h1 class=&quot;title&quot;&gt;&lt;?php the_time('F Y'); ?&gt;&lt;/h1&gt;
-				&lt;/div&gt;
-				&lt;div class=&quot;content&quot;&gt;
-					&lt;p&gt;&lt;?php printf( __('You are currently browsing the monthly archive for %s.','tarski'), '&lt;strong&gt;' . get_the_time('F Y') . '&lt;/strong&gt;' ); ?&gt;&lt;/p&gt;
-				&lt;/div&gt;
-
-			&lt;?php } elseif(is_year()) { // Yearly archive header ?&gt;
-
-				&lt;div class=&quot;meta&quot;&gt;
-					&lt;h1 class=&quot;title&quot;&gt;&lt;?php the_time('Y'); ?&gt;&lt;/h1&gt;
-				&lt;/div&gt;
-				&lt;div class=&quot;content&quot;&gt;
-					&lt;p&gt;&lt;?php printf( __('You are currently browsing the yearly archive for %s.','tarski'), '&lt;strong&gt;' . get_the_time('Y') . '&lt;/strong&gt;' ); ?&gt;&lt;/p&gt;
-				&lt;/div&gt;
-
-			&lt;?php } ?&gt;
-		&lt;/div&gt; &lt;!-- /archive --&gt;
-		
-		
-		&lt;?php include(TEMPLATEPATH.'/loop.php'); ?&gt;
-		
-		
-	&lt;?php } else { ?&gt;
-		
-		&lt;?php include(TARSKIDISPLAY . &quot;/no_posts.php&quot;); ?&gt;
-		
-	&lt;?php } // End if posts ?&gt;
-&lt;/div&gt; &lt;!-- /primary --&gt;
-
-
-
-&lt;?php get_sidebar(); ?&gt;
-
-
-
+&lt;?php get_header(); ?&gt;
+
+
+
+&lt;div class=&quot;primary posts&quot;&gt;
+	&lt;?php if(have_posts()) { // Gets it all going ?&gt;
+
+		&lt;div class=&quot;archive&quot;&gt;
+			&lt;?php if(is_category()) { // Category header ?&gt;
+				&lt;div class=&quot;meta&quot;&gt;
+					&lt;h1&gt;&lt;?php echo single_cat_title(); ?&gt;&lt;/h1&gt;
+				&lt;/div&gt;
+				&lt;div class=&quot;content&quot;&gt;
+					&lt;?php if(trim(strip_tags(category_description()))) { ?&gt;
+						&lt;?php echo category_description(); ?&gt;
+					&lt;?php } else { ?&gt;
+						&lt;p&gt;&lt;?php printf( __('You are currently browsing the archive for the %s category.','tarski'), '&lt;strong&gt;' . single_cat_title('', false) . '&lt;/strong&gt;' ); ?&gt;&lt;/p&gt;
+					&lt;?php } ?&gt;
+				&lt;/div&gt;
+			
+			&lt;?php } elseif(is_tag()) { // Tag archive header ?&gt;
+
+				&lt;div class=&quot;meta&quot;&gt;
+					&lt;h1 class=&quot;title&quot;&gt;&lt;?php echo multiple_tag_titles(); ?&gt;&lt;/h1&gt;
+				&lt;/div&gt;
+				&lt;div class=&quot;content&quot;&gt;
+					&lt;p&gt;&lt;?php printf( __('You are currently browsing articles tagged %s.','tarski'), multiple_tag_titles('&lt;strong&gt;%s&lt;/strong&gt;') ); ?&gt;&lt;/p&gt;
+				&lt;/div&gt;
+					
+			&lt;?php } elseif(is_author()) { // Author header ?&gt;
+
+				&lt;div class=&quot;meta&quot;&gt;
+					&lt;h1 class=&quot;title&quot;&gt;&lt;?php printf( __('Articles by %s','tarski'), the_archive_author_displayname() ); ?&gt;&lt;/h1&gt;
+				&lt;/div&gt;
+				&lt;div class=&quot;content&quot;&gt;
+					&lt;?php if(the_archive_author_description()) { ?&gt;
+						&lt;?php echo wpautop(wptexturize(stripslashes(the_archive_author_description()))); ?&gt;
+					&lt;?php } else { ?&gt;
+						&lt;p&gt;&lt;?php printf( __('You are currently browsing %s&amp;#8217;s articles.','tarski'), '&lt;strong&gt;'. the_archive_author_displayname(). '&lt;/strong&gt;' ); ?&gt;&lt;/p&gt;
+					&lt;?php } ?&gt;
+				&lt;/div&gt;
+
+			&lt;?php } elseif(is_day()) { // Daily archive header ?&gt;
+
+				&lt;div class=&quot;meta&quot;&gt;
+					&lt;h1 class=&quot;title&quot;&gt;&lt;?php the_time(get_option('date_format')); ?&gt;&lt;/h1&gt;
+				&lt;/div&gt;
+				&lt;div class=&quot;content&quot;&gt;
+					&lt;p&gt;&lt;?php printf( __('You are currently browsing the daily archive for %s.','tarski'), '&lt;strong&gt;' . get_the_time(get_option('date_format')) . '&lt;/strong&gt;' ); ?&gt;&lt;/p&gt;
+				&lt;/div&gt;
+
+			&lt;?php } elseif(is_month()) { // Monthly archive header ?&gt;
+
+				&lt;div class=&quot;meta&quot;&gt;
+					&lt;h1 class=&quot;title&quot;&gt;&lt;?php the_time('F Y'); ?&gt;&lt;/h1&gt;
+				&lt;/div&gt;
+				&lt;div class=&quot;content&quot;&gt;
+					&lt;p&gt;&lt;?php printf( __('You are currently browsing the monthly archive for %s.','tarski'), '&lt;strong&gt;' . get_the_time('F Y') . '&lt;/strong&gt;' ); ?&gt;&lt;/p&gt;
+				&lt;/div&gt;
+
+			&lt;?php } elseif(is_year()) { // Yearly archive header ?&gt;
+
+				&lt;div class=&quot;meta&quot;&gt;
+					&lt;h1 class=&quot;title&quot;&gt;&lt;?php the_time('Y'); ?&gt;&lt;/h1&gt;
+				&lt;/div&gt;
+				&lt;div class=&quot;content&quot;&gt;
+					&lt;p&gt;&lt;?php printf( __('You are currently browsing the yearly archive for %s.','tarski'), '&lt;strong&gt;' . get_the_time('Y') . '&lt;/strong&gt;' ); ?&gt;&lt;/p&gt;
+				&lt;/div&gt;
+
+			&lt;?php } ?&gt;
+		&lt;/div&gt; &lt;!-- /archive --&gt;
+		
+		
+		&lt;?php include(TEMPLATEPATH.'/loop.php'); ?&gt;
+		
+		
+	&lt;?php } else { ?&gt;
+		
+		&lt;?php include(TARSKIDISPLAY . &quot;/no_posts.php&quot;); ?&gt;
+		
+	&lt;?php } // End if posts ?&gt;
+&lt;/div&gt; &lt;!-- /primary --&gt;
+
+
+
+&lt;?php get_sidebar(); ?&gt;
+
+
+
 &lt;?php get_footer(); ?&gt;
\ No newline at end of file</diff>
      <filename>archive.php</filename>
    </modified>
    <modified>
      <diff>@@ -1,46 +1,46 @@
-&lt;?php
-/*
-Template Name: Archives
-*/
-
-get_header(); ?&gt;
-
-
-
-&lt;?php if (have_posts()) { while (have_posts()) { the_post(); ?&gt;
-	&lt;div class=&quot;primary-span entry&quot;&gt;
-		&lt;div class=&quot;meta&quot;&gt;
-			&lt;h1 class=&quot;title&quot;&gt;&lt;?php the_title(); ?&gt;&lt;/h1&gt;
-			&lt;?php edit_post_link(__('edit page','tarski'), '&lt;p class=&quot;metadata&quot;&gt;(', ')&lt;/p&gt;'); ?&gt;
-		&lt;/div&gt; &lt;!-- /meta --&gt;
-		
-	&lt;?php if(get_the_content() != &quot;&quot;) { ?&gt;
-		&lt;div class=&quot;content&quot;&gt;
-			&lt;?php the_content(); ?&gt;
-		&lt;/div&gt; &lt;!-- /content --&gt;
-	&lt;?php } ?&gt;
-	&lt;/div&gt; &lt;!-- /page header --&gt;
-
-	&lt;div class=&quot;primary&quot;&gt;
-		&lt;h3&gt;&lt;?php _e('Monthly Archives', 'tarski'); ?&gt;&lt;/h3&gt;
-
-		&lt;ul class=&quot;archivelist xoxo&quot;&gt;
-			&lt;?php wp_get_archives(array('type' =&gt; 'monthly', 'show_post_count' =&gt; true)); ?&gt;
-		&lt;/ul&gt;
-		&lt;?php th_postend(); ?&gt;
-	&lt;/div&gt; &lt;!-- /primary --&gt;
-&lt;?php } } ?&gt;
-
-	&lt;div class=&quot;secondary&quot;&gt;
-	&lt;?php if(get_tarski_option('show_categories')) { ?&gt;
-		&lt;h3&gt;&lt;?php _e('Category Archives', 'tarski'); ?&gt;&lt;/h3&gt;
-		&lt;ul class=&quot;archivelist xoxo&quot;&gt;
-			&lt;?php wp_list_categories(array('order' =&gt; 'DESC', 'title_li' =&gt; false)); ?&gt;
-		&lt;/ul&gt;
-	&lt;?php } ?&gt;
-	&lt;?php th_sidebar(); ?&gt;
-	&lt;/div&gt; &lt;!-- /secondary --&gt;
-	
-	
-
+&lt;?php
+/*
+Template Name: Archives
+*/
+
+get_header(); ?&gt;
+
+
+
+&lt;?php if (have_posts()) { while (have_posts()) { the_post(); ?&gt;
+	&lt;div class=&quot;primary-span entry&quot;&gt;
+		&lt;div class=&quot;meta&quot;&gt;
+			&lt;h1 class=&quot;title&quot;&gt;&lt;?php the_title(); ?&gt;&lt;/h1&gt;
+			&lt;?php edit_post_link(__('edit page','tarski'), '&lt;p class=&quot;metadata&quot;&gt;(', ')&lt;/p&gt;'); ?&gt;
+		&lt;/div&gt; &lt;!-- /meta --&gt;
+		
+	&lt;?php if(get_the_content() != &quot;&quot;) { ?&gt;
+		&lt;div class=&quot;content&quot;&gt;
+			&lt;?php the_content(); ?&gt;
+		&lt;/div&gt; &lt;!-- /content --&gt;
+	&lt;?php } ?&gt;
+	&lt;/div&gt; &lt;!-- /page header --&gt;
+
+	&lt;div class=&quot;primary&quot;&gt;
+		&lt;h3&gt;&lt;?php _e('Monthly Archives', 'tarski'); ?&gt;&lt;/h3&gt;
+
+		&lt;ul class=&quot;archivelist xoxo&quot;&gt;
+			&lt;?php wp_get_archives(array('type' =&gt; 'monthly', 'show_post_count' =&gt; true)); ?&gt;
+		&lt;/ul&gt;
+		&lt;?php th_postend(); ?&gt;
+	&lt;/div&gt; &lt;!-- /primary --&gt;
+&lt;?php } } ?&gt;
+
+	&lt;div class=&quot;secondary&quot;&gt;
+	&lt;?php if(get_tarski_option('show_categories')) { ?&gt;
+		&lt;h3&gt;&lt;?php _e('Category Archives', 'tarski'); ?&gt;&lt;/h3&gt;
+		&lt;ul class=&quot;archivelist xoxo&quot;&gt;
+			&lt;?php wp_list_categories(array('order' =&gt; 'DESC', 'title_li' =&gt; false)); ?&gt;
+		&lt;/ul&gt;
+	&lt;?php } ?&gt;
+	&lt;?php th_sidebar(); ?&gt;
+	&lt;/div&gt; &lt;!-- /secondary --&gt;
+	
+	
+
 &lt;?php get_footer(); ?&gt;
\ No newline at end of file</diff>
      <filename>archives.php</filename>
    </modified>
    <modified>
      <diff>@@ -1,27 +1,27 @@
-&lt;/div&gt; &lt;!-- /main content --&gt;
-
-
-
-&lt;div id=&quot;footer&quot; class=&quot;clearfix&quot;&gt;
-	
-	&lt;div class=&quot;secondary&quot;&gt;
-		
-		&lt;?php th_fsidebar(); ?&gt;
-		
-	&lt;/div&gt; &lt;!-- /secondary --&gt;
-	
-	&lt;div class=&quot;primary&quot;&gt;
-		
-		&lt;?php th_fmain(); ?&gt;
-		
-	&lt;/div&gt; &lt;!-- /primary --&gt;
-	
-	&lt;div id=&quot;theme-info&quot; class=&quot;clearfix&quot;&gt;
-		
-		&lt;?php th_footer(); ?&gt;
-		
-	&lt;/div&gt; &lt;!-- /theme-info --&gt;
-	
-&lt;/div&gt; &lt;!-- /footer --&gt;
-
+&lt;/div&gt; &lt;!-- /main content --&gt;
+
+
+
+&lt;div id=&quot;footer&quot; class=&quot;clearfix&quot;&gt;
+	
+	&lt;div class=&quot;secondary&quot;&gt;
+		
+		&lt;?php th_fsidebar(); ?&gt;
+		
+	&lt;/div&gt; &lt;!-- /secondary --&gt;
+	
+	&lt;div class=&quot;primary&quot;&gt;
+		
+		&lt;?php th_fmain(); ?&gt;
+		
+	&lt;/div&gt; &lt;!-- /primary --&gt;
+	
+	&lt;div id=&quot;theme-info&quot; class=&quot;clearfix&quot;&gt;
+		
+		&lt;?php th_footer(); ?&gt;
+		
+	&lt;/div&gt; &lt;!-- /theme-info --&gt;
+	
+&lt;/div&gt; &lt;!-- /footer --&gt;
+
 &lt;/div&gt;&lt;?php wp_footer(); ?&gt;&lt;/body&gt;&lt;/html&gt;
\ No newline at end of file</diff>
      <filename>footer.php</filename>
    </modified>
    <modified>
      <diff>@@ -1,96 +1,96 @@
-&lt;?php
-/**
- * @package WordPress
- * @subpackage Tarski
- */
-
-/**
- * Tarski's constants.
- * 
- * These mostly provide convenient aliases for filesystem paths. Tarski's many
- * files live in a number of directories (the main ones being /app and
- * /library), so keeping includes simple is greatly helped by a sane set of
- * path constants. The one exception is TARSKIVERSIONFILE, which defines the
- * URL of the update notifier.
- * 
- * @see TarskiVersion
- * @link http://tarskitheme.com/help/updates/notifier/
- */
-define('TARSKICLASSES', TEMPLATEPATH . '/library/classes');
-define('TARSKIHELPERS', TEMPLATEPATH . '/library/helpers');
-define('TARSKIDISPLAY', TEMPLATEPATH . '/app/templates');
-define('TARSKICACHE', WP_CONTENT_DIR . '/tarski');
-define('TARSKIVERSIONFILE', 'http://tarskitheme.com/version.atom');
-
-/**
- * Core library files.
- * 
- * These files will be loaded whenever WordPress is. They include a few key
- * functions, and the core classes that Tarski requires to load its options,
- * add dependencies to document heads, and output comments.
- * 
- * @see Options
- * @see Asset
- * @see TarskiCommentWalker
- */
-require_once(TEMPLATEPATH . '/library/core.php');
-require_once(TARSKICLASSES . '/options.php');
-require_once(TARSKICLASSES . '/asset.php');
-require_once(TARSKICLASSES . '/comment_walker.php');
-
-/**
- * Admin library files.
- * 
- * These library files are required for Tarski's administrative functions:
- * notifying the user about updates, selecting pages to add to the navbar,
- * defining the options page parameters, and so on. They are loaded only on
- * when a WordPress admin page is accessed, so as to reduce the load on the
- * server.
- * 
- * @see TarskiVersion
- * @see WalkerPageSelect
- */
-if (is_admin()) {
-	require_once(TARSKICLASSES . '/version.php');
-	require_once(TARSKICLASSES . '/page_select.php');
-	require_once(TARSKIHELPERS . '/admin_helper.php');
-}
-
-/**
- * Templating libraries.
- * 
- * As a theme, particularly given its complexity and multiplicity of options,
- * Tarski needs a lot of templating functions. There is an ongoing effort to
- * split functions up into logical groups spread across more and smaller files,
- * so that each grouping remains comprehensible and each function easy to find.
- */
-require_once(TARSKIHELPERS . '/template_helper.php');
-require_once(TARSKIHELPERS . '/content_helper.php');
-require_once(TARSKIHELPERS . '/comments_helper.php');
-require_once(TARSKIHELPERS . '/author_helper.php');
-require_once(TARSKIHELPERS . '/tag_helper.php');
-require_once(TARSKIHELPERS . '/widgets.php');
-
-/**
- * API files.
- * 
- * Tarski's API is actually spread across much of the library files required
- * above, but certain pieces of functionality such as generic template hooks,
- * legacy API handlers, and deprecated functions, all live in specialised API
- * files where they can be easily found and documented.
- */
-require_once(TEMPLATEPATH . '/app/api/hooks.php');
-require_once(TEMPLATEPATH . '/app/api/constants_helper.php');
-include_once(TEMPLATEPATH . '/app/api/deprecated.php');
-
-/**
- * Launcher.
- * 
- * The launcher file makes an inital round of function calls, loading any
- * available localisation files, defining several constants which WordPress
- * requires, registering widget sidebars, and adding numerous actions and
- * filters.
- */
-require_once(TEMPLATEPATH . '/app/launcher.php');
-
+&lt;?php
+/**
+ * @package WordPress
+ * @subpackage Tarski
+ */
+
+/**
+ * Tarski's constants.
+ * 
+ * These mostly provide convenient aliases for filesystem paths. Tarski's many
+ * files live in a number of directories (the main ones being /app and
+ * /library), so keeping includes simple is greatly helped by a sane set of
+ * path constants. The one exception is TARSKIVERSIONFILE, which defines the
+ * URL of the update notifier.
+ * 
+ * @see TarskiVersion
+ * @link http://tarskitheme.com/help/updates/notifier/
+ */
+define('TARSKICLASSES', TEMPLATEPATH . '/library/classes');
+define('TARSKIHELPERS', TEMPLATEPATH . '/library/helpers');
+define('TARSKIDISPLAY', TEMPLATEPATH . '/app/templates');
+define('TARSKICACHE', WP_CONTENT_DIR . '/tarski');
+define('TARSKIVERSIONFILE', 'http://tarskitheme.com/version.atom');
+
+/**
+ * Core library files.
+ * 
+ * These files will be loaded whenever WordPress is. They include a few key
+ * functions, and the core classes that Tarski requires to load its options,
+ * add dependencies to document heads, and output comments.
+ * 
+ * @see Options
+ * @see Asset
+ * @see TarskiCommentWalker
+ */
+require_once(TEMPLATEPATH . '/library/core.php');
+require_once(TARSKICLASSES . '/options.php');
+require_once(TARSKICLASSES . '/asset.php');
+require_once(TARSKICLASSES . '/comment_walker.php');
+
+/**
+ * Admin library files.
+ * 
+ * These library files are required for Tarski's administrative functions:
+ * notifying the user about updates, selecting pages to add to the navbar,
+ * defining the options page parameters, and so on. They are loaded only on
+ * when a WordPress admin page is accessed, so as to reduce the load on the
+ * server.
+ * 
+ * @see TarskiVersion
+ * @see WalkerPageSelect
+ */
+if (is_admin()) {
+	require_once(TARSKICLASSES . '/version.php');
+	require_once(TARSKICLASSES . '/page_select.php');
+	require_once(TARSKIHELPERS . '/admin_helper.php');
+}
+
+/**
+ * Templating libraries.
+ * 
+ * As a theme, particularly given its complexity and multiplicity of options,
+ * Tarski needs a lot of templating functions. There is an ongoing effort to
+ * split functions up into logical groups spread across more and smaller files,
+ * so that each grouping remains comprehensible and each function easy to find.
+ */
+require_once(TARSKIHELPERS . '/template_helper.php');
+require_once(TARSKIHELPERS . '/content_helper.php');
+require_once(TARSKIHELPERS . '/comments_helper.php');
+require_once(TARSKIHELPERS . '/author_helper.php');
+require_once(TARSKIHELPERS . '/tag_helper.php');
+require_once(TARSKIHELPERS . '/widgets.php');
+
+/**
+ * API files.
+ * 
+ * Tarski's API is actually spread across much of the library files required
+ * above, but certain pieces of functionality such as generic template hooks,
+ * legacy API handlers, and deprecated functions, all live in specialised API
+ * files where they can be easily found and documented.
+ */
+require_once(TEMPLATEPATH . '/app/api/hooks.php');
+require_once(TEMPLATEPATH . '/app/api/constants_helper.php');
+include_once(TEMPLATEPATH . '/app/api/deprecated.php');
+
+/**
+ * Launcher.
+ * 
+ * The launcher file makes an inital round of function calls, loading any
+ * available localisation files, defining several constants which WordPress
+ * requires, registering widget sidebars, and adding numerous actions and
+ * filters.
+ */
+require_once(TEMPLATEPATH . '/app/launcher.php');
+
 ?&gt;
\ No newline at end of file</diff>
      <filename>functions.php</filename>
    </modified>
    <modified>
      <diff>@@ -1,19 +1,19 @@
-&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Strict//EN&quot; &quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd&quot;&gt;
-&lt;html xmlns=&quot;http://www.w3.org/1999/xhtml&quot; &lt;?php language_attributes('xhtml'); ?&gt;&gt;
-
-&lt;head profile=&quot;http://gmpg.org/xfn/11&quot;&gt;&lt;title&gt;&lt;?php echo tarski_doctitle(); ?&gt;&lt;/title&gt;
-
-	&lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;&lt;?php echo get_bloginfo('html_type') .'; charset=' . get_bloginfo('charset'); ?&gt;&quot; /&gt;	
-	&lt;?php wp_head(); ?&gt;
-
-&lt;/head&gt;
-
-&lt;body id=&quot;&lt;?php tarski_bodyid(); ?&gt;&quot; class=&quot;&lt;?php tarski_bodyclass(); ?&gt;&quot;&gt;&lt;div id=&quot;wrapper&quot;&gt;
-
-&lt;div id=&quot;header&quot;&gt;
-
-	&lt;?php th_header(); ?&gt;
-
-&lt;/div&gt;
-
+&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Strict//EN&quot; &quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd&quot;&gt;
+&lt;html xmlns=&quot;http://www.w3.org/1999/xhtml&quot; &lt;?php language_attributes('xhtml'); ?&gt;&gt;
+
+&lt;head profile=&quot;http://gmpg.org/xfn/11&quot;&gt;&lt;title&gt;&lt;?php echo tarski_doctitle(); ?&gt;&lt;/title&gt;
+
+	&lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;&lt;?php echo get_bloginfo('html_type') .'; charset=' . get_bloginfo('charset'); ?&gt;&quot; /&gt;	
+	&lt;?php wp_head(); ?&gt;
+
+&lt;/head&gt;
+
+&lt;body id=&quot;&lt;?php tarski_bodyid(); ?&gt;&quot; class=&quot;&lt;?php tarski_bodyclass(); ?&gt;&quot;&gt;&lt;div id=&quot;wrapper&quot;&gt;
+
+&lt;div id=&quot;header&quot;&gt;
+
+	&lt;?php th_header(); ?&gt;
+
+&lt;/div&gt;
+
 &lt;div id=&quot;content&quot; class=&quot;clearfix&quot;&gt;
\ No newline at end of file</diff>
      <filename>header.php</filename>
    </modified>
    <modified>
      <diff>@@ -1,62 +1,62 @@
-&lt;?php get_header(); ?&gt;
-
-&lt;div class=&quot;primary&lt;?php if (!(is_single() || is_page())) echo ' posts'; ?&gt;&quot;&gt;
-
-	&lt;?php if (have_posts()) { ?&gt;
-	
-		&lt;?php if (is_single() || is_page()) { // Single entries and pages ?&gt;
-		
-			&lt;?php while (have_posts()) { the_post(); ?&gt;
-				
-				&lt;div &lt;?php post_class('entry'); ?&gt;&gt;
-					
-					&lt;div class=&quot;meta&quot;&gt;
-						&lt;h1 class=&quot;title entry-title&quot;&gt;&lt;?php the_title(); ?&gt;&lt;/h1&gt;
-						&lt;?php if (is_attachment()) { ?&gt;
-							&lt;p class=&quot;metadata&quot;&gt;&lt;?php
-								echo '&lt;span class=&quot;date updated&quot;&gt;' . get_the_time(get_option('date_format')) . '&lt;/span&gt;';
-								edit_post_link(__('edit','tarski'),' &lt;span class=&quot;edit&quot;&gt;(',')&lt;/span&gt;');
-							?&gt;&lt;/p&gt;
-						&lt;?php } elseif (is_single()) { ?&gt;
-							&lt;p class=&quot;metadata&quot;&gt;&lt;?php
-								echo '&lt;span class=&quot;date updated&quot;&gt;' . get_the_time(get_option('date_format')) . '&lt;/span&gt;';
-								tarski_post_categories_link();
-								tarski_author_posts_link();
-								tarski_comments_link();
-								edit_post_link(__('edit','tarski'),' &lt;span class=&quot;edit&quot;&gt;(',')&lt;/span&gt;');
-							?&gt;&lt;/p&gt;
-						&lt;?php } else { ?&gt;
-							&lt;?php edit_post_link(__('edit page','tarski'), '&lt;p class=&quot;metadata&quot;&gt;&lt;span class=&quot;edit&quot;&gt;(', ')&lt;/span&gt;&lt;/p&gt;'); ?&gt;
-						&lt;?php } ?&gt;
-					&lt;/div&gt;
-					
-					&lt;div class=&quot;content&quot;&gt;
-						&lt;?php the_content(); ?&gt;
-					&lt;/div&gt;
-
-					&lt;?php th_postend(); ?&gt;
-					
-				&lt;/div&gt; &lt;!-- /entry --&gt;
-				
-			&lt;?php } // End entry loop ?&gt;
-	
-		&lt;?php } else { ?&gt;
-		
-			&lt;?php include(TEMPLATEPATH . '/loop.php'); ?&gt;
-
-		&lt;?php } // End loop types ?&gt;
-	
-	&lt;?php } else { // If no posts ?&gt;
-		
-		&lt;?php include(TARSKIDISPLAY . &quot;/no_posts.php&quot;); ?&gt;
-	
-	&lt;?php } // End loop ?&gt;
-
-
-	&lt;?php if (!is_attachment() &amp;&amp; (is_single() || is_page())) comments_template(); ?&gt;
-
-&lt;/div&gt;
-	
-&lt;?php get_sidebar(); ?&gt;
-
+&lt;?php get_header(); ?&gt;
+
+&lt;div class=&quot;primary&lt;?php if (!(is_single() || is_page())) echo ' posts'; ?&gt;&quot;&gt;
+
+	&lt;?php if (have_posts()) { ?&gt;
+	
+		&lt;?php if (is_single() || is_page()) { // Single entries and pages ?&gt;
+		
+			&lt;?php while (have_posts()) { the_post(); ?&gt;
+				
+				&lt;div &lt;?php post_class('entry'); ?&gt;&gt;
+					
+					&lt;div class=&quot;meta&quot;&gt;
+						&lt;h1 class=&quot;title entry-title&quot;&gt;&lt;?php the_title(); ?&gt;&lt;/h1&gt;
+						&lt;?php if (is_attachment()) { ?&gt;
+							&lt;p class=&quot;metadata&quot;&gt;&lt;?php
+								echo '&lt;span class=&quot;date updated&quot;&gt;' . get_the_time(get_option('date_format')) . '&lt;/span&gt;';
+								edit_post_link(__('edit','tarski'),' &lt;span class=&quot;edit&quot;&gt;(',')&lt;/span&gt;');
+							?&gt;&lt;/p&gt;
+						&lt;?php } elseif (is_single()) { ?&gt;
+							&lt;p class=&quot;metadata&quot;&gt;&lt;?php
+								echo '&lt;span class=&quot;date updated&quot;&gt;' . get_the_time(get_option('date_format')) . '&lt;/span&gt;';
+								tarski_post_categories_link();
+								tarski_author_posts_link();
+								tarski_comments_link();
+								edit_post_link(__('edit','tarski'),' &lt;span class=&quot;edit&quot;&gt;(',')&lt;/span&gt;');
+							?&gt;&lt;/p&gt;
+						&lt;?php } else { ?&gt;
+							&lt;?php edit_post_link(__('edit page','tarski'), '&lt;p class=&quot;metadata&quot;&gt;&lt;span class=&quot;edit&quot;&gt;(', ')&lt;/span&gt;&lt;/p&gt;'); ?&gt;
+						&lt;?php } ?&gt;
+					&lt;/div&gt;
+					
+					&lt;div class=&quot;content&quot;&gt;
+						&lt;?php the_content(); ?&gt;
+					&lt;/div&gt;
+
+					&lt;?php th_postend(); ?&gt;
+					
+				&lt;/div&gt; &lt;!-- /entry --&gt;
+				
+			&lt;?php } // End entry loop ?&gt;
+	
+		&lt;?php } else { ?&gt;
+		
+			&lt;?php include(TEMPLATEPATH . '/loop.php'); ?&gt;
+
+		&lt;?php } // End loop types ?&gt;
+	
+	&lt;?php } else { // If no posts ?&gt;
+		
+		&lt;?php include(TARSKIDISPLAY . &quot;/no_posts.php&quot;); ?&gt;
+	
+	&lt;?php } // End loop ?&gt;
+
+
+	&lt;?php if (!is_attachment() &amp;&amp; (is_single() || is_page())) comments_template(); ?&gt;
+
+&lt;/div&gt;
+	
+&lt;?php get_sidebar(); ?&gt;
+
 &lt;?php get_footer(); ?&gt;
\ No newline at end of file</diff>
      <filename>index.php</filename>
    </modified>
    <modified>
      <diff>@@ -1,46 +1,46 @@
-&lt;?php
-/*
-Template Name: Links
-*/
-
-get_header(); ?&gt;
-
-
-
-&lt;?php if (have_posts()) { while(have_posts()) { the_post(); ?&gt;
-
-	&lt;div class=&quot;primary entry&quot;&gt;
-		&lt;div class=&quot;meta&quot;&gt;
-			&lt;h1 class=&quot;title&quot;&gt;&lt;?php the_title(); ?&gt;&lt;/h1&gt;
-			&lt;?php edit_post_link(__('edit page','tarski'), '&lt;p class=&quot;metadata&quot;&gt;(', ')&lt;/p&gt;'); ?&gt;
-		&lt;/div&gt; &lt;!-- /meta --&gt;
-		
-		&lt;?php if(get_the_content() != &quot;&quot;) { ?&gt;
-			&lt;div class=&quot;content&quot;&gt;
-				&lt;?php the_content(); ?&gt;
-			&lt;/div&gt; &lt;!-- /content --&gt;
-		&lt;?php } ?&gt;
-		&lt;div class=&quot;bookmarks&quot;&gt;
-			&lt;?php wp_list_bookmarks(array(
-				'exclude_category' =&gt; get_tarski_option('nav_extlinkcat'),
-				'category_before' =&gt; '',
-				'category_after' =&gt; '',
-				'title_before' =&gt; '&lt;h3&gt;',
-				'title_after' =&gt; '&lt;/h3&gt;',
-				'show_images' =&gt; 0,
-				'show_description' =&gt; 0
-			)); ?&gt;
-		&lt;/div&gt; &lt;!-- /bookmarks --&gt;
-
-		&lt;?php th_postend(); ?&gt;
-	&lt;/div&gt; &lt;!-- /primary --&gt;
-	
-&lt;?php } } ?&gt;
-
-
-
-&lt;?php get_sidebar(); ?&gt;
-
-
-
+&lt;?php
+/*
+Template Name: Links
+*/
+
+get_header(); ?&gt;
+
+
+
+&lt;?php if (have_posts()) { while(have_posts()) { the_post(); ?&gt;
+
+	&lt;div class=&quot;primary entry&quot;&gt;
+		&lt;div class=&quot;meta&quot;&gt;
+			&lt;h1 class=&quot;title&quot;&gt;&lt;?php the_title(); ?&gt;&lt;/h1&gt;
+			&lt;?php edit_post_link(__('edit page','tarski'), '&lt;p class=&quot;metadata&quot;&gt;(', ')&lt;/p&gt;'); ?&gt;
+		&lt;/div&gt; &lt;!-- /meta --&gt;
+		
+		&lt;?php if(get_the_content() != &quot;&quot;) { ?&gt;
+			&lt;div class=&quot;content&quot;&gt;
+				&lt;?php the_content(); ?&gt;
+			&lt;/div&gt; &lt;!-- /content --&gt;
+		&lt;?php } ?&gt;
+		&lt;div class=&quot;bookmarks&quot;&gt;
+			&lt;?php wp_list_bookmarks(array(
+				'exclude_category' =&gt; get_tarski_option('nav_extlinkcat'),
+				'category_before' =&gt; '',
+				'category_after' =&gt; '',
+				'title_before' =&gt; '&lt;h3&gt;',
+				'title_after' =&gt; '&lt;/h3&gt;',
+				'show_images' =&gt; 0,
+				'show_description' =&gt; 0
+			)); ?&gt;
+		&lt;/div&gt; &lt;!-- /bookmarks --&gt;
+
+		&lt;?php th_postend(); ?&gt;
+	&lt;/div&gt; &lt;!-- /primary --&gt;
+	
+&lt;?php } } ?&gt;
+
+
+
+&lt;?php get_sidebar(); ?&gt;
+
+
+
 &lt;?php get_footer(); ?&gt;
\ No newline at end of file</diff>
      <filename>links.php</filename>
    </modified>
    <modified>
      <diff>@@ -1,43 +1,43 @@
-&lt;?php while(have_posts()) { the_post(); ?&gt;
-	
-	&lt;?php if(get_tarski_option('asidescategory') &amp;&amp; in_category(get_tarski_option('asidescategory'))) { // Aside loop ?&gt;
-		
-		&lt;div &lt;?php post_class('aside'); ?&gt; id=&quot;p-&lt;?php the_ID(); ?&gt;&quot;&gt;
-			
-			&lt;div class=&quot;content entry-content&quot;&gt;&lt;?php the_content(__('Read the rest of this entry &amp;raquo;','tarski')); ?&gt;&lt;/div&gt;
-			
-			&lt;p class=&quot;meta&quot;&gt;&lt;span class=&quot;date updated&quot;&gt;&lt;?php the_time(get_option('date_format')); ?&gt;&lt;/span&gt;&lt;?php tarski_author_posts_link(); ?&gt; | &lt;a class=&quot;comments-link&quot; rel=&quot;bookmark&quot; href=&quot;&lt;?php the_permalink(); ?&gt;&quot;&gt;&lt;?php tarski_asides_permalink_text(); ?&gt;&lt;/a&gt;&lt;?php edit_post_link(__('edit','tarski'), ' (', ')'); ?&gt;&lt;/p&gt;
-			
-			&lt;?php th_postend(); ?&gt;
-			
-		&lt;/div&gt;
-	
-	
-	&lt;?php } else { // Non-Aside loop ?&gt;
-	
-	
-		&lt;div &lt;?php post_class('entry'); ?&gt;&gt;
-			
-			&lt;div class=&quot;meta&quot;&gt;
-				&lt;h2 class=&quot;title entry-title&quot; id=&quot;post-&lt;?php the_ID(); ?&gt;&quot;&gt;&lt;a href=&quot;&lt;?php the_permalink(); ?&gt;&quot; rel=&quot;bookmark&quot; title=&quot;&lt;?php _e('Permanent link to ','tarski'); the_title(); ?&gt;&quot;&gt;&lt;?php the_title(); ?&gt;&lt;/a&gt;&lt;/h2&gt;
-				&lt;p class=&quot;metadata&quot;&gt;&lt;?php echo '&lt;span class=&quot;date updated&quot;&gt;'. get_the_time(get_option('date_format')) . '&lt;/span&gt;';
-				tarski_post_categories_link();
-				tarski_author_posts_link();
-				tarski_comments_link();
-				edit_post_link(__('edit', 'tarski'),' &lt;span class=&quot;edit&quot;&gt;(',')&lt;/span&gt;'); ?&gt;&lt;/p&gt;
-			&lt;/div&gt;
-			
-			&lt;div class=&quot;content entry-content&quot;&gt;
-				&lt;?php the_content(__('Read the rest of this entry &amp;raquo;','tarski')); ?&gt;
-			&lt;/div&gt;
-			
-			&lt;?php th_postend(); ?&gt;
-			
-		&lt;/div&gt;
-	
-		
-	&lt;?php } ?&gt;
-	
-&lt;?php } // End entry loop ?&gt;
-
+&lt;?php while(have_posts()) { the_post(); ?&gt;
+	
+	&lt;?php if(get_tarski_option('asidescategory') &amp;&amp; in_category(get_tarski_option('asidescategory'))) { // Aside loop ?&gt;
+		
+		&lt;div &lt;?php post_class('aside'); ?&gt; id=&quot;p-&lt;?php the_ID(); ?&gt;&quot;&gt;
+			
+			&lt;div class=&quot;content entry-content&quot;&gt;&lt;?php the_content(__('Read the rest of this entry &amp;raquo;','tarski')); ?&gt;&lt;/div&gt;
+			
+			&lt;p class=&quot;meta&quot;&gt;&lt;span class=&quot;date updated&quot;&gt;&lt;?php the_time(get_option('date_format')); ?&gt;&lt;/span&gt;&lt;?php tarski_author_posts_link(); ?&gt; | &lt;a class=&quot;comments-link&quot; rel=&quot;bookmark&quot; href=&quot;&lt;?php the_permalink(); ?&gt;&quot;&gt;&lt;?php tarski_asides_permalink_text(); ?&gt;&lt;/a&gt;&lt;?php edit_post_link(__('edit','tarski'), ' (', ')'); ?&gt;&lt;/p&gt;
+			
+			&lt;?php th_postend(); ?&gt;
+			
+		&lt;/div&gt;
+	
+	
+	&lt;?php } else { // Non-Aside loop ?&gt;
+	
+	
+		&lt;div &lt;?php post_class('entry'); ?&gt;&gt;
+			
+			&lt;div class=&quot;meta&quot;&gt;
+				&lt;h2 class=&quot;title entry-title&quot; id=&quot;post-&lt;?php the_ID(); ?&gt;&quot;&gt;&lt;a href=&quot;&lt;?php the_permalink(); ?&gt;&quot; rel=&quot;bookmark&quot; title=&quot;&lt;?php _e('Permanent link to ','tarski'); the_title(); ?&gt;&quot;&gt;&lt;?php the_title(); ?&gt;&lt;/a&gt;&lt;/h2&gt;
+				&lt;p class=&quot;metadata&quot;&gt;&lt;?php echo '&lt;span class=&quot;date updated&quot;&gt;'. get_the_time(get_option('date_format')) . '&lt;/span&gt;';
+				tarski_post_categories_link();
+				tarski_author_posts_link();
+				tarski_comments_link();
+				edit_post_link(__('edit', 'tarski'),' &lt;span class=&quot;edit&quot;&gt;(',')&lt;/span&gt;'); ?&gt;&lt;/p&gt;
+			&lt;/div&gt;
+			
+			&lt;div class=&quot;content entry-content&quot;&gt;
+				&lt;?php the_content(__('Read the rest of this entry &amp;raquo;','tarski')); ?&gt;
+			&lt;/div&gt;
+			
+			&lt;?php th_postend(); ?&gt;
+			
+		&lt;/div&gt;
+	
+		
+	&lt;?php } ?&gt;
+	
+&lt;?php } // End entry loop ?&gt;
+
 &lt;?php th_posts_nav(); ?&gt;
\ No newline at end of file</diff>
      <filename>loop.php</filename>
    </modified>
    <modified>
      <diff>@@ -1,45 +1,45 @@
-&lt;?php get_header(); ?&gt;
-
-
-
-&lt;div class=&quot;primary posts&quot;&gt;
-	&lt;?php if(have_posts()) { // Gets it all going ?&gt;
-		
-		
-		&lt;div class=&quot;archive&quot;&gt;
-			&lt;div class=&quot;meta&quot;&gt;
-				&lt;h1 class=&quot;title&quot;&gt;&lt;?php _e('Search Results','tarski'); ?&gt;&lt;/h1&gt;
-			&lt;/div&gt;
-			&lt;div class=&quot;content&quot;&gt;
-				&lt;p&gt;&lt;?php printf( __('Your search for %s returned the following results.','tarski'), '&lt;strong&gt;' . attribute_escape(get_search_query()) . '&lt;/strong&gt;' ); ?&gt;&lt;/p&gt;
-			&lt;/div&gt;
-		&lt;/div&gt; &lt;!-- /archive --&gt;
-		
-		&lt;?php include(TEMPLATEPATH.'/loop.php'); ?&gt;
-		
-		
-	&lt;?php } else { ?&gt;
-		
-		
-		&lt;div class=&quot;entry&quot;&gt;
-			&lt;div class=&quot;meta&quot;&gt;
-				&lt;h1 class=&quot;title&quot;&gt;&lt;?php _e('No results','tarski'); ?&gt;&lt;/h1&gt;
-			&lt;/div&gt;
-			&lt;div class=&quot;content&quot;&gt;
-				&lt;p&gt;&lt;?php printf( __('Your search for %1$s returned no results. Try returning to the %2$s.','tarski'), '&lt;strong&gt;' . attribute_escape(get_search_query()) . '&lt;/strong&gt;', '&lt;a href=&quot;' . get_bloginfo('url') . '&quot;&gt;' . __('front page','tarski') . '&lt;/a&gt;' ); ?&gt;&lt;/p&gt;
-			&lt;/div&gt;
-		&lt;/div&gt; &lt;!-- /entry --&gt;
-		
-		
-	&lt;?php } ?&gt;
-&lt;/div&gt; &lt;!-- /primary --&gt;
-
-
-
-&lt;div class=&quot;secondary&quot;&gt;
-	&lt;?php tarski_searchform(); ?&gt;
-&lt;/div&gt;
-
-
-
+&lt;?php get_header(); ?&gt;
+
+
+
+&lt;div class=&quot;primary posts&quot;&gt;
+	&lt;?php if(have_posts()) { // Gets it all going ?&gt;
+		
+		
+		&lt;div class=&quot;archive&quot;&gt;
+			&lt;div class=&quot;meta&quot;&gt;
+				&lt;h1 class=&quot;title&quot;&gt;&lt;?php _e('Search Results','tarski'); ?&gt;&lt;/h1&gt;
+			&lt;/div&gt;
+			&lt;div class=&quot;content&quot;&gt;
+				&lt;p&gt;&lt;?php printf( __('Your search for %s returned the following results.','tarski'), '&lt;strong&gt;' . attribute_escape(get_search_query()) . '&lt;/strong&gt;' ); ?&gt;&lt;/p&gt;
+			&lt;/div&gt;
+		&lt;/div&gt; &lt;!-- /archive --&gt;
+		
+		&lt;?php include(TEMPLATEPATH.'/loop.php'); ?&gt;
+		
+		
+	&lt;?php } else { ?&gt;
+		
+		
+		&lt;div class=&quot;entry&quot;&gt;
+			&lt;div class=&quot;meta&quot;&gt;
+				&lt;h1 class=&quot;title&quot;&gt;&lt;?php _e('No results','tarski'); ?&gt;&lt;/h1&gt;
+			&lt;/div&gt;
+			&lt;div class=&quot;content&quot;&gt;
+				&lt;p&gt;&lt;?php printf( __('Your search for %1$s returned no results. Try returning to the %2$s.','tarski'), '&lt;strong&gt;' . attribute_escape(get_search_query()) . '&lt;/strong&gt;', '&lt;a href=&quot;' . get_bloginfo('url') . '&quot;&gt;' . __('front page','tarski') . '&lt;/a&gt;' ); ?&gt;&lt;/p&gt;
+			&lt;/div&gt;
+		&lt;/div&gt; &lt;!-- /entry --&gt;
+		
+		
+	&lt;?php } ?&gt;
+&lt;/div&gt; &lt;!-- /primary --&gt;
+
+
+
+&lt;div class=&quot;secondary&quot;&gt;
+	&lt;?php tarski_searchform(); ?&gt;
+&lt;/div&gt;
+
+
+
 &lt;?php get_footer(); ?&gt;
\ No newline at end of file</diff>
      <filename>search.php</filename>
    </modified>
    <modified>
      <diff>@@ -1,7 +1,7 @@
-&lt;div class=&quot;searchbox&quot;&gt;
-	&lt;form method=&quot;get&quot; id=&quot;searchform&quot; action=&quot;&lt;?php bloginfo('url'); ?&gt;&quot;&gt;&lt;fieldset&gt;
-		&lt;label for=&quot;s&quot; id=&quot;searchlabel&quot;&gt;&lt;?php _e('Search this site', 'tarski'); ?&gt;&lt;/label&gt;
-		&lt;input type=&quot;text&quot; value=&quot;&lt;?php the_search_query(); ?&gt;&quot; name=&quot;s&quot; id=&quot;s&quot; /&gt;
-		&lt;input type=&quot;submit&quot; id=&quot;searchsubmit&quot; value=&quot;&lt;?php _e('Search','tarski'); ?&gt;&quot; /&gt;
-	&lt;/fieldset&gt;&lt;/form&gt;
+&lt;div class=&quot;searchbox&quot;&gt;
+	&lt;form method=&quot;get&quot; id=&quot;searchform&quot; action=&quot;&lt;?php bloginfo('url'); ?&gt;&quot;&gt;&lt;fieldset&gt;
+		&lt;label for=&quot;s&quot; id=&quot;searchlabel&quot;&gt;&lt;?php _e('Search this site', 'tarski'); ?&gt;&lt;/label&gt;
+		&lt;input type=&quot;text&quot; value=&quot;&lt;?php the_search_query(); ?&gt;&quot; name=&quot;s&quot; id=&quot;s&quot; /&gt;
+		&lt;input type=&quot;submit&quot; id=&quot;searchsubmit&quot; value=&quot;&lt;?php _e('Search','tarski'); ?&gt;&quot; /&gt;
+	&lt;/fieldset&gt;&lt;/form&gt;
 &lt;/div&gt;
\ No newline at end of file</diff>
      <filename>searchform.php</filename>
    </modified>
    <modified>
      <diff>@@ -1,6 +1,6 @@
-&lt;div id=&quot;sidebar&quot; class=&quot;secondary&quot;&gt;
-
-	&lt;?php th_sidebar(); // The magical sidebar hook ?&gt;
-	&lt;?php $wp_the_query-&gt;current_post--; setup_postdata($wp_query-&gt;next_post()); // Reset post data for comments ?&gt;
-	
+&lt;div id=&quot;sidebar&quot; class=&quot;secondary&quot;&gt;
+
+	&lt;?php th_sidebar(); // The magical sidebar hook ?&gt;
+	&lt;?php $wp_the_query-&gt;current_post--; setup_postdata($wp_query-&gt;next_post()); // Reset post data for comments ?&gt;
+	
 &lt;/div&gt;
\ No newline at end of file</diff>
      <filename>sidebar.php</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>29b64f499ca12a3ca6d540c8dc97fde6703c7409</id>
    </parent>
  </parents>
  <author>
    <name>unknown</name>
    <email>Jonathan@.(none)</email>
  </author>
  <url>http://github.com/ionfish/tarski/commit/a55f2356550a0197144d12c90aab62cb17440aa5</url>
  <id>a55f2356550a0197144d12c90aab62cb17440aa5</id>
  <committed-date>2009-02-11T05:25:08-08:00</committed-date>
  <authored-date>2009-02-10T22:48:32-08:00</authored-date>
  <message>cleanup remaining windows line endings from root

Signed-off-by: Benedict Eastaugh &lt;ionfish@gmail.com&gt;</message>
  <tree>89c29f1f885526095412072a3b7cedab9ffad67e</tree>
  <committer>
    <name>Benedict Eastaugh</name>
    <email>benedict@eastaugh.net</email>
  </committer>
</commit>
