From 19a4c3659e89545bd46a38f9980edaa6732c8f8e Mon Sep 17 00:00:00 2001 From: root <root@rivolta.investici.org> Date: Tue, 7 Dec 2010 02:04:01 +0000 Subject: [PATCH] Add theme zenlite --- wp-content/themes/zenlite/404.php | 26 + wp-content/themes/zenlite/archive.php | 6 + wp-content/themes/zenlite/archives.php | 21 + wp-content/themes/zenlite/attachment.php | 43 ++ wp-content/themes/zenlite/author.php | 79 ++ wp-content/themes/zenlite/authors.php | 36 + wp-content/themes/zenlite/category.php | 6 + wp-content/themes/zenlite/color.css | 250 +++++++ wp-content/themes/zenlite/comments.php | 44 ++ wp-content/themes/zenlite/footer.php | 22 + wp-content/themes/zenlite/functions.php | 285 +++++++ wp-content/themes/zenlite/header.php | 57 ++ wp-content/themes/zenlite/ie.css | 9 + wp-content/themes/zenlite/ie7.css | 12 + wp-content/themes/zenlite/image.php | 45 ++ wp-content/themes/zenlite/images/banner.jpg | Bin 0 -> 23101 bytes wp-content/themes/zenlite/images/bullet.jpg | Bin 0 -> 807 bytes wp-content/themes/zenlite/images/bullet2.jpg | Bin 0 -> 782 bytes wp-content/themes/zenlite/images/rss.png | Bin 0 -> 508 bytes .../themes/zenlite/images/sample-header.jpg | Bin 0 -> 19797 bytes wp-content/themes/zenlite/index.php | 6 + wp-content/themes/zenlite/langs/zenlite.po | 451 +++++++++++ wp-content/themes/zenlite/layout.css | 705 ++++++++++++++++++ wp-content/themes/zenlite/library/focus.js | 53 ++ .../themes/zenlite/library/theme-options.css | 6 + .../themes/zenlite/library/theme-options.php | 181 +++++ wp-content/themes/zenlite/license.txt | 674 +++++++++++++++++ wp-content/themes/zenlite/loop.php | 60 ++ .../themes/zenlite/page-without-comments.php | 48 ++ wp-content/themes/zenlite/page.php | 47 ++ wp-content/themes/zenlite/print.css | 18 + wp-content/themes/zenlite/screenshot.png | Bin 0 -> 13334 bytes wp-content/themes/zenlite/search.php | 79 ++ wp-content/themes/zenlite/searchform.php | 6 + wp-content/themes/zenlite/sidebar.php | 19 + wp-content/themes/zenlite/single.php | 47 ++ wp-content/themes/zenlite/style.css | 32 + wp-content/themes/zenlite/tag.php | 6 + 38 files changed, 3379 insertions(+) create mode 100644 wp-content/themes/zenlite/404.php create mode 100644 wp-content/themes/zenlite/archive.php create mode 100644 wp-content/themes/zenlite/archives.php create mode 100644 wp-content/themes/zenlite/attachment.php create mode 100644 wp-content/themes/zenlite/author.php create mode 100644 wp-content/themes/zenlite/authors.php create mode 100644 wp-content/themes/zenlite/category.php create mode 100644 wp-content/themes/zenlite/color.css create mode 100644 wp-content/themes/zenlite/comments.php create mode 100644 wp-content/themes/zenlite/footer.php create mode 100644 wp-content/themes/zenlite/functions.php create mode 100644 wp-content/themes/zenlite/header.php create mode 100644 wp-content/themes/zenlite/ie.css create mode 100644 wp-content/themes/zenlite/ie7.css create mode 100644 wp-content/themes/zenlite/image.php create mode 100644 wp-content/themes/zenlite/images/banner.jpg create mode 100644 wp-content/themes/zenlite/images/bullet.jpg create mode 100644 wp-content/themes/zenlite/images/bullet2.jpg create mode 100644 wp-content/themes/zenlite/images/rss.png create mode 100644 wp-content/themes/zenlite/images/sample-header.jpg create mode 100644 wp-content/themes/zenlite/index.php create mode 100644 wp-content/themes/zenlite/langs/zenlite.po create mode 100644 wp-content/themes/zenlite/layout.css create mode 100644 wp-content/themes/zenlite/library/focus.js create mode 100644 wp-content/themes/zenlite/library/theme-options.css create mode 100644 wp-content/themes/zenlite/library/theme-options.php create mode 100644 wp-content/themes/zenlite/license.txt create mode 100644 wp-content/themes/zenlite/loop.php create mode 100644 wp-content/themes/zenlite/page-without-comments.php create mode 100644 wp-content/themes/zenlite/page.php create mode 100644 wp-content/themes/zenlite/print.css create mode 100644 wp-content/themes/zenlite/screenshot.png create mode 100644 wp-content/themes/zenlite/search.php create mode 100644 wp-content/themes/zenlite/searchform.php create mode 100644 wp-content/themes/zenlite/sidebar.php create mode 100644 wp-content/themes/zenlite/single.php create mode 100644 wp-content/themes/zenlite/style.css create mode 100644 wp-content/themes/zenlite/tag.php diff --git a/wp-content/themes/zenlite/404.php b/wp-content/themes/zenlite/404.php new file mode 100644 index 000000000..79df0b94f --- /dev/null +++ b/wp-content/themes/zenlite/404.php @@ -0,0 +1,26 @@ +<?php ob_start(); ?> +<?php header("HTTP/1.1 404 Not Found"); ?> +<?php header("Status: 404 Not Found"); ?> +<?php get_header(); ?> + +<div id="content"> +<div <?php post_class('page'); ?>> +<h2 class="post-title"><?php _e('Page Not Found', 'zenlite');?></h2> + +<p><?php _e("Uh oh! I can't seem to find the file you asked for.", 'zenlite');?></p> + +<p><?php _e('Perhaps you:', 'zenlite');?></p> + +<ul> +<li><?php _e('tried to access a post or archive that has been removed', 'zenlite');?></li> +<li><?php _e('followed a bad link', 'zenlite');?></li> +<li><?php _e('mis-typed something', 'zenlite');?></li> +</ul> + +<p><?php _e("Try using the Search option to find what you're looking for.", 'zenlite');?></p> + +<?php get_search_form();?> + +</div> + +<?php get_footer(); \ No newline at end of file diff --git a/wp-content/themes/zenlite/archive.php b/wp-content/themes/zenlite/archive.php new file mode 100644 index 000000000..d33a3be33 --- /dev/null +++ b/wp-content/themes/zenlite/archive.php @@ -0,0 +1,6 @@ +<?php +get_header(); + +get_template_part( 'loop', 'archive' ); + +get_footer(); \ No newline at end of file diff --git a/wp-content/themes/zenlite/archives.php b/wp-content/themes/zenlite/archives.php new file mode 100644 index 000000000..5c93ccc48 --- /dev/null +++ b/wp-content/themes/zenlite/archives.php @@ -0,0 +1,21 @@ +<?php +/* +Template Name: Archive Lists +*/ +?> +<?php get_header(); ?> + +<div id="content"> + +<h2><?php _e('Archives by Month:', 'zenlite');?></h2> +<ul> +<?php wp_get_archives('type=monthly'); ?> +</ul> + +<h2><?php _e('Archives by Subject:', 'zenlite');?></h2> +<ul> +<?php wp_list_categories(); ?> +</ul> + + +<?php get_footer(); ?> \ No newline at end of file diff --git a/wp-content/themes/zenlite/attachment.php b/wp-content/themes/zenlite/attachment.php new file mode 100644 index 000000000..70d3a79fc --- /dev/null +++ b/wp-content/themes/zenlite/attachment.php @@ -0,0 +1,43 @@ +<?php get_header(); ?> + +<div id="content"> + +<?php if (have_posts()) : while (have_posts()) : the_post(); ?> + +<div <?php post_class(); ?>> + +<h2><?php the_title(); ?></h2> +<ul class="meta"> +<li><?php edit_post_link(__('Edit', 'zenlite') ); ?></li> +</ul> + +<div class="postcontent"> + +<p class="download-link"><img class="download-icon alignleft" src="<?php echo wp_mime_type_icon(); ?>" width="46" height="60" alt="" /> <?php printf( __('Download the <a href="%1$s" rel="attachment">%2$s</a> file.', 'zenlite'), wp_get_attachment_url(), get_the_title() );?><br /> + +<?php printf( __('Published on %1$s at %2$s', 'zenlite' ), get_the_time(__('F j, Y', 'zenlite')), get_the_time() ); +if( get_the_modified_time() != get_the_time() ) { + echo '<br />'; + printf( __('Updated on %1$s at %2$s', 'zenlite' ), get_the_modified_time(__('F j, Y', 'zenlite')), get_the_modified_time() ); +}?></p> + +<?php if ( !empty( $post->post_excerpt ) ) :?> +<div class="attachment-caption"> +<?php the_excerpt(); ?> +</div> +<?php endif;?> + +<?php if ( !empty( $post->post_content ) ) :?> +<div class="attachment-content"> +<?php the_content(); ?> +</div> +<?php endif;?> + +</div> + +<p class="posted-under"><?php _e('Posted under', 'zenlite');?> <a href="<?php echo get_permalink($post->post_parent); ?>" title="<?php _e('Return to parent page', 'zenlite');?>"><?php echo get_the_title($post->post_parent); ?></a></p> + +<?php endwhile; ?><?php endif; ?> +</div> + +<?php get_footer(); \ No newline at end of file diff --git a/wp-content/themes/zenlite/author.php b/wp-content/themes/zenlite/author.php new file mode 100644 index 000000000..0688f5113 --- /dev/null +++ b/wp-content/themes/zenlite/author.php @@ -0,0 +1,79 @@ +<?php get_header(); ?> + +<div id="content"> + +<?php if(isset($_GET['author_name'])) $curauth = get_userdatabylogin($author_name); +else $curauth = get_userdata(intval($author));?> + +<div <?php post_class(); ?>> +<h2 class="post-title"><?php _e('About', 'zenlite');?> <?php echo $curauth->display_name; ?></h2> +<dl class="author-details"> + +<?php if( $curauth->user_description !='' ) :?> +<dt class="bio"><?php _e('Bio', 'zenlite');?>:</dt> +<dd class="bio"><?php echo $curauth->user_description; ?></dd> +<?php endif;?> + +<?php if( $curauth->user_url !='' ) :?> +<dt class="website"><?php _e('Website', 'zenlite');?>:</dt> +<dd class="website"><a href="<?php echo $curauth->user_url;?>"><?php echo $curauth->user_url;?></a></dd> +<?php endif;?> + +<?php if(function_exists('get_the_author_meta')) :?> +<?php if( get_the_author_meta('jabber', $curauth->ID) != '') :?> +<dt class="jabber"><?php _e('Jabber / Google Talk', 'zenlite');?>:</dt> +<dd class="jabber"><?php the_author_meta('jabber', $curauth->ID);?></dd> +<?php endif;?> + +<?php if( get_the_author_meta('aim', $curauth->ID) != '') :?> +<dt class="aim"><abbr title="<?php _e('AOL Instant Messenger', 'zenlite');?>"><?php _e('AIM');?></abbr>:</dt> +<dd class="aim"><?php the_author_meta('aim', $curauth->ID);?></dd> +<?php endif;?> + +<?php if( get_the_author_meta('yim', $curauth->ID) != '') :?> +<dt class="yim"><?php _e('Yahoo');?> <abbr title="<?php _e('Instant Messenger', 'zenlite');?>"><?php _e('IM');?></abbr>:</dt> +<dd class="yim"><?php the_author_meta('yim', $curauth->ID);?></dd> +<?php endif;?> + +<?php endif;?> +</dl> + +<h2 class="posts-by"><?php _e('Posts by', 'zenlite');?> <?php echo $curauth->display_name; ?>:</h2> + +<?php if (have_posts()) : while (have_posts()) : the_post(); ?> + +<h3 class="post-title" id="post-<?php the_ID();?>"><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php _e('Post', 'zenlite');?> <?php the_ID(); ?> - <?php _e('permanent link', 'zenlite');?>"><?php the_title(); ?></a></h3> +<ul class="meta"> +<li><?php the_time(__('F j, Y', 'zenlite')); ?> <?php the_time(); ?></li> +<li><?php edit_post_link(sprintf( __('Edit %1$s', 'zenlite'), get_the_title() ) +); ?></li> +</ul> + +<div class="postcontent"> +<?php if( has_post_thumbnail() ) { + the_post_thumbnail(); + the_excerpt(); +} +else the_content();?> +</div> + +<ul class="meta postfoot"> +<li class="more-link"><a href="<?php the_permalink();?>"><?php _e('Continue reading ', 'zenlite') . the_title();?></a> »</li> +<?php if('open' == $post->comment_status) : ?><li class="comment_link"><?php comments_popup_link(__('Comment on ', 'zenlite') .$post->post_title, __('1 Comment on ', 'zenlite') .$post->post_title, __('% Comments on ', 'zenlite') .$post->post_title,'postcomment',__('Comments are off for ', 'zenlite') .$post->post_title); ?> »</li><?php endif;?> +<li class="cats"><?php _e('Filed under:', 'zenlite');?> <ul><li><?php the_category(',</li> <li>') ?></li></ul></li> +<?php if(get_the_tag_list()) :?> +<li class="tags"><?php _e('Tags:', 'zenlite');?> <?php the_tags('<ul><li>',',</li> <li>','</li></ul>');?></li> +<?php endif;?> +</ul> + +<?php endwhile; ?> + +<ul class="prevnext"> +<li><?php next_posts_link(__('« Older Posts', 'zenlite') ); ?></li> +<li><?php previous_posts_link(__('Newer Posts »', 'zenlite') );?></li> +</ul> + +<?php endif; ?> +</div> + +<?php get_footer(); ?> \ No newline at end of file diff --git a/wp-content/themes/zenlite/authors.php b/wp-content/themes/zenlite/authors.php new file mode 100644 index 000000000..72be21978 --- /dev/null +++ b/wp-content/themes/zenlite/authors.php @@ -0,0 +1,36 @@ +<?php +/* +Template Name: List Authors +*/ +?> +<?php get_header(); ?> + +<div id="content"> + +<?php if (have_posts()) : while (have_posts()) : the_post(); ?> + +<div <?php post_class(); ?>> + +<h2 class="post-title" id="post-<?php the_ID(); ?>"><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php _e('Permanent Link:', 'zenlite');?> <?php the_title(); ?>"><?php the_title(); ?></a></h2> +<ul class="meta"> +<li><?php edit_post_link(__('Edit', 'zenlite') ); ?></li> +</ul> + +<div class="postcontent"> +<?php the_content(); ?> +</div> + +<ul class="authors"> +<?php wp_list_authors('exclude_admin=0&optioncount=1'); ?> +</ul> + +<?php wp_link_pages('before=<div class="pagelist">' . __('Pages:', 'zenlite') .'&after=</div>&link_before=&link_after=&pagelink=%');?> + +</div> + +<?php endwhile; ?> + +<?php endif; ?> + + +<?php get_footer(); ?> \ No newline at end of file diff --git a/wp-content/themes/zenlite/category.php b/wp-content/themes/zenlite/category.php new file mode 100644 index 000000000..d16badc7d --- /dev/null +++ b/wp-content/themes/zenlite/category.php @@ -0,0 +1,6 @@ +<?php +get_header(); + +get_template_part( 'loop', 'category' ); + +get_footer(); \ No newline at end of file diff --git a/wp-content/themes/zenlite/color.css b/wp-content/themes/zenlite/color.css new file mode 100644 index 000000000..ccd1e4f0a --- /dev/null +++ b/wp-content/themes/zenlite/color.css @@ -0,0 +1,250 @@ +/*ZenLite +Author:Mel P. +http://quirm.net/ +*/ + +body { + color:#606060; +} +h1,h2,h3,h4,h5,h6 { +} +blockquote { + border-left:2px solid #DEE2E9;; +} +acronym, abbr { + border-bottom:1px dashed #ddd; +} +pre,ins { + background:#F3F3FB; + color:#606060; +} +pre { + border:1px solid #D5CDD5; +} +fieldset { + background:#DEE2E9; +} +fieldset fieldset { + background:#F3F3FB; +} +legend { + background:#B1B4BE; + color:#000; +} +input, textarea { + background:#F0F3F5; + color:#404040; + border:1px solid #ddd; +} +input:focus,input.focus,textarea:focus,textarea.focus { + background:#fff; + color:#606060; + border-color:#407096; +} +input.submit,input.button,input[type=submit] { + background:#505050; + color:#fff; +} +input.checkbox { + border:none; +} +ins { + text-decoration:none; +} +table,th,td { + border:1px solid #C6CCD4; +} +th { + background:#DEE2E9; +} +tr { + background:#fff; + color:#606060; +} +tr.alt { + background:#F3F3FB; +} +a { + color:#407096; +} +a:visited { + color:#5F487E; +} +a:hover { + color:#407096; +} +a:active,a:focus { + background-color:#f93; + color:#000; +} +a img { + border:1px solid #fff; +} +a:hover img { + border-color:#DEE2E9; +} +a:active img, a:focus img { + border-color:#f93; +} + +/* WRAPPER */ +#wrapper { + background:#fff; + color:#606060; +} +.jumplinks a:active,.jumplinks a:focus { + background:#f93; + color:#000; +} + +/* HEADER */ +#header h1,#header h1 a { + color:#606060; +} +#header h1 { + border-bottom:3px double #aaa; +} +#header h1 a:hover { + color:#407096; +} +#header h1 a:focus,#header h1 a:active { + background-color:#f93; + color:#000; +} +#header h1 small { + color:#707070; +} + +/* MENU */ +.sidebar { + border-top:3px double #aaa; + border-bottom:3px double #aaa; +} +.sidebar a { + background:#fff; + color:#606060; +} +.sidebar .current_page_item a,.sidebar .current-cat a, +.sidebar .current-menu-item a { + background:#505050; + color:#fff; +} +.sidebar .current_page_item li a,.sidebar .current-cat li a { + background:#fff; + color:#606060; +} +.sidebar a:hover { + background:#DEE2E9; + color:#404040; +} +.sidebar a:active,.sidebar a:focus { + background:#f93; + color:#404040; +} + +/* CONTENT */ +#content { + background:#fff; + color:#606060; +} +.postfoot { + border-bottom:3px double #aaa; +} +.author .posts-by { + border-top:3px double #aaa; +} +.single { + border:none; +} +#content ul li { + list-style-image:url(images/bullet.jpg); +} +#content ul li ul li { + list-style-image:url(images/bullet2.jpg); +} +#content ul li ul li ul li { + list-style-image:none; +} +#content .prevnext li,#content .meta li { + list-style-image:none; + list-style:none; +} + +/* no bullets */ +#content #commentlist li,#content .comment-links li, +#content .result-list li,#content .page-tree ul li { + list-style-image:none; + list-style:none; +} + +/* pagination */ +.page-numbers a,.pagelist a { + background-color:#F3F3FB; + border:1px solid #DEE2E9; +} +.page-numbers a:hover,.pagelist a:hover { + background-color:#fff; +} +.page-numbers a:active,.page-numbers a:focus, +.pagelist a:active,.pagelist a:focus { + background-color:#f93; + color:#000; + border-color:#f93; +} + +/* page tree */ +.page-tree { + background-color:#F3F3FB; + border:1px solid #DEE2E9; +} + +/* COMMENTS */ +#commentlist .even { + background-color:#F3F3FB; +} +#commentlist .odd { + background:#fff; +} +#commentlist .even,#commentlist .odd { + border:1px solid #DEE2E9; + -moz-border-radius:3px; + -khtml-border-radius:3px; + -webkit-border-radius:3px; + border-radius:3px; +} +#commentlist li .meta li { + background:transparent; + border:none; +} + +/* gallery & captions */ +.wp-caption img,#content .gallery img { + border:10px solid #F3F3FB; + -moz-border-radius:3px; + -khtml-border-radius:3px; + -webkit-border-radius:3px; + border-radius:3px; +} +.wp-caption a:hover img,#content .gallery a:hover img { + border-color:#DEE2E9; +} +.wp-caption a:active img,.wp-caption a:focus img, +#content .gallery a:active img,#content .gallery a:focus img { + border-color:#f93; +} + +/* wp-calendar */ +#wp-calendar tbody td a { + background:#E9ECF1; +} +#wp-calendar td a:hover { + background:#407096; + color:#fff; +} +#wp-calendar tbody td a:active,#wp-calendar tbody td a:focus { + background:#f93; + color:#000; +} +#wp-calendar #today,#wp-calendar #today a { + background:#F5E6F5; +} \ No newline at end of file diff --git a/wp-content/themes/zenlite/comments.php b/wp-content/themes/zenlite/comments.php new file mode 100644 index 000000000..b4a5ce7ec --- /dev/null +++ b/wp-content/themes/zenlite/comments.php @@ -0,0 +1,44 @@ +<?php +if ( post_password_required() ) : ?> +<p class="comments-nopassword"><?php _e( "This post and it's comments are password protected. Enter the password into the form above to view any comments.", 'zenlite' ); ?></p> +<?php +// Stop the rest of comments.php from being processed, +return; +endif; +?> + +<?php if(have_comments()) : ?> +<h2 id="comments" class="total-comments"> +<?php +$args = array( + 'zero' => __('No comments', 'zenlite'), + 'one' => __('1 Comment', 'zenlite'), + 'more' => __('% Comments', 'zenlite') +); +comments_number($args ); ?> <?php _e('on', 'zenlite');?> <?php the_title(); ?></h2> +<?php endif;?> + +<?php if ('open' == $post->comment_status) : ?> +<ul class="comment-links"> + +<?php if ('open' == $post->comment_status) : ?><li><a href="#respond"><?php _e('Add your comment', 'zen');?></a></li><?php endif;?> + +<?php if (have_comments()) : ?><li><a href="<?php echo get_post_comments_feed_link();?>"><?php _e('Comments feed for this post', 'zenlite'); ?></a></li><?php endif;?> + +<?php if(pings_open()) : ?><li><a href="<?php trackback_url();?>" rel="trackback"><?php _e('TrackBack', 'zenlite');?> <abbr title="<?php _e('Uniform Resource Identifier', 'zenlite');?>"><?php _e('URI', 'zenlite');?></abbr></a></li><?php endif;?> + +</ul><?php endif; ?> + +<?php if(have_comments()) : ?> + +<?php paginate_comments_links('type=list'); ?> + +<ol id="commentlist"> +<?php wp_list_comments(); ?> +</ol> + +<?php paginate_comments_links('type=list'); ?> + +<?php endif; + +comment_form( zenlite_comment_form_args($user_identity, $post->ID, $req) ); \ No newline at end of file diff --git a/wp-content/themes/zenlite/footer.php b/wp-content/themes/zenlite/footer.php new file mode 100644 index 000000000..a52ea8ee4 --- /dev/null +++ b/wp-content/themes/zenlite/footer.php @@ -0,0 +1,22 @@ +<!-- end content --> +</div> + +<div id="footer"> + +<ul> +<li class="top"><a href="#top" title="Jump to the top of this page">Top</a></li> +<li class="loginout"><?php wp_loginout(); ?></li> +<?php wp_register(); ?> +<li class="rss"><a href="<?php bloginfo('rss2_url'); ?>" title="RSS Feed"><img src="<?php bloginfo('template_directory'); ?>/images/rss.png" width="14" height="14" alt="RSS" /></a></li> +</ul> + +<?php $zenlite_data = get_theme_data(get_stylesheet_directory() . '/style.css');?> +<p><?php printf( __('Powered by the %1$s Theme %2$s', 'zenlite'), '<a href="' . $zenlite_data['URI'] . '">' . get_current_theme(), '</a>');?></p> +</div> + +<!-- end wrapper --> +</div> + +<?php wp_footer(); ?> +</body> +</html> \ No newline at end of file diff --git a/wp-content/themes/zenlite/functions.php b/wp-content/themes/zenlite/functions.php new file mode 100644 index 000000000..6d4f4244e --- /dev/null +++ b/wp-content/themes/zenlite/functions.php @@ -0,0 +1,285 @@ +<?php + +if ( ! function_exists( 'zenlite_setup' ) ): +function zenlite_setup() { + + // Load language files + load_theme_textdomain( 'zenlite', TEMPLATEPATH . '/langs' ); + $locale = get_locale(); + $locale_file = TEMPLATEPATH . "/langs/$locale.php"; + if ( is_readable( $locale_file ) ) require_once( $locale_file ); + + // set content width + if ( ! isset( $content_width ) ) $content_width = 900; + + // remove WP version number - security by obscurity + remove_action ('wp_head', 'wp_generator'); + + // Add post thumbnail & feed link support + add_theme_support( 'post-thumbnails' ); + add_theme_support( 'automatic-feed-links' ); + + // Get the post thumbnail dimensions from Settings/Media + define('THUMB_WIDTH', get_option('thumbnail_size_w')); + define('THUMB_HEIGHT', get_option('thumbnail_size_h')); + set_post_thumbnail_size( THUMB_WIDTH, THUMB_HEIGHT ); // box (proportional) resize mode + + // Add support for custom background + if( function_exists ('add_custom_background') ) add_custom_background(); + + // Header & Background customisation/ + define('HEADER_IMAGE_WIDTH', apply_filters( 'zenlite_header_image_width',1000 ) ); + define('HEADER_IMAGE_HEIGHT', apply_filters( 'zenlite_header_image_height', 150 ) ); + define('HEADER_IMAGE', get_bloginfo('stylesheet_directory') . '/images/banner.jpg'); + define('HEADER_TEXTCOLOR', apply_filters( 'zenlite_header_color', '606060' ) ); + define ('BACKGROUND_COLOR', apply_filters( 'zenlite_background_color', 'fff' ) ); + define ('BACKGROUND_IMAGE', apply_filters( 'zenlite_background_image', '' ) ); + +} +endif; +add_action( 'after_setup_theme', 'zenlite_setup' ); + +// Load custom theme options +require_once(get_template_directory() . '/library/theme-options.php'); +$zenlite_options = get_option('zenlite_theme_options'); + +// Register sidebar +if ( !function_exists( 'zenlite_widgets_init' )) : +function zenlite_widgets_init() { + register_sidebar(array( + 'name'=> __('Main menu', 'zenlite'), + 'id' => 'main-menu', + 'description' => __('Main menu','zenlite'), + 'before_widget' => '<li id="%1$s" class="widget %2$s">', + 'after_widget' => '</li>', + 'before_title' => '<h2 class="widgettitle">', + 'after_title' => '</h2>', + )); +} +endif; +add_action( 'widgets_init', 'zenlite_widgets_init' ); + +// add custom menu support +if ( function_exists( 'register_nav_menu' ) && !function_exists( 'register_theme_menus' )) : +function register_zenlite_menus() { + register_nav_menu( 'primary', __( 'Primary', 'zenlite' ) ); +} +endif; +add_action( 'init', 'register_zenlite_menus' ); + +// Add thickbox to public-facing attachment pages only +if ( !function_exists( 'zenlite_thickbox_init' ) ) : +function zenlite_thickbox_init() { + if (is_attachment() ) { + add_thickbox(); + } +} +endif; +add_action('template_redirect', 'zenlite_thickbox_init'); + +// Set up a proper …for post extracts +if( !function_exists ('zenlite_proper_hellip') ) : +function zenlite_proper_hellip($more) { + return '…'; +} +endif; +add_filter('excerpt_more', 'zenlite_proper_hellip'); + +// Remove gallery css +if( !function_exists ('zenlite_remove_gallery_css') ) : +function zenlite_remove_gallery_css( $css ) { + return preg_replace( "#<style type='text/css'>(.*?)</style>#s", '', $css ); +} +endif; +add_filter( 'gallery_style', 'zenlite_remove_gallery_css' ); + +// Correct image path issue in thickbox +if( !function_exists ('zenlite_load_tb_fix') ) : +function zenlite_load_tb_fix() { + if( is_attachment() ) ?><script type="text/javascript">tb_pathToImage = "'<?php bloginfo('url');?>/wp-includes/js/thickbox/loadingAnimation.gif";tb_closeImage = "<?php bloginfo('url');?>/wp-includes/js/thickbox/tb-close.png";</script> + <?php +} +endif; +add_action('wp_footer', 'zenlite_load_tb_fix'); + +// Amend post password form +if( !function_exists ('zenlite_password_form') ) : +function zenlite_password_form() { + global $post; + $label = 'pwbox-'.(empty($post->ID) ? rand() : $post->ID); + $output = '<div class="password-form"> + <p class="protected-text">' . __('This post is password protected. To view it, please enter your password below:', 'zenlite') . '</p> + <form action="' . get_option('siteurl') . '/wp-pass.php" method="post"> + <p><label for="' . $label . '">' . __('Password:', 'zenlite') . ' </label> <input name="post_password" id="' . $label . '" type="password" size="20" /> <input type="submit" name="Submit" value="' . esc_attr__('Submit', 'zenlite') . '" /></p></form></div>'; + return $output; +} +endif; +add_filter('the_password_form','zenlite_password_form'); + +// Amend password protected standard excerpt +if( !function_exists ('zenlite_password_excerpt') ) : +function zenlite_password_excerpt($output) { + global $post; + if ( post_password_required($post) ) $output = '<p class="pwd-protected">' . __('This is a password protected post.', 'zenlite') . '</p>'; + return $output; +} +endif; +add_filter('the_excerpt','zenlite_password_excerpt'); + +// Make sure we always have a visible post/page title +if ( !function_exists( 'zenlite_correct_missing_title' ) ) : +function zenlite_correct_missing_title( $title ) { + if ( $title == '' ) $title = __('No Title', 'zenlite'); + return $title; +} +endif; +add_filter( 'the_title', 'zenlite_correct_missing_title' ); + +// Disable home link in wp_page_menu +if ( !function_exists( 'zenlite_show_home' ) ) : +function zenlite_show_home( $args ) { + $args['show_home'] = true; + return $args; +} +endif; +add_filter( 'wp_page_menu_args', 'zenlite_show_home' ); + +// Customise menu class in wp_page_menu +if ( !function_exists( 'zenlite_primary_menu_class' ) ) : +function zenlite_primary_menu_class( $args ) { + $args['menu_class'] = 'top-menu'; + return $args; +} +endif; +add_filter( 'wp_page_menu_args', 'zenlite_primary_menu_class' ); + +// Called in sidebar.php for Categories if no custom menu is defined +if ( !function_exists( 'zenlite_callback_cats' ) ) : +function zenlite_callback_cats() { + ?> + <ul> + <li<?php if(is_front_page() || is_home()) echo ' class="current_page_item"';?>><a href="<?php bloginfo('url'); ?>"><?php _e('Home', 'zenlite');?></a></li> + <?php wp_list_categories('title_li=');?> + </ul> + <?php +} +endif; + +// Amend comment form fields +if ( !function_exists( 'zenlite_comment_fields' ) ) : + function zenlite_comment_fields($fields) { + $commenter = wp_get_current_commenter(); + $req = get_option('require_name_email'); + if( $req ) $reqd = '<span class="required">' . __('*', 'zenlite') . '</span>'; + + $fields['author'] = '<p class="comment-form-author"><label class="text" for="author">' . __( 'Name', 'zenlite' ) . $reqd . '</label><input id="author" name="author" type="text" value="' . esc_attr( $commenter['comment_author'] ) . '" size="30" /></p>'; + + $fields['email'] = '<p class="comment-form-email"><label class="text" for="email">' . __( 'Email', 'zenlite' ) . $reqd . '</label><input id="email" name="email" type="text" value="' . esc_attr( $commenter['comment_author_email'] ) . '" size="30" />' . '</p>'; + + $fields['url'] = '<p class="comment-form-url"><label class="text" for="url">' . __( 'Website', 'zenlite') . '</label>' . '<input id="url" name="url" type="text" value="' . esc_attr( $commenter['comment_author_url'] ) . '" size="30" /></p>'; + + return $fields; + } +endif; +add_filter('comment_form_default_fields','zenlite_comment_fields'); + +// Amend comment form arguments +if ( ! function_exists( 'zenlite_comment_form_args' ) ) : +function zenlite_comment_form_args($user_identity, $post_id, $req) { + global $zenlite_options; + $args = array( + 'comment_notes_before' => '<p class="comment-notes"><label for="author">' . ( $req ? __( ' Required fields are marked ', 'zenlite') . '<span class="required">' . __('*', 'zenlite') . '</span><br />' : '' ) . __( 'Your email address will <em>never</em> be published or shared.' ) . '</label></p>', + + 'logged_in_as' => '<p class="logged-in-as"><label for="comment">' . sprintf( __( 'Logged in as <a href="%s">%s</a>. <a href="%s" title="Log out of this account">Log out?</a></label></p>' ), admin_url( 'profile.php' ), $user_identity, wp_logout_url( apply_filters( 'the_permalink', get_permalink( $post_id ) ) ) ), + + 'comment_field' => '<p class="comment-form-comment"><label for="comment">' . _x( 'Comment', 'noun' ) . '</label><textarea id="comment" name="comment" cols="45" rows="8"></textarea></p>', + 'label_submit'=>'Submit Reply', + + 'comment_notes_after' => '<p class="form-allowed-tags"><label for="comment">' . __( 'You may use these <abbr title="eXtensible HyperText Markup Language">XHTML</abbr> tags and attributes:', 'zenlite' ) . ' <code>' . allowed_tags() . '</code></label></p>' + ); + if( $zenlite_options['kses_display'] && $zenlite_options['kses_display'] == 'no' ) $args['comment_notes_after'] = ''; + return $args; +} +endif; + +// Return page tree +if ( !function_exists( 'zenlite_page_tree' ) ) : +function zenlite_page_tree($this_page) { + $pagelist = ''; + if( !$this_page->post_parent ) { + $children = wp_list_pages('title_li=&child_of='.$this_page->ID.'&echo=0'); + if( $children ) { + $pagelist .= '<li class="current_page_item"><a href="'. get_page_link($this_page->ID) .'">' . $this_page->post_title . '</a>'; + $pagelist .= '<ul>' . $children . '</ul>'; + $pagelist .= '</li>'; + } + } + elseif( $this_page->ancestors ) { + // get the top ID of this page. Page ids DESC so top level ID is the last one + $ancestor = end($this_page->ancestors); + $pagelist .= wp_list_pages('title_li=&include='.$ancestor.'&echo=0'); + $pagelist = str_replace('</li>', '', $pagelist); + $pagelist .= '<ul>' . wp_list_pages('title_li=&child_of='.$ancestor.'&echo=0') .'</ul></li>'; + } + return $pagelist; +} +endif; + +// output custom header image & text CSS +if ( !function_exists( 'zenlite_custom_header_style' ) ) : +function zenlite_custom_header_style() { + echo '<style type="text/css" media="screen,print">'."\n"; + if( get_header_image() != '' ) echo '#header-image {background-image:url(' . get_header_image() . ');}'; + if( get_header_textcolor() == 'blank' ) echo '#header h1,#header h1 a {position:absolute;top:-5000px;left:-5000px;}'; + else echo '#header h1,#header h1 a {color:#' . get_header_textcolor() . ';}'; + echo "\n</style>\n\n"; +} +endif; + +// Style header customisation in the Admin area +if ( !function_exists( 'zenlite_admin_header_style' ) ) : +function zenlite_admin_header_style() { +?> +<style type="text/css"> +#headimg { + height:150px; + padding:0; + margin:70px 0 0; + background-image:url(images/banner.jpg); + background-repeat:no-repeat; + background-position:top left; + border-top:3px double #aaa; + border-bottom:3px double #aaa; +} +#headimg h1,#headimg #desc { + text-align:center; + font-weight:normal; + letter-spacing:.02em; + position:relative; + top:-70px; +} +#headimg h1 { + margin:0; + padding:0 15px; + font-size:30px; + line-height:1.2em; + color:#606060; +} +#headimg #desc { + display:block; + margin:0; + padding:0 0 13px; + font-size:20px; + color:#707070; +} +#headimg a { + text-decoration:none; +} +#headimg a:hover { + text-decoration:underline; +} +</style> +<?php +} +endif; +add_custom_image_header('', 'zenlite_admin_header_style'); diff --git a/wp-content/themes/zenlite/header.php b/wp-content/themes/zenlite/header.php new file mode 100644 index 000000000..3f849dbb5 --- /dev/null +++ b/wp-content/themes/zenlite/header.php @@ -0,0 +1,57 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head profile="http://gmpg.org/xfn/1"> +<meta http-equiv="Content-Type" content="text/html; charset=<?php bloginfo('charset'); ?>" /> + +<meta name="designer" content="esmi@quirm.net" /> + +<link rel="stylesheet" type="text/css" href="<?php bloginfo('stylesheet_url'); ?>" media="screen" /> +<link rel="stylesheet" type="text/css" href="<?php bloginfo('stylesheet_directory'); ?>/print.css" media="print" /> + +<!--[if IE]> +<link rel="stylesheet" href="<?php bloginfo('template_directory'); ?>/ie.css" media="screen" type="text/css" /> +<![endif]--> +<!--[if lte IE 7]> +<link rel="stylesheet" href="<?php bloginfo('template_directory'); ?>/ie7.css" media="screen" type="text/css" /> +<script src="<?php bloginfo('template_directory'); ?>/library/focus.js" type="text/javascript"></script> +<![endif]--> + +<?php if ( function_exists( 'zenlite_custom_header_style' ) ) zenlite_custom_header_style();?> + +<link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" /> + +<?php wp_get_archives('type=monthly&format=link'); ?> + +<title><?php if(is_search()) { + if(trim(get_search_query()) != '') {_e(' Search Results for '', 'zenlite'); echo trim(get_search_query());_e('' on ', 'zenlite');bloginfo('name');} + else {bloginfo('name');_e(' - No search query entered!', 'zenlite');} +} +elseif (is_category() || is_author()) {wp_title(':',true,'right'); bloginfo('name');} +elseif(is_tag()) {_e('Entries tagged with ', 'zenlite'); wp_title('',true);_e(' on '); bloginfo('name');} +elseif(is_archive() ) {_e('Archives for ', 'zenlite');wp_title('',true,'right') ;_e(' on '); bloginfo('name');} +elseif(is_404()) {bloginfo('name'); _e(' - Page not found!', 'zenlite');} +elseif (have_posts()) {wp_title(':',true,'right'); bloginfo('name');} +else {bloginfo('name');}?> +</title> + +<?php if(is_singular()) wp_enqueue_script( 'comment-reply' );?> +<?php wp_head(); ?> +</head> + +<body id="top" <?php body_class(); ?>> + +<div id="wrapper"> + +<ul class="jumplinks"> +<li><a href="#content"><?php _e('Jump to Main Content', 'zenlite');?></a></li> +<li><a href="#footer"><?php _e('Jump to Footer', 'zenlite');?></a></li> +</ul> + +<div id="header"> +<h1><a href="<?php bloginfo('url'); ?>" title="<?php bloginfo('name'); ?>"><?php bloginfo('name'); ?></a> +<small><?php bloginfo('description'); ?></small></h1> +</div> + +<div id="header-image"></div> + +<?php get_sidebar(); ?> diff --git a/wp-content/themes/zenlite/ie.css b/wp-content/themes/zenlite/ie.css new file mode 100644 index 000000000..2a0a3b3ef --- /dev/null +++ b/wp-content/themes/zenlite/ie.css @@ -0,0 +1,9 @@ +/*ZenLite +Author: Mel P. +http://quirm.net/ +*/ + +/* fixes HasLayout issue in IE */ +#content,#left_sidebar,#right_sidebar,#footer { + height:50%; +} diff --git a/wp-content/themes/zenlite/ie7.css b/wp-content/themes/zenlite/ie7.css new file mode 100644 index 000000000..61f46a8e9 --- /dev/null +++ b/wp-content/themes/zenlite/ie7.css @@ -0,0 +1,12 @@ +/*ZenLite +Author: Mel P. +http://quirm.net/ +*/ + +.jumplinks a:active,.jumplinks a:focus { + top:9010px; + left:9000px; +} +#header h1 small { + text-indent:1em; +} diff --git a/wp-content/themes/zenlite/image.php b/wp-content/themes/zenlite/image.php new file mode 100644 index 000000000..8117efbda --- /dev/null +++ b/wp-content/themes/zenlite/image.php @@ -0,0 +1,45 @@ +<?php get_header(); ?> + +<div id="content"> + +<?php if (have_posts()) : while (have_posts()) : the_post(); ?> + +<div <?php post_class('img-attachment'); ?>> + +<h2><?php the_title(); ?></h2> +<ul class="meta"> +<li><?php edit_post_link(__('Edit', 'zenlite') ); ?></li> +</ul> + +<div class="main-img"><a class="thickbox" title="<?php the_title(); ?> <?php _e('(press ESC to close)','zenlite');?>" href="<?php echo wp_get_attachment_url($post->ID); ?>"><?php echo wp_get_attachment_image( $post->ID, 'medium' ); ?></a></div> + +<div class="postcontent"> +<?php the_excerpt(); ?> +</div> + +<?php +$args = array( + 'post_type' => 'attachment', + 'post_mime_type' => 'image', + 'numberposts' => -1, + 'post_status' => null, + 'post_parent' => $post->ID + ); +$images = get_posts($args); + +if( $images > 1 ) : ?> +<h3 class="more-images"><?php _e('More images posted under', 'zenlite');?> <a href="<?php echo get_permalink($post->post_parent); ?>" rev="attachment"><?php echo get_the_title($post->post_parent); ?></a></h3> +<ul class="prevnext image-nav"> +<li class="prev_img"><?php previous_image_link(); ?></li> +<li class="next_img"><?php next_image_link();?></li> +</ul> + +<?php else :?> +<p class="posted-under"><?php _e('Posted under', 'zenlite');?> <a href="<?php echo get_permalink($post->post_parent); ?>" rev="attachment"><?php echo get_the_title($post->post_parent); ?></a></p> + +<?php endif;?> + </div> + +<?php endwhile; endif; ?> + +<?php get_footer(); ?> \ No newline at end of file diff --git a/wp-content/themes/zenlite/images/banner.jpg b/wp-content/themes/zenlite/images/banner.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ed15fc3706de1a66037b921f600f022c8b6f9fed GIT binary patch literal 23101 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 Tf^WL-b{204aAftf|9=wze0FC% literal 0 HcmV?d00001 diff --git a/wp-content/themes/zenlite/images/bullet.jpg b/wp-content/themes/zenlite/images/bullet.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4c6b92ae84d35b14d44e5f619297e86e047e154b GIT binary patch literal 807 zcmex=<NpH&0WUXCHwH#VMg|WC4+e(+w;7y4JVru*iHVVsiII_!2?h`>CXgXW`cag@ zloO=?A7BvVVBlilVrEogU=n0x7G(T?gh8HxfsqwrHUkteGBLBTvaxe;a&iAZ!mw3< zfr*isnTds&m6e5sfq}7>k%^gsMUYiU(a@1iI53f2sZhkIapFP_Wv7h?MT0JWP%%y_ zYU1P)6PJ*bQdLve(9|+9H8Z!cv~qTFb#wRd^a>6M4GWKmj7m;PO-s+n%qlJ^Ei136 ztZHs)ZENr7?3y%r%G7DoXUv?nXz`Mz%a*TLxoXqqEnBy3-?4Mop~FXx9y@;G<f%)S zuUx%${l?8(4<9{#^7PsB7cXCZ{Pg+D*Kgl{{QL#-7b62R#9N@K0Q(HhUxExwj7%&n z%q;96e=#zZGcYnS3$m~(8nOvF2C^p>3M&~ka)>xhT)6Qdr?PR-2hpUWi(FzVCJ$9V zg1iRy8F3zKBFkrRk0JbZi-Cukk%38&S&+e=;otO{#NS?77k;ciGVRxYh9*0O`>)HS z{;f~iwQS;=TQ_cG9QNC{V`~?;xz*JT7sKw|k~p*U?aie*XANgrveoVXu>R<OhOS@B zTmP7^+~1O?cR%ogN%gl~8Q08qX79DS_i&w*#l<kQV#TCYs}`3rFn2xwXINo;@K^uw zcsAb^6~TwYFTMJ7pfoezL|5;XZ@?{%OIKd$+pd<rETqKo=hAJah8+yyw>P*;v<V0@ U2)Z$FEnpB}U|??SV)%a(09d{khyVZp literal 0 HcmV?d00001 diff --git a/wp-content/themes/zenlite/images/bullet2.jpg b/wp-content/themes/zenlite/images/bullet2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5d69f1c29164eeef8d8b94f0c0c2b42ab4c56aeb GIT binary patch literal 782 zcmex=<NpH&0WUXCHwH#VMg|WC4+e(+w;7y4JVru*iHVVsiII_!2?h`>CXgXW`cag@ zloO=?A7BvVVBlilVrEogU=n0x7G(T?gh8HxfsqwrHUkteGBLBTvaxe;a&iAZ!mw3< zfr*isnTds&m6e5sfq}7>k%^gsMUYiU(a@1iI53f2sZhkIapFP_Wv7h?MT0JWP%%y_ zYU1P)6PJ*bQdLve(9|+9H8Z!cv~qTFb#wRd^a>6M4GWKmj7m;PO-s+n%qlJ^Ei136 ztZHs)ZENr7?3y%r%G7DoXUv?nXz`Mz%a*TLxoXqqEnBy3-?4Mop~FXx9y@;G<f%)S zuUx%${l?8(4<9{#^7PsB7cXCZ{Pg+D*Kgl{{QL#-7b62R#9N@K0Q(HhUxExwj7%&n z%q;96e=#zZGcYnS3$m~(8nOvF2C^p>3M&~ka)>xhT)6Qdr?PR-2hpUWi(FzVCJ$9V zg1iRy8F3zKBFkrRk0JbZi-Cukk%38&S&+e=;oq_Kb%w5@_m=0bso+0mb!^S{@7vz5 zdHMZUiCGzccCikVgnDh9_$3y>BTY_9tlws;>d6;ZnN5CtUOFx_D)-il>Ehg_%WvLU z^Did*`I>JRPpRE%b+{v8#?<(^fZ@@GI^~RAw#Sdm<?vtfax$-%$A5+`F4x31asOvf sOpdU-C8zvtZPzN{y0;4$4C8%OG6Wf17?c{A8W<Q782eZm>i^#a0MI)D2mk;8 literal 0 HcmV?d00001 diff --git a/wp-content/themes/zenlite/images/rss.png b/wp-content/themes/zenlite/images/rss.png new file mode 100644 index 0000000000000000000000000000000000000000..f6f7cb8ee8c6a3d45710e4d57cec4d602d2f96a4 GIT binary patch literal 508 zcmeAS@N?(olHy`uVBq!ia0y~yVBiB`4kiW$h6!4`+87uZ*h@TpUD<DP3h+q^XdHFB z&%nUIS>O>_%)r1c1j3A$?$-TbU|?WLcl32+VA$Bt{U?!?fq}8x)5S5Q;#TjZv--@A z636Dh%$vEk?~41P>8rXsy1Q5JD7?6Mwlb%Ay+h%`!b|oI7n;@dJm$*8sN{L5h_bt6 zR4-h5bxm2geNW}~+#QA|_kDgc^S;gRcjpW=Q`0&ht{04$tRw4|AaG%?#EiDI39;Kh zZ0WysJl~|4e{Pz%^D1%Ujq|52l7Gg%?)%4=ITC^WB>~&H%kJHp-8wr+Qru>XUtK%@ z^V=(G4y?6WW4+?s0z>6$$6vN<yFyPHT|Dj_sPU|by{dCXT2{Kg*yJVthcs-Z&D%Np zZXQpx6LsCnA(p>TYwM)#e9ts8jhy<9x389X|3+E&&kD{5Yd=Ox?K^cWRwg%Y^_=3L zO>ZYlub8pJc8mX?8l|Qu+8bUfg(QFAC}9uXQ@H<j-qI5x6RjQ_%;mEcd7;sGk@d{| zAX64Op>HpZj)h;mdOw0aS$E3!gq*1@tM1925L%x)JAd-F!?$#|gl#w<b|PTwEcHi* ziFv$>=VW%>34G1((VcDh*+lUUD^F;n*#fN(mn<xVF1>v8|N2vD|LYxZ7d=wB%)r3F N;OXk;vd$@?2>_G>+f@Jn literal 0 HcmV?d00001 diff --git a/wp-content/themes/zenlite/images/sample-header.jpg b/wp-content/themes/zenlite/images/sample-header.jpg new file mode 100644 index 0000000000000000000000000000000000000000..611de7836c23efc2066bc8ace976bee141f10cac GIT binary patch literal 19797 zcmex=<NpH&0WUXCHwH#VMur521O|rxw;7xnn3<SBh?$w0g_)U!m4lU)g@u)iot=$? zhl_`Yn~R&9mrqE5mrsz7n_ECkKu}mjR8*9QUtB^=L_$bJR0L!QBQpyND+?<pD=Vi6 zFE_6U$>9G120;#nY0NK}8I>5A1R0qH8UG()kY`|EWMu>c1}I=;VrF4wW9Q)H;{Jbx zVXFWG6C*P-6ALrQ)eH=bwTw*63@n1ILW+itY{G$w>`H|qMvW5}awt1(JSZA;@q>zS zQc)8pmzcPOq?D?fx`w8fiK&^ng{76Vi>sTvho@I?NN8AiL}XNQN@`kqMrKxVNoiSm zMP*fUOKV$uM`zch$y26In?7UatVN5LEM2yI#mZHiHgDOwZTpU$yAB;ba`f2o6DLny zx_ss8wd*%--g@}x@sp>|p1*kc>f@)+U%r0({^RE_kiQrin8CgR5fG1|`Ad+2iIItg zg_(t&m4$_Yk*S=4k%?K5g;mjzO~^5jJ+V+&$*7S-#A)KfjR!fEje|ajCKX-e5>qjG zsQMA)HL%Z!^H>vEK7)G<;jdc^Jj{#?OoGgU4E7A4UaX5@;At@YClm7V&T{pYzmhgj zeOz9Y^6BQzsE9kBr}lk+;aeB>XyU)l<;h{zt;Ma9d5@O3r!%bjP$hFMb<b;IGrowv ztca({TZ<cv>b*`bdRyx&TG;37z2~u|#Md<|)(M6@x!PD@GjVsvap%_o4-QWi5379< zF8RFKZ{jp3rk)KiL&827r|@vqgiGI@Qv3MQ(xYo5b_Q0QJQ?$6$CIGr+Dczfelhhp zeOR04@mfpOn4;hR8E&p9uX|I@7m|_x>F_(tlZ(&u9a-<d8W`FCvDj;KQVd_)>PK!d zv+nGFCMm-DY@Xe_i|5w{3JFDqueI?ivOMr2OXr<;^Umbr9?_qTZ)dU0{$*ynO6dh> zLWNgvihNB;p0>*R6*~iS^5o6$9_3bK*k|?CG{%_i;0sHWheb;_{xMzLJHx_Stih7^ z&X)xzY&J3eT*bdNH%uX2Rzuh_=IzSOc_;eZqJBH&-`?^3GTYSdNgTiD?Ob)QGUbj) zo=I1<&AeJo)!fdfZzA0Te#8~O_RHDGUe3NXbYcf{kKD02>UWm@E?b$a%UMu8tz1Nb zFY{5-s^ZYaQ%>ye&kC>F@YH2d@`du(UYlAi^4!;k3+dT?Kl}Gqpt4@EobiP#7JCm* zH99cklX;?MSd!g))9B*OMFv|W%|bLIZ^U%3%<<s*RJkywd3Raytp%Ukmnu$>nkq8) z$io{mpWZ$pp*CleNk_=s<*!5k9N_r+Ml<r<hqK4GYDaQUnX&DG$e*1riv2RpJa=DT z8&WB*lK$?>p@P3FHowwy^NX>TU9Pma?C!-4r>d$hGqU#G-}}-hldr%{OFENXF~K7D z%$;`<w?pQ8ZJYVsM$3O4yQ$W`h~V!bZ!ULV*>TTmv01I$sgM)_#pA(SLiv9<ul0Mz zwYW4dpGiGG*sr+ldFz3Hp<A*;TSAhRL&LJYXB7MhyT|-JT-Ni;>TkPjdvqsDd2pQb zx_aQ_m*6=cG9y+<$a{57Ua7u1;nmsIF&=MnCYJr3r8ECqrr513E9F!DPXteRT3!`= zlE*@{rE=bxbMJSC|2De&ROQeLTLw{`GBah3k4^r5S}CVWB-K}}4vcnttXFVs^PE{# z+gw(iEKL=?_~pDwo`d|2`lwC2LVH;1p42Iu)+%lCsTaGq=ZewkXEN(gG<Ti!-7EW_ zL3#GAbNOXi5m`+fQ5H!Y$1jwuW)I&rxqZr;FEUAsF2Bpkc~CxirbI%@RcG^A-j5k( zJ@<6;dp_%-<jL*A4zGmluBN9mFSpgKyZFrR?g74^tG<QZ&(b}2!SHO>%U?CBXHqJc zJbz}p>TcXb!xayGMGsFr^!dxPC0i@Y3%PUOI9+#6m)$m#Q%I*$z2{o%x~<D@t*{PU zJ*}cscTwf!qt<p_<(5;YEL3a^w+-nDe$<wxvLx^D4XK^$UzJ^tS`?$gk!W#Fn&o5H zoeMU(OC#KpvK2P*6&<%+`gVC<Ui8e6)lnu_9{O(k?rxIL#k7;Lk)iqe+W0M(*6G<- z8*N>?B4^9_2|Lzq|H$6va>*x$b4UIB=7}et_n+Gy|443Tea5u&Tsk)H8z(=#{VGc< ze6_U2(RracVXCTcUhFOZ&(NUW{^dpL<tG={s{Xs`-T3=t5{sU_O!&;#^Vv<WepK0J zRXTI)2ATHC=~>Sw`CEK7y?6AZnmpf8-F5xRT#{}q%T@ZXZCv*8-pcY+6QL7lQu0y) zd$^u2d%dd9^VXAuxYV}QR#PSgPXC;Bf9}+&huwa-CO$Z6cYlSi+{%Il22Dn0{V~6; z7Zw+1e2#ck=r-ZyYd$d!VTNs1xlDW3e%1W``0T{l%j350T);iu&3w{H9xlEU=OrI^ zUD~3mZ8dqfx^(N2(5!80>y2-3n>)!ge`|MTY2%8!hk_279_WjEQXSq{u{iwS#cRuF zNq6?BOyW$AUAOlkZ+hsSDYs+xOgr+S$4`6a`~%`G4ciT;=DpIsaA=pweB<=%Prek) z@UIIM&Q;C3|H0di<0{MLwKFuX=YLu;bJx5Z>W#N{?SISb?LG0q+@50Q6L)tc-}ti5 z>+nIth|@fu?u*QgR?cK-;w`zg^ozOCf}ZIqF~;-0hFXS3uT9GC4#|3CU$$O+-)#F& zCSSg{eO;1$lDo;c?S15~wgnST)SdDPT>qh|a?Q^5l8mmoi?1yf`+V0eN`CgWrBVDd z-z3Xu_3T{s<?V%<>D8yxjG`qio~@kD;oW|l^Y_n3D`S4Naq~JwNPe5I!=LjpX5HSk zCv6Y7&ZuPcEBn6gmC5s{nBD3>>u0_VICySx;MQqR_F4IwD!XoFTw<xiaD18l+Ja32 z_l<>C8D3tSc}M=<JDu|r?_AY<thr;(N?QZ%R|OkGluz6}zihep&ESB&Z^D239ZOa4 z=)G^#b^o&7yT_ZS9DB2-^5^-lYxWv@MaCSvT$y!edg<Dw(|_CD(OKdxpJaVCDP6Me zoz@$X{Kbl!H+F~24SQ&ot~z@i|HJ62xPFn~_uG0WXFg|_JYMzm{hy%Rr4<WWgPeQx z3y-G1yr;h3d=md0?FY41*ZBG4wn#@QbM?=?J?pyJpX5i;FM6h(YE@F77PrQ__-8oV zbYp&l&8*L_tL^?9bRz!c;<RTw5*wnwuHz2aW|k9hB*@j?xa#`iX{V;^D}|+tDb4N) zjuyI`G0Aq#^&}5>i`x?;)+@IJl>I7j)2e8>v`8;HLwZKqx|j^3wR?hXT$GFKt-dJ- zUf#ZS+Hbj7FT0y@bIOcDKVJX1G&;RZQsVifB_*rxC+KiVbewm59XqZ4;SIf#3ugs; zCN|Fs-MC?~T&A$UUTN&AjH0NxM!ls42g4cNoK4HC(pqzQmlS$$dA^P{zTH=B;wo1; zu5}TYR-R01ejdm1Wj)(Iql&r0n`~c6WQB;Xd}nvwd*jyWHJMx12eIE<z3JSvuwy|? z3cnY8U&WWw!DA=9-t=6>{3937GTqjhZ}i;akM<-J)wo4oZ+2~Ksa*0!D?W}>|6bA^ zLwo(Tp?yzGF1d5u-~FTdnw78V-7|rQ%(pAc?UA}(Eoo9Mzjfu&CpA-SwO=gtGx?cZ zTP;_jeQI}c*Z1(?g_{h1)OO!7`0V-XW7Pax>nl}wr5Pn9|7f3GqrT(1{+?|!r<DAB zz2)-bXzz&7C;SSkp0fOEd;Yk|I<5>UpLn%x-Rk>OGcrw&-?!x1`QXc{a&ab2bIm7w z4yHN}%UiWPm`&$vcrKF;X}If~>Zw*1vMEf*bw!Me`(!=ls>Z;5OLdR2^l-%QVpz4= z$j!U?P;fxs#Q7%S;aYp&6xbc@ZE`+veD(AFQ4??Hv-D^^SKb?TT4>{hfRy={T54Yy zUzc{@Ys5bDVA6u;J(rWFXE)86WZm~=)$D*dsUnX}tSnht4{g6|VzxF-+sw-H@a9}g zk>}}#s}`KMeEmM)xJ2=km;MPnGufZ_Z(r+`xnc7wtJI0t>zS1A+dO}HZHm$E{qfT! zY+tS^vy1rpYHzE{rJwFE`0BORy7_r3#x(f7GcWd>wBOt^u30u~QH*G(bGc3Mz0!X# z^1p2lT<;Ve>p3g<nMz;b4b2tvd{?cqV3<5HblJ|^b0#>xJnNLVZAI{vFRP#AO72_| zQ@Qcn<Gwjpbe^~c7kn0<cs~BvN>6LIg2E>EsJ_g(OG>3#BA%{x<$GqdVqM(qM3tTm zd3*QIb^f-sakec#W7VTop4J<Fo^#(CZp?cmnQ3dlzT+mVqMbe0eLH?x;ro|WXAQLq z6?ET+PV$qle7x1*RM#4JwY83mr-eqQ*nQ`b=_$Q^)Zo;O(=uJlclM+<p8p*;<@s#M z<nR7ox3qozGDFpjCTemx{n>M+$gAv~rNo0-4VEmE_WZiSR`j$n_wdiq6{}}>tv%iM zX7Mu57si1$$1ItX7Gy>SI=-5lxyf^HwqHoXEAx%kJ`VRhRKEK3X_+NSKg~U5HLLZR z#fzzeQ;fE8+<jpcdQ(~4yw+RkfxxNdJoig}g*YC&=JT{)<=54cIW?{Sg7`%`3-?BE zdTaB~v}VQ8b4M<1dm1>8-%D$@*N*;Ywi%0#R0m&rG&f1c?DNZD)yEs9+b-3;__C&D zF6X^Bezj~``6k8*LggiD`#cYC{N*&Y*HcyJl*E%h@2Zgb8HfKYuc&`yyIT4DrztCJ zzMI<5{-kiu@MYwV&7sDTc@h(D?+WdBSMYS_ovO!66OY@uPyg=uPixC|JFm+2XF505 z%&C^vRLhd&lwe8teAFYIf$6#O(&X98-Fdh7-r#<r6_Mw>kTqh?$G)q4JQuTi^X)aK zJgwhVeR*2Ij+i&WFC$kPq$(s=yq^=&X`R>@!1%&9<#P1GS!^-2k7rfw`^v+|^ko%O z!p*?LT)d~+U2T6|c=W!k;ZkIKSkAlGUS4e{ETYcnB_|wt!c{qQiNldAJ2p!3DxKL| zml#xe#*v}zao(%*o{m!;9{jpA?eqrT&2yUP@%n4;Z9UP;k)rS>?GAfY(CtpH@PDi! zx5AWJw{5ekzGQMcCg*3PY%Q;I%vm*=j@^6P!+iL?CaOMOo4)wrhX|S9Tvh&)`=*%u zYFDbBUURFY$V{5OYvJ>TqQe;`Unf+yFi#9RS>V>7_rfl3O693NLXKZodD~shs}QN| zIT0b)c$;b2-4jpsD<A)>lFFYa^ZuVs?$MCSwu24EUzUCjbo*eJ^W1d4zV@>he466j zkC`_<xcDsB;%&&j3rG9-*`}OtWwx0&<!yOUrPXwY(1eE@T+J;H3+^udbMtLLr`wx4 zr3pJH&XH@M*r#bS?TE#;n9nOBJ!<bw4VA80v)}<n<7>L!af+H`NUwtJ>m^=+l{ z^f~hut(yLX|J0oIpBe64`N9`;%5&@ISq@K6hB=6otYB^`s0y++a4_=xx>8<Ahdt)8 zgo(Alo_Siky^^gx&sksCB+j$A@yf+bncPz+S2mw<TCU9gGw5fVhDY3zE1U`^wB{?m zf9dDls#RccZ|mG!;#zMaSQr}$Y&Am|EMA66xvEz_H`O{-)|bWdFezu^r8%oOf8Vg% z$~bY`q~&s3BqcVcT8P{~yn6pin>8EECik0M4xHq6^0a)RPv?iC!uc`5Ewj&gGW<#w z?b))q(`L=q1IO&k_zV5qZWZ?NJHHOybL~x4Df_HR<|pIWA7x2T4o}O|*}R)i{M!7` zmYLI4{bfHMwegDNWS@1)bNOoHjJfxDH<YY2%L!=SAJypjv%l`D(N4ww0{f-T)15W- zS{`oGI(}=d!)=aG+pHe_y^e|VUxqOr=8-?NA%E(tzRaW3nj7w$+j~t=+Hmr9=wkKK z$WQ+Q3U~av=H;ikB;kw9?vQnkr$Z-p3SO-^W*oRe`l=t_#fg4CR(ZCbPcA*%cwWil zVltO~_q8R<R-6}AV)&ChYkk%wqa5~k$KF4(%`89WA>E<AVxj*G&f_Lmf_lHZS<eai zoO$}fiM@&Sysfu9pXxki)QbM$TUxeHW7faZXT9^c#vPr+{Wz=Ep6j8i?~%__zlf@o zUpKqBq06mDZk6@5Ql({uNd^H&qI|QT#qGIj>Rb2ngpyEQm|le_!w20n>u&Dd-WPZ| z)53mfy6v4C%DT<h*%sCMJx-8IX0S?L|J+m4&8&Olb*a$AjEh;?7q+jgh{+6!j^;di z=KYz8>lK8u_J6ZlFw6V;q`Sh>L3+j4*E+K;x7~XD7PI)|-)D^KqrA^nJv>?aV0Y;q z_D`$)7JDu$(Fnh!dw=)sm5r;iuWfTYqWEn3VoC88XH#Q;91oZ$uO<AHC--M|-8YZt zrRi;A#U~GStyB?AVdlzv#Ss&}Q0mItHTj=yZ}D|`dWom=7IMytJznOo-qjH8ub~?7 zRz~LgddH@Fr?X8~aLX;0SaEiXxwxY4qZ^BFcfF7JGOy#yHM?6yb3*$js=O;|4d3co zxqSMZC2O~aJT6$bI{2!><>?uvnS721UdBAVw&Zilioo5glTB}W3x*Z#z9?I=>gw9} z(T=$$yGv$h6un||Ty3>=mg%(n_8eAS%cl2iNN{smyqMM0E8>0rA*QvHuPcjgU2eHt zGbj6`_Gizj)BQJ3GZSoxzVdzbt-6^a8eA^i&65LfSL8ih#^c$;?|d}(R`l8}H7kwe z)=oZ~+i^s{&1e_rm9Cq8ogesKY}}Ew>G_AXOW!=J?ECibnN`^3l{*|n1jJUx#2-)T zc_OB~;Anx{ngy4duN=}n`*NpGMbZ@y>4ep96SGBkY4cBYWZ*io{iC#z=%j1Dk9ReP z=G%A{G6~B_1pocF^~K+~J$Iko|N0{O*}ZS(@_t)04und`%;}q&XZ_^T+r!F=0Su>k zs>A2r{joe??v&1&HR-*JXPw!1O@Doz=Q^H_`qqknq4#Cht@YO2Yi-=OPHXO3UH_Q> z3@v@CfzNDQ`S&Wly0E4G)xNkR;XQ}Vr*A)($@P5V<hb@F%O_?C#u)u)*t=`fk*8Na zeB70M*s7xY)3Ix2@1JG=5LC8Vpv=BK>QimjC6D}6*CPw&F}#iK+r0Xob5UZW#1jVD z@O7@m#hK+7EYdpf7oPWedq98nw%Zpcb}fCYxhhL{;Xl!f%k}c*1sC<CuPq5W$}`bq zvCxT%-&>pXO0}iUx=d1dDt;E<Te5A^uZy8e`HD|G+O}$GkYAq1ZGMS>t|g0~>8_hD zJFBzkc63wW$<>pb<|X}|SuXlKQ>N>NxT2zx$CXWAf4YWF`Z%#7l&89t;kx<usgZH_ ztIfX&E?d)cQf;Rvx7LQ^_kw-B4;*>VvhlCh?Xx>QCT`%55BBNfa8u!s(O>y&d+~eW zsfW%Nl?2;eJ9o*7D{R|Ork$s{R##VSWH@oe;B8lvZ{)XK48n;I=6wxpS-MJODMwz$ z76%Pgw~H6Pi+t5OSk89xMbswsk0P57iX^G_PXDp-`mB!Z$qUcisNG-AQ26@N`kNuI z(q3P@_3Wl<+9C7PSN>-59qY=pV!T>C>p-qos?J3pZja&~KI<zNUk7>!svMZRYr~6r zzA1Apk7lI4U2wP8GH;vtw8h`!-&{_c$h+~DhvbW@Yeuj7Vka)`-FUH${nJXZ)SYuf z?kt*oL-6ypIlX!5Z>P-b*{OQrpWt_Qllxm&@t(f$b(OfU?v~b=3I0j!rc7r%wC67P z+#hvK<k~Y+Et5BA*>~|8{b$%5*uC}l<Cgqgwpx=;MHt@R@}Hq<@ub@0T!npG7xgDk zD!rv=y<@J|_VZU~|M?xL^3<nwwsOz4`dbB_cR$U$!rQYX|MhL#Y*+3XUb}O)Opgq( z%6<9c<KHY}g?@%onX8%cyptZrlrYWEV>0_`HScT9o)w2mt2Ukc&rsW5e|JgcH<`!M zo~!0(OZ+Jg^w!8dUe1y(_vMOC@$aP1exmFvUIuQN`SQZoHJ?j&xvDp?n=Jc2E!5&{ z_Q^Y^LZ`lq;s3qaC-dsASxdI(T$~_1KPDt-W06CS;FZuKm7-Id_P&b?b2|R~@ukI| z4@_Rn!1#Obt5u#m4d*c4TAY4sF-z~gudBLV6kEMcN;cr&<U260ZR*@08{=H|4XZ9~ zn!IHrmzB(yWs5Znyz`IRg(ZFD*z!Ac$Fj}5$8BHj`#9&>;%PbiJYR;NDz<T*_H^+9 z2Dzy+eLs}#b;B~-oXwRcc{WPO^2)4Vc-F?L{K|&j_pV`jp%qG9mXht;{(Zd1o;=Be z`^$2bQw1XLY93o04eko+yk21YLYzThCwCir*U#l5b$j3P${Wry<NY+}@0(}yWo~vX zl(g+wWtY^zVC$)JY38OIcO2p#Z7xi^I7_ed+?~YkzglHGQW6$Csr_~SbF)V6x#ibQ zzNDRt?w>9yGwserzh_-{w@fzUc+jTsSMzkqnHxTjE!9ouqy)YGoVdZ@@b+uV`W_}H z-QI3rWPPb{zq4PhiN1TqnKP^9p2!H#^R@GCwF_XG^ITz0(u$uC-f}odp0lmZT;$tl z;I)#S$2QwCIPAtnzZ2JgCnz&NtzWA@Ph`#~`5&9VXB&7aO=fMju9CTY{LHI;>AdGJ zZ7TUaW%-@!#=Wc0y{Uawb%!&usfWqpeI&Q>?rjz_e169Mo~OJxt-a<X`bV7$coT1w zw(72;C3`mCu{r7y+uHIC^qntlihCOuu!H$-TjnKym5f#4>NXFWgBGs68SZwZTrRo! z@SG=e9*aDgntZ6uzIsmI&NWAOdtBU?>U)Q|uPQicFIS_dPVofKv))ZQ*DC|Iv#dO4 zoB1fEu%T>z)EVy$oadDbEf?l9PUgP0@ZkFdQ@LVA>&YL^3R<4D_E6rMHhaz_pE-St z=H<(0J=q|8E-TiW=aNwG@`>{uGEe*w-pzbz)7fL!-mtF_)tp~(AWyT}tZQ5Ae+Ki9 zc2hMH-fq6UH&ykpz4l4jRry=fRMV_EzdZjLvct@GU3_Jj*|Eyy>~~MRvP!vDxI1W- z-N%0)Wiub8GOIl4JG?dJ(Is)s#nNwM%#4iBWkg=rJYSb>yDq?J64%C;v*ImQCU1ZG zCbKA}X6^JN4eOk9?Y8__#yscARk8U(Qy5Z8SK7Q`Z0z|is%I-`(|X?|{n^jr3l~yD z?W+q{S)aS}ynLzB>0=&8ox?6zavzG3s+f_S_Kv+KRNmmR?aE^{8V8<S`SePi>H3`I z*XFE~^kkQK9s2!0!{$q~&O}-~2zk|d`ogwLq7VH~)VIyz6K5=ZAFxp|q;Jc5Lk+`g zi~OGKFgmGNe5WdCO@qEoXlWg%dY9Pa;sl=lsB_n=gcd~zuPfdycW=vTg9p4v`ffb9 znl?p^>+Sg+OCy)0J$_%6-qjbY^If<zH-)e8!sV%bb*ay<o5qx!us2`Ib(BHp=Zd^j z$6}UV%`2~)x8=)})lV2~S8ei~Q(dxr$?Sd`se`Xq@@Z^J(Rq^cIoRcPxa8T;yPuh~ zT<WIwY`t?TaFedPp4S8mxvxswo_&dXer=`BV*6^jt44F5Kh3M(9btB}W%0V!8!=1{ z`G-ZVrt(PkajeohwOGAL>y*F|u?Jzf-(M7;Qav)!@r32-#tlquk5(KDb#piy8DpFx zb1ml8Et%l3)SkB!lILC3(Qe#Q-1p_gg_L>A)*O^-oOIheOwTu~@a*lxQ)}<!epz|V zMu5HUt4iT}W%cF$Rr4(VIe9!=ek=0M<Ebt)L!6xc>@WGg)L?4Qy0=HFLyvBGtn)i~ zyKQC^r)c!T^Nte(R#{ihtPZwt{k`XdM2JuM$|vd9FRib%^ZIjfQuLkB$i*I<M=I`K zdA23gG%BaWsl3e9y{CE7e+K<^T5}qbm&VktD4TY|cGcpQ&(^)%{oOh#T<6q%edo~A zlg^p-{F*htkmvaJtd(}rJj+>1*G}1T<xSHLLq?9AythZg%5qAdUt6N*ug74wb4Bcx zp66XxP0p=YooD2(KFO_a%9R}%GyUF8mEPu7eAMBRrp0;FJvsB12X$p#lP+?Z-K}M* z{(G+$vq<%}pI(M{f}bU=K5lbGSMxKcEywFvL#u=}Yua}*7BDQEcDpTyr;KTlQJV$Z zLL*}{#=Ft$o?YxtzUL&Mktg%@%d<J3z69PV{kkIZdx3@at%a3*7mA~ny<cP&pq4$8 zImvj-m3)O#t`O_;@5`D$KekYw)#u&ux9ssg?NIJF8H;bMt<KoAFl6%S;yYYN=O23Z zu<!S>J5_V{|E;>obMfoXy`TM!6CF>SEe~F4<#jP_&z@Vxv+9|@sC}3!H}SFjTDKaJ zN%CLcov`||!}QWg<xMg&a(Av6-I<V_^yhcU%h>r*>o2+a^LxG*7XK$uoyzj_P4SJs zsjHX2G|XJNF(o}dIEd4zT+(92ye9(U<?PG%YKE*1EINDVl1L(Zg|_$=jndo&eTOeC z-963X&?IKzd4`dll~0Y{*<YLVcG|-!OMY{_J#Tvc&APAplcT5k9tqYA_p1(y*<^pu zPq29VwarWQWl}ba9c1UeF1f<yOV5_ROJZ+!zKwS3-TOpsjj!#^3F}WbU-=w)`OeOy z8$XSEuH4UbNad?9<79pvD!J`>Hhb{xOS@mbyzqS1ZskdDPHyM2uwa?BR`ulP$|Mz* z#=a?&Po7#4_qVtwl=JTP4Sd{r>T9b4Vs6h1t^6dOdgWfksU7@%hr5>Q>?;!7GH1@$ zmjN@)EdmN(Wr@$6c>croQqk)YOE*3ZJz{=kON`Z|qB1_)SEdt}#2yf}_`Nr4`K`_( zMrM(ldIuOfITSvLT${6NUd`&P$cfvS8xAY0-&&kG$+nA6qIl2e(6Hi32XFqg5k98b zYmiXHkiRx>(Y+Usr>0Eat!sKBBtV48YJOCc_nevoZ!J$vytR7I9l5H~Ws==|?%Wry zb+PMg)Y2}lvUSaS7_2<ugr)kdrdTIa>#5rt?=OED@%xiGAFt!Lxlh_(*=p)o1zk?` zHlD5(TRoTa>fr;9(zTyMXT2{@XLVok+_dLA%kj-J-<GYt5xm8C#T(DHw*AR{k*j~F z{kp4maf(Xy9H}nvg}XVHtbA1*@wV(}=Sh{XNtwyJl-nnB-|m{~(mE?B@66@M3yn<$ z)uqd%8;<jN#`}a7?BQ4#@Oj>j<(}44P85c|S-a3aKInGRZ;w@#_C7LK_%-kNU0N*h zY?bM8Rz8b=s!POKCtmD)yijfZ&6N_~k|j}7Pq3t0Fwg2uXRUZ;HRo#D{KBB+7LP?m z`rBV`k=t@b_FVir@s=G<hRv@7rJIsjcy_*@wNA|_*>+dpvq}EaVQUY5wM_5IoyIa} zMfxrGz`iYQL7unFt4ofCh2JSRIA<l5d@kgP?9Nx38jI&eOzU=XeEO!ybJ?0j$`dcY z4&C#oXa2dxdNC<Q+OA^7Ho@Ck@0-64G?`g^qv~qC4fC~$%kCbqwYvQDy7T<kww-4l z$dsPntM{K_LQ_F?sMG5$2~Yl71)Fax@N-`quGeOKWZIJnEl+oTS+vUAQbFd=;jJP& zeg19f`(v!6wO;$RU*g73`wbthIIJ+?Smbt@@|9sJVTbi3=1;%1FMgu@?p5<rk4`Vz zAzv-3STnhKOY_M;T3u&O9NBsD<*Y!3lh0S&_B{4%<H}@5J(u3^<^7M2>fh>_Uy-!= z*!73!MZW0t-8XetuH_B&7N3{f{i$gAdwH)SuTW=wg_7^9H1)n}9A9s$6!YiCKOu*I zB|D=`gFowWe&6=-`j6vF{jN7?-Z5DF-8YSsYeMklUsqOZEt>NwZtBdewcYEr*7PlC z-u-UsTPF{voPZm)F<-y0;xu3`E>>Jw^Z3r^$WLaO=W|aldaf*aZ~g)I_4P0PBbP`V zNmu8c9C=nD@vNODOLD==C$ZhVE@#c=E-qEgOq_d@^Vrp6Mzz|e>zLDJ#ot{{-lJs6 zU-LQOVP5NRm(0J*^MiV<g@b<1i|T1T@2735*ZKaKRiMbrJ>OP7aa}bpZL;rHPFu~e zhf@pgq%T~v*^GPMRgE2tBK767Wc2=YJ^!q~=j=?&_g|K8J<PPKN^suR`7#a0jGudI z*1q)Z%Dquk+<a~ML}OR8T=$x_f+wCYwX&Y`q;Kk^RQZZ+jBj82irZzqyE(~^FDpbZ zYU<e)>%13oUt1z9$<1KKvSzUXYf)LP=Ch|hYnIP<j@VUpQA$%K)7$QDi_G)2wrLSp z=kh%&+#z>w>ZH`#iE}>xXSlwy<+h{BlUaS<qGz&o);x@yB6!<mQIem;^!Rs6le;Gg zOuRN%q|2}RT2brGtZ>tsuR@}_pRb%Q2v0lb$D6YBHVb3LSCMCPWRm5tEuXmP%bTpV z$4~Ip<;>G`d3sK|`DNs?0%aCS<4f~J7BDeet#~3F`6=4r!e!6xGC^x@Co_Cqb9LhP zqH?Z+ok7fkCte3UnD*e&%vEU$jj#QL1=iS2oubB35kGl_sn*?Gi8~SV=3SlKJ7cHd z@@LO87MG?UF9|)gUFFLD4AGv)3+9@A({olx1+`_gc7FDI*!(h-Wrid>_e=MAsz0kV zRu-yH-&kF6Soqew{#{1yQA=eOzvG&6b~^K=jfLeq=PSF;Sa$2q<$Hl!3PWpNRo!7v z{(JG#hLj!CycuqH9xyf9^&t1TsmmGJ?Q#w)A5T`8R2Lld_Qt`3)4qT7cVAU_LRxVb z-&CWWj`LQ>Tq?hE^5Ar4y?;}UPKoxho6eh*_c|<jf(C=s<H?yBNsr#dw0v@|7x&sM zwRyYjsyRVTd~WXRmqu-`NoFr9SKBaU-Ok99N^ewLY@;u&Jsg^QTm9*yb%%~^DDu4V zIcv4pql6{=QM)DF6usUZ4es?8RbHEW%O#S{>ifFP^R@nZTc)^2A7PN_Y5TgCL-+K9 zw+~8J>aM-H<Ev<$G!sjf-AmImuT-|%L~Wg<A)U&>Kdo%uRFP>1BPLIkn|h%>ZSuta zy)M(-Pv5>QI(u!c{>qawUi+Twt1u=f`MIXXD3;4jy%KXH=k>8{rFTr`d{_5q#e2`2 z%5~z<G@agiQ-cDhCs~E{p0T-BGPBpqTszia+U|LGEsI4`>vpWlH*}tpQocIqp}P#% z`FVlIve#xWd=(t7IQ3xiq{^28yB8`nfBL>;Uh&qpiZ82z&OR%QKEyk(C-bwg<UZ%n zGs{&T_eZU^y-~`uoO|9>p6gjDJXTU)68Uz|z4CJ3(YCo9Ia{4=UI`>TxoY|Do9CPq zsdb-{?af42Z*}};wb)}%>Mh0<w;rFC-dp#5Ymj(d#Lv3IzmIRN_AOG*`C9xkR$zIp zPTtDsV#jstGfzHUWvR#1#P~iW?qf?1<Kc2sneSdAkKY&0dfjSXx^TUc$<bpkBZT|3 zH1!;u_aszZ%fId5;CM9Ld|sU3F$e3{85aw$9S-yk4qRvU_g)rf-p-$WylLELco!Jg zP376X$jDj9@Q=!~UCGWfIxUVDM@7G#AS1U&IP}SUfvM-2*-bn3mMDjvO19-#66<KN zxBT0>6%X&8E05E-CEoQy!0@cg<qbv0-}SMk^g66gz1{DXaHT=Ito_&3-<;|to!>sx z`Zkv&CeMr9mA1HgO|m*~#HIUf7KY5*f7EKN&eHq6O}6_^*u@1;wz`{a4D@#^IlX#I z)~OJ~gRcX;SGYV^Z@YPEXaBah>ik>x?+rA4=sfN3)0_?E7RzU9td^d9Pwl4Ve}=5p zo^@pn^JcD@xmCTlV7b!Dy)R4Id++|u-X>A9C4FkNVXWjvwS_zV{0#4{*n1%CKvH@6 zD&C61R^53&SAB}HWO?58wpV1EduO=evsW2gFKtec%Tlg!s%pNsqH<xSY-Z!tHqU3< zL$3B~EwkOX^!ogCc8Ra1GSeftIQrQa`o9jfd6y}9xUcHl>X5HCJ0H(|6Y+V50rOJj zbM5cU&xc+;#4~U2Dz)jEXLC;#_)FdEou;x=HRabOoi(TYw>o^{l+V8#ccsN3=iRc! z#cdVa?mg|dSQGIsOIb0+;+54Ep=q@X<}~`03$A3I7`CV{Gby!tQJ}Wy-Ire1nQNWS zPGLRgzSR5-$B}uS??X@ZWrpXzi>UnY^1a79?+MnSVXAy@p3K|wP$6-?*J_obQ=9#Z zPKojG8T$+8KiskA+hpC{wwfQeU7lrG+0GNQa_<-Yb_Q14sD2X}-q~GWP3NVn<bGNH zcY&9PKHpy7)HlE9PCUMPdQ?i`r+=@1UGd&tc5QN5b!gbs8A8V=UYfNjFUa%RtmVm` zkMH`PKDyZNi)Tsr(_31zJwJ7IoQeN*J7i%>`qyVu7p;8}XD(A@82EG5{kW@<(G1MD z=4_h!L@x8woJ~i)qKwkQ^8DqlN>0yY;hz!`WV|_LyUBqEANH89HSWGGY<_R4!iEH^ z%RF<^cfJnXclTH~_iZJof-dVzVk<VWdvQOWcx~>j3#USZugu{6yJCgSwM9*}YpP|# zrasb^7jWNqE=0)v`{J~Nri;#b34}2Jy?iD7{I%~vH&664&zR}wDf@cUrG47*kxEC4 z^QL=P=*}_IKC`+Z^WMxalI|T9Sr@-mE~%Zff2Q`)KilK4Enhy##lwoJHbY3jA<sSP zvGR|(ORZL$6f1uZU}XNduG#nco2@5!u5IRFJhh)~&#x(3&Lwpdo6i^B$@x1^T2RvV zZT)A{YoQhA9{#$trS)H`#n)9Q8x{z$RZl*uv_oa8dgl4Su0zN7zBS!gd@jzwLRRyn znj1TV%vF<#p>9=Gm#+n$WbTi-nCx+7U+a;Yn!Rp@T~*fFE06olTosr1epkIzvDZ-t z-m}_Lt2&KNOlO(*Y^t8!2lb^v{GS<{itiMAKR?#eGwI%pHFvnaZNK#NaRJwgcNy6e z<xjb}FAWyrT`<9RL$RMb>*v1XD;G~YdMxj{>p^?1S37#EgRePoGaj_{4UFVubUfyN z*W|;`+kJmuJl*$Ht98D4_LJhbK{^jMSe%bPw8~_+NN()${U$5*&J~_~rDYjp8p@q` zFXABYL7Vk!y*TdNRL~T4jhV#sXZgH(u85QqT+c0RGfi)74V<1hC%@pn*80HLK_)E^ zw0W0b2&?m~t2`f7_Fnf2+o^A+GApj%y0dp@mqGG`9k-8aOfXk}Kkw)9mm#x?jx>6u zomAl8egE3@%^TNby@(fAX}I~I>Y~hU53Rb;hsW0jrE?u-e`=d~$!f9e+8uI>Hb1#{ zbXCU%a~=72tNHGH_A@q0*feqfvaE*5h3B+fRLs7e*7`MXs?Ew56Bn(>a5ZqdQTO3h z=7|UUT+>_&jP8Dy-y7^+B=CH_#mcF6Yp#Z*br~DaWPCPHjW2?SX>YcbrKjZG?YEXh zx=H-KA76Fy=>6o1b8q(KmFI*eE#3UNDx_aCG*o8QSIOU39rZW@8<@VIweXM;p1gZ= zRh?+h;#%L3?)Qc%5-h*DD(7yx`}xYFl{&{v+3kC6Rnyore%5WBvbfmklbBre>YC>F z)t9G*)fBP0FAXu`SLV7SxA@YW&3O`B?lyuEJ6206{b!i7u&8Rqli!yQzcc)})xYrG z3U{s6v?MmZvaf1Oe><&ob12%kb#jx&MI$!pjg$Xgyfwj#^VS-ps?dn%2P`DjSEtPv z(s=&vmudQfwMpk53r)V*D0BJdxzFc}w071Ub2hX+$kaBoe4V3Z+}EC|-xOEx<!<sl z-TLI$r9(GE{r$GaY<ns#o&I}q`H!IYf{S@RRbST*yDN0v>5czXg@P=PB|kl~mP}>~ z)js}pWmxQzNjuoDZJO+#EH2Bvs%(Sg>&v&6_iXxN>Ke`R&hq&3thwADEDnBOXBl<P zV3Nn)o&FLBWqs|;4l`8-UkDL=S7#=gH8Zr0?UMVab(LFYo;hu38Fu2aXqlwZtFs4X zS2Zo(7^8T8UDla|=HG|JWlyfNG_Ah#cx6hjb?v=^xZ_K+qWAfG9pAopyA$^vrzPd- zA~$QY7i9KtdmXa9b>kedb(Ky_{oC~4*>s(aoZGq}aO<`wv+iGB`^huZLfIyK`q_`m z56-giw~uU{zWzjUX#W1}{PtfuE^E(xU*pKA$WXU)MIW<t<gK}q_LJ?x#p48{PU?qE ze^q^LZpNjl5<frp@cjvQ&R#TASvsKkM)A>_%Jp^kXNAsDEb-?*mBPbO`CP(o=b>L= zHvbtu1o;aeinvixbxNnF=9AdJrd{D&&!=u%oF6v*VezBF%2tlO*$3-yU;oc=DWreT z;|nP{qOng(7(%P}vK}Z(y73^TA^Y>a&;PhIKWaVoa?yEv<v&A#%+-wj4;I`Pe7yZr zOyt>vtaoIOTmEN|y8YMveEeRG<Nq0$+<SSB^UT|^;_p@apTh6n2K%Hqot2hh3em5d zdiMV9pN2bfkM?oIl&$Yuvp@g5MC~$7{VltrcRcP{7&>8{=W)w}U)J?|{@tHo==pc~ zLzQ_>78&n0xc{?^s$W%kl{>C$`jUxXBy#Sv?2~ax`Ir5l!OQ!zUBmucRu(<~8Ma1T z&P(;3uv=S3?}BfEl=$1#5AG(c*n4@|W!2>G+-&mmSW71UssFI{iO;lIb61`0GdI(o zR+(ncuNO5%W&W(4-y(E!45cm=)=l#Nl=|1{*uQ)3ecs{hd2a5qM%wesckrvEvE5^^ zwcFzTsO%%7ctI9-sc?bK^7DS0mnzyqSiN#e<2WVHs&Y-4yJV}~v6if&WtYm|7HgH4 z6z`3;J!TausTV7+-1t69{#JgWv0-3?(arZqLw3#Lp1a87l$eFIU-re8pScU)UcOv0 z<(|vQpu_!DOA9r5n-z}dO<h`^n$s2GKJClh{|wjG%-yJ&dszEs@#T-}y{0@?f4BI; z;!N!&n!B`G1SHDU7TV=>aIpLnIVq<p+9r|E*K8_!ZNXFao96@zrzW0{df&5d&9vn~ z-TOM!Cmfhr*xY|@)$McJSx?LiZFuUdd-aa-qMw^Y6`njSj=a^kTxg?#oAhOw@P%$R z-#oK~YgWD4*7xbe#nr2mzb?1on^1q=v-4?m57(J3mFpMP{^-9rrAV`Xg=bDAORuuQ zL7g4z_NS{`tFJQnHu34R%^OWN-I<UaomM>gd)Acc<;NVP%+48vPT;fGQkXf<Qz}!| zi?Lz(<g-Ta12ax?MPB)CyLyx1r0KeoEww^o_WU`kwD;-Jlm8ha_sD<qT(#&^?Lvt> z=AEy9Ub${w6dj#dRD9LrY|5Tz&J+CnbFMG+GJLu@%!bD`&okrh*^G6UlR2-jzC9Z{ z>z_%_jOb_VE8j+LVpqrulWUpP7Pw=h_VzncZ(3EW=f&pKx~!T0b6W3f<CL9hGxDFR zTc6A7V41_^c4FQ7bkPeRmv^nW`|fmat#%%p^I7A!eH$Ow2G`78QvBB0egE7WUmq{c zSb5~pG`+3wW~=v=C7*n}*DkW{;Q7}f8%}UAD{owq6p=6|_-WUTV-c&?X8EPv;$ZJe zn4a$X{MtfG+lpn|oE}Eow`Q$evei;OE@k%TY0p2J9M(3!Yq4UxK&9okWtIm{JX)*k zueY=^$NO2%>yrz+-v4KKeZ~7TU*>}R=VkU>*RI?Ayf)F=zwMT0U*vS_eTf&Y__+Ch zUN&9J>bc1!%hVv}mNkAi`Jy*2)!)zX!8S`(@it5GYcIy+E%P)#&H23IjbH4N_?eE! z_h}ic)y1`hI5J3_{PWU_)v@`kNy4)mI(wb|DPQY7&i<pe*F}QC&vLnO3eP<Ms>PCi zVH<WI=K1zzv3lOUtMc`(%f%QT%?dXvDid6)<?-5=ufXZ!ye;du$jw~xSfTMps7hbi zy$1)LF#fpoUdOB}TPEdl&3VV>*UtN$)$RwyJ^5~;&7v+Nd~N14`FH=eTsku6%PLh{ z&+ShbUpgja$(2pAJSyGha6annyZp0Bxd(be96MgVo|U08M~+t}{r0u?x`l5!jmqAs zuQf3`Ik_+V-YmPkA97PJ6iDzNxwz8ia5wX$N|T2TMt8cpjHkbx_}ZEI{`#e6>o@YB zm|R@Bw)v>x3}ZRV#r5wFHBP>}H<MehV)Z69|G-lV9d)X{ESoNQApY2_GYltx?$uoN zyMMu=6K6O6?iD%kU{0WG$1a=q6<?R!Gd_5H$Fjh%y2v8m=RYJ5zVr2%Y~v#FWRmfn z)ybwjwJ*PvY%HAIxADTgOM7xxzMRB#Y4#FXA?NweW9#OA)H?RK`$`4BO@sfZ^+qcm zCoN`QTkOy8x9r8QJG;9+$86NNy!x!@rKt6v|M=%NAC+?1c<j(GBl&l2C+z0FO1Yk+ zx+5ZaZ|jo0&fW6sy*|8o*pO6YRTw1clOi+K{@y$7*}tv$)6Q>P`pC^tWw{gYPqY2& z_k2I_#IrT^#G5sI^;!jY_VoEyxI~?O<GWKYm9?toZdU#e&r<uJKPUhDy{>%vzDe#o z`Gq#Tt-g^N|HtE-u6NwV3(9J*9%#$&mipxXG}7~<zKfo8&BrIn($dXw-sLO2E1r4J z^jTUZl*O7n$NEX#);&c(^gHig_+U6s`SJ7Uzmw*Kh@J9!{~_bs?|g}j&j;3&vUF}L zTDNxo(<rlF$L1Hb94{8`J0rvO^FKqu6Q0MPR|-9R9K>w!O(x{De!Hivh>iC#{l@`4 zd-e94onNFp;oQbe8z%6b$_%cu@jez&I7$0}^0oK56Dq?eyV%ZK_Mf4pKd>_J);qV- zcXAsmi~kkh?(f`@E?Q%<{+~+qrJtROF~#rQzV-I~GyZYC)BUk+mi&~s&H4%9_G>ev zY67n5HiUbqG4EdZuWj=*rbRcGRb8?1IJI0aYQmg4&woB&-<zlLxm6c?@0d8Rp6k<# zf7<sr*=Hx`IG%Sny#3np=12Dg)=YCQtGIP+Lj~90{=DgODZx?Kvajj?<9s<k<H`Du z@>v1Lvovk^z8*UG(b;d}MiYOT*x9CK@|{wqXP()cpA2A=Js+p7zv|j+;hT$(Mw*6a zJX*YW`^IY~4JpmX*J@1Mu;c0e?pe<gJ|62W)@;<fBDcHqb=cyMX;Ut*iO=mXPANT} zbt)t)HqO5B)#Y=aesz63;<$F7>c4b{H$@C5<+ePTp60B7w&&5N#A`WAIyT*Nsabsf ze7MVL?TvjAOX7EbU#%HDDQdOcRGV0-{fB4OoBU@`x-qxkmd*G_;J1Yu%$3~to6iPD z9?)ZyWKUy!w4Cd;SXuAlm1}m!_MN!upT04}BeH45p<mB$&A;-Yy6XEX!&Cb!{h8Nt z7wq2m)wwzC)GF7Hb{{8Hep#tJ|9fhRwQsua1+R&Di}RvaE_rlzab&!+W16+QCG%E~ zbXHDwhEma)GEX_RPnc}H(-84hd29Ncvr|hZF1xO}IIhB0D`n5=L_hHzYj!;6^5!cq z5&2yFhb5tJ>*Qr6Zd)&|nA}zr@@Lr+?*kL3>D+caaJ=et^wLn)Dt)%8?<!d<4?YO< zo4VD!H#l|aO_e;ap5MiOpYIpmRdBG~uXU#H;oK#+cHd@x`en`C@T0r(x?arcy>_gw z?73)9rdQs@@WgOwcV6GCM||D1S7+)Uc`cSZLwY*<a+8mC;ZJK1lzmw*bG6RWJ-z7T z%W0VfEB_P;75+@x8JqrCZtv=Rk0)K1#N^9Z6#8sEO<x3`+-NF$r!x3mUFnR9nTK!4 zrE>Kxnf_^c{@%s+zw!%b?$XlOy}!>`@j>26iPx83X-oZn%-*_2u_i0mr29a`<C^)) zCDzYezHjHwiA!cxswUr^UH+e8)xyu_X537*hH*>n<QC@N^W5+MBl**x{O%h!&A-~1 zB<(6TyZ_+g`>Ou8+{<sTaXNJHdE)nZj$H?K{9R}oQ@{A;LC){b_Dq^wTUGKYN7OXW z``3Ko&X3|98;$m4f2wp<{dxDF`qG%1nvX6wxlID=cT4<d;96#9`eXatT^%R?efsiO zyXjo!soUAhEc3YdUQMZcd}zLS`d8U|M)j4q`+MSag!k;fwMpBYoxP`4OVdvG$HwJC zy;%<o-tKs`<L%E!UDsb(#Q*#%zvJ0-p>(7B;`V<y=dSp1@X<rX`nS8+%)9-<USdx| zFmvoKmajk07Dm6gAN*BDx%^w;?+Mcd)85yF{Ac)}{x3b={Aj<}nFXGYv@dRd_jYRg zr&Z;4b{}Og{C&1}g@t{Ebo=qo>k4ZAGqkF`T`s!lP~zi7%jI`U`dgh@{xM1IKf~MS z|I)VnQ@XNTvexh8`8{v{nfgVaRLQ;Mt#Zy^^@)1_vDKCHu2jyux+n9HJx|b2)t@rK z$HP~Dypn%)o9%r4bCT|kUhA8uKEA@IW%GQNdD50E&x(t#%v@f0Xm?!+r|0i;_ZwG~ zUwl>_6qVI{E4nD(sNekF!uxK;XT|u^>^#l&jO?ef<xkK!FW2j{Xx?q1=NHNz-TW+l zM)}>e=OU{QPh#pnG}G;uuUfdZ+q%h*VxwIq${h~cx#?E%HqJ=*c*mpVx60p2KKg5S zcj2^W)?bf_E|;u7)Ai}>m%OtD*AFBX+8<lC^ws{@^ZD%a(<<v`#JDWl9ryZOx%;Ji z5`UL%x&1=9Ieg1+nKMjV78>pR`q=dD%XtPDOaC7ByYgU1+AGF`zZfdlcQ@xgmppEB z<=Xd6w|rEa${QMYNW`o({cO=EddTn7f;;i|`Y&zTFH+2-y0~x2D!td9b*n$P-(I+3 z%~H?gE0aT_G!`aB{wi*cH_w<aTjRS->v+kBECJ?gA-C=?T=$>haJ_8F*}RXrUoC=t ziwxF9H~+kT`r5-kc~bB0oGf*JE9u`MDVC~n_||VryGdbx%KrHKO+K09IW5SF#kOv1 zoKvTws^s1xZ9aaPjPea$;ep#3IauB^{4QVTAN}L`(#-Np(YJ4JeRqzh>!#>b89uGW zPg>-k)b{Cj6wTQ-X?@p`V}@1g^`CaWa6ier{p5rH44Y@I`4DxeGL+fk{NBnZ@v>Vo zk4fFDcw#%{Kf~8mZ<imf=ZS4n**Q(@*n{<b_FiAYVtbaa-&|&?QCQCZC@SRRgnH|` zGV4qw#=<-Y*%NDiPn%}g7OEh}ajf>W+U=vibT5hdMk&AGW;p&~HFvehZ8^(^uycIH zyE=kadfxI}d?(_Lo|62|6-)NaO6k?&l--uv@w&@M-TAXd{!*97$NW3;)R%_;oV(NF zS9nfxuKc}Z%}?*wPne|Lt~$eD)ntwdb6C%>5KVt;>BMm2>#A~wWaXu$!S{~Oj6HTs zY3s2V{WAr&S!*V2WJx!*oX{4$xj=rY%H{m?4m+NNFBE$>@$*&7lsQXxhCCF1`s8w? z@rAURrYG8rwR;rSMF)PIa(iP=WB8Tp3;pK2$`pS5+2%U?wBxe{waqW)m9n%-ynm6A zWcJv$>bk%_y}e=2Pba=`w?DVm@v(bA&F$EGvyG$w#$})Rx#MGAWU#xrd`PM4jhY=l z-K+9McTLcq8!s7c-Ke^!!+Oq_CA&V(sV>atn*aU9H{pN5nIHM0R_^>=`fK(vpT3Ge zn#-T$aVWozD4S>87IxDnN#_G^d~VoP0ojMUpW9q5^3Cg5IxAtLVe!&X`@<h}E!kP> zY=Rw5t~vgZbwUD9tN+f`0rzkF_v^);y%D@++BVB;=G?Kjrd+ODF{jB-tbdB;!M_^1 zTk@7wF22;d!dLeQ`<(J6I=25AwA`%EpT5>`ws%3}{JmkjW!8DbF`TfqePOgvMy_tk zrPY!Tgy(%ZntC@RQEgt&gpWQ+M?PMfCByU9a^an~k`kt2mP;;OkVvfCvd&!NsOb_$ zx6Gxd=H5T-pDcEPDgNn_+#{23lrHn|W7gGs*Zlj+<&7<~UTCM++wyy5Bu}!{bbd0S z`h$j+XyKodYtMLZa>UyN1-q5k{4viejqEPJQ9konb>N)&RcRkuR=#zgA(Jn|?75rM zdiA8n6DJRt96l`Ie&MpsohRjQ-QJ|gZJD%hX|a$vJ4@}uTZ=7~^AiJC|GBbz<<=t0 zshy6>>qR;BBqm;d?XTOqY~{Jk+Y4u}n6%?*l3(5Xt-Q*HcaOQ}T#je-s|u-%j|!`0 z)m$C-_`6Y0*^1Kw6*lQ2)>l$L*fp2NuHQI$g-4%XQH5+~O3uogXT$l7o2owhomzRo z=3-t)dtjdB_T0y7MP|QPbmX`5`HV$fOX|`ZN>?%-Sn;x`u#3I$cdK-(yDNj|jv(P# zX`G8EdL$n_s`oJPSr<dC$eme68H@)WP1#^7SL|va?`p2rGfSX7fKPL$$;`8glUDa! z-gCaHX}VhDGT&#_m!8{P30c^&JYlEW+byl13<D?mM;UiH?^K*zaMV)0=0C$aQw9l3 z*-Xdd%bz-2xl@*UeyewD=rsQ#X{Pm&71M(*s|2&2>2migo^|X_LH(iDvbc7US-z30 z=bCJs(IphLIPmDYvva4^3!APuoR)EOMzYRwlhq%cBaS%OBu;qR$8UNpKd&zN{9frB zjpw}%zxq-?QSQ^DIWOzag#7!wM_$y_?f2?Dd;Wi0oz0K@P3&`-peXZa!GDI<!X?eO zCO=i^DR8s86p_XKMme)Ety1@6(C_~Y4`fTXADNq_d-$!^&*wb+qKS3tud|9&`|X`$ z!fSfI9FGd{cvo*FCpY;X_dDZuk>>?5tHrIW=I-5oG&jj4wNQ9c)uZK`f9zg$Trg6h zuc*FT^nl>xIdlGIe6Dyf@r%hkvDSSorH6Yqzsj|E^nCgJKg<{YGdwJa*L3|YqI3VA z{l8UhzaKqYug2odyMEopIoDYy+%RF@Zuga&-O>7!a^%N#^+7h1j-I*~7T*<amAzm7 z_4JLq_AU4=y=q-y%-19P5^~Q!vo7+!QvLToLzF||jXI@Wie4iBSd*U>&YY$%cll`O zlw0p^%lo7sJgWCAld&&5_*~xOsh{U%-rgM8!0r{r35jinQpuwVFWrnC%f-twmN0O| z^m{SS<iGDZ=W@nb=DfozmOZ)De3oJPg(!_>PcFnB4|I6x%2=?d`O@sk4l$*AZ-R|7 z7U)@*Wt`L8c~o+No_(#V+4NGz!i;6ldS-FT&Ix+IEUk;_{er(=@|Okv2#`5Z_sjgU zk*&swFAMyfzh5^0eR1MT&qjxxH&*?~dA96#FoT)3qWoQpRY!_Fx5!<26SPuw^OgIT z_hhem*}#$iG*ouGaID?zk5w;2biZz&|L@j3-^vS*mub9@*?c%)<wr;Pz=lVAp6mT* zC_i%Q?(Apr#TUM6)M>jL9=^H#(V;C0Kbn*EY)&lcwwqzGUXG95C-~aa%ZmjgYu))T z%DcKB@%c3WquSEfBGoN+8kg5?2zuGgH+y$zt@Dv>W?W}==2g#YC|@rnzKQ>leXIB1 zWp8_b=2Ttt)>}6BvhB=@sXcSmMZL6Qf9X#TUV3fo&aIK1X`dd+vZlWOzN))ybHXI{ zYs+*FZ_B>YA`-f&uCVKj*5j;QTbG_yvz<3%o#ktvbW7Wnj7OuxEau!)kg#5PFMY4; zGnwSAYOjQL+FX|h<=lLcnO|0U9oZRED)XO#JJ)W@oms}t;YmBoc(Y!eNla7QqPr*L zRrfRJz4dz|YUHlmDeNnJIjb|cr{Ae9wfpealYuu&tVKVv&Y5raX{W4~^7_d9TbBj+ z<FqF#q+D2_S0Qs{mEpUp{*I6N702KGXJ{%7u9$Y?1XEjS+ze5cc^aKn&gw5?o-wd6 z_WTM;zVk0_^-Y&&^U8bY-|~J^a{t5R!~Yp<d=2;bO3P?XU02N1+k9!(a*?FXYqEa3 zdyDNk#V5U1^V-~9^H1$u`m-wi^YYG_RZ_Nd^fzjo9*K{X)yihSawY!O@oO6w?|wYl z{nk;tkgU&M@83$--+CkdF8$st)1u-TuUX&4Y`i@uxaPU-iN#YTPaCiKHgU(Tjp{9u zi+_jyXV|69v0MI;$?X1>e_l-qGMttgyT0S@zpM4{gJgq(FEH6=^A~<yDr5i}qtRHR zJ|k@MkC{7mtyz7QarxYUubRyfodw~R>hr7Ow=h+xn-s0Svvo$8*PUalUp=>dC21Nt zM=q;z%B=hu?jJ4(ddy7DI+?BXaM#4+>a&t<=HFX&`{#LQXCDWad0K0VcU`L9bYSA= zlP8wm53RX8Z*Nu5&)(Or9mOgCGQTV_Dn9FSX`;`)=ve|gZyHYNo3gOsxy=>DjgAVl z^z_PnpZ~rX@X=MtcCo>WB`223d|AV9ps}bcK_n<8=t__Ov1whJFT}Yt7B%b$bQL-D z&{ZVp6^Ps0ps}cn>7lDgfVg<6#<SU8{31N1ijR7_oGO+lw!JDfnmf^hb<t#{o-T$c zO=E8-hO?53y4VXtH@^3NRvnzNd_he4%(tFXmn^wun{h$U#*Uq7;_Om2LsyRm8JWv_ z&S&L{Twu#Q_`xbTV~KU&XWNy|Pacb$3bim{J*hb_eXDiF*A*|MQdZrR)hrJVe%BSn zrfIokQ5Qq(m7U8j`@Q*isqx;EnP)W~&1mU)Hg}>!d)|^ICl)I;-tFGecc<!tjNFvV z*VoHUS@3+D2KUAz&n9&_6g$LryNb+Qpm%i9WTgfW&-b?9Q4!V~&0SGG7bk*b6%#aV zj(%OBceqsX*>tu^vs5%}_@gvb`sQXb+&%t#%ik+^&%X3_IPlq3q^0rNjMhaH4AiF0 zZOA)cWmbLZz1)@s&z4Bsneu+lWyhqunJI5Qmb0xC^3ZbGF|}&ntL}=giz~h^uNE!a zrl)!%kK^F4E4!N+n`fO)KIgdnxV2j4S?l}7p`l+*jNNKi&AKal*jDpDL$=)3DrMJD zv6YTT-8L(i<XqmQ+4rXG73W#=0+W;g@uW-B4jzxnb2Sm(@_a30nMc*-sEPik&qp~u z_`V=qq|kfUY**&pvb%b(+|p19D)w|0VF=1yx~PG1;>C?Wf|~o5+qb%%aa?jILuIx} z-iqep^Il~iUpu_BFI9XtOG0qY#U06(3&KU_lr3RNU#2<9!{XpFPRrM>M@xLpca_im zcQ-8ktb6lo2TRk9B_5ow=T{YI-=7#Vbw==!qwYQzi>7+7^{&4DN8_{jwN-x?%v<gK zyneIm;kn;+#LibSGZ=>cxnE^-zKZ!)%!UZ5ymy6xowhHz1&XYKb`;w^x%q9;!p~7% zNjs<e`E9wS%{`~NJ=pQ3@1pL8;FnW^7{3H-EMULrvuN&tT9H$lcR<YP0rIX!^Bq`4 z0(}*@H2J-9)tFx_>e91r6$$iV>e5(pOeD~Yk8#ms#%pr}-~U`$eo6HB#lYoJlUDX< zEZfSw)`M?Rmu5qtt4IV>m&O97F7bDl_@*>OX)KVDxx9l_q$Pjl3P#~~T~QiK0s>t{ zcr+GuF=#BB(9;vVgWJ_O)ouc-)}=rPevzxc4^8S~s5SYzJkWt>0neqastkIUU-~Tz zbl|GG6zIyp(s+HT+Se~j7d6JzntWZ6<??$`V@#Chnj1$g%-l320$p8wT(+FF4$fc~ zQP{Ead#h*QG`2}An3nkO(wyC@Xt`40rFC$|0ozOm?z09$T~6kgE;B6ZGN1DDUIUkA z5y$r>3s}Q6FI@Q;TfiuDwJPK3hN@t{qnaj}i`is?t_p-HPN+1gUD<d%tLEs+@A`ou z`>tfJw@g1PbNE}wj<<bUx__<|#fmv-Df~QWQp`P9eBx&RRo!K$KVAB}=JGR#CEX#R z5%0E_E}uPxU1pZ>&TyA6p=CRr8;sbioUNK0DprXb>0At4^7^&U?~uB-N#(K^zW+Wp zY4M~N3|!CVZ0AZ=`MOLm#j49?rq{fT&%)Olo;gjNJn_=3w=aD@uWZY!x>783_jtO= zmh(1Mm)0!oGY<Ny_M%jzX5Uu6Z_DPk`MNqkd%W`5)YS7;PCIo)<!8QkpZVTlou`MN z=DIJ3^~5EY-97YV_sWMKv}R6LTN-v&VW<5pjTI|aJ>#CbjX&74!Fra)nl;5M4UR8= z?Z&_8qN^CYn(20aubBC+i@J1L&mB2krT^L^K0ko}QkT}6H6<#uc5s@@FgCyU{#?J= zRn$zhz3{z91eeC5<Mzh9hcC5SS{#4wDiTrirtb2K{cF|FzI7FO)0_GG`i^|&CZpOF zcXz+*sm)k4`(n(L+f$q8JqYYibQN(AUAc6^PP?Yb^RqOTOnB3hba<I2W6rllU1cm2 z-p{@@`T5r<jirfO+LboiO!RExeBmk*m{R<C%NxdWxrX39>#H;tomiK4jN$O_Ef4q0 zhJRYrRmPX55tg^4PGmR7bCW=?6P7a)e*K#=yMF;#>iDW@0mWThk5}5aiUcM+OZH<p z=c_FszAt0Z)b=trd1gtIuZewM0z)$99z9`eA7wbt&{afg#WD?+lB0V68P<vfn>^{5 z{qt4kF$acM8H*+qxv(_MNx1Z+`l741xR&F@_x=G($`^G-&w05)(S5DD>}FSyH*HTY z^ZcF_uk))*V`;L-@7ry6N{>nxUuNpkyeVmE!pOf>@BC7cz!X)rW7DK}Kbrq(ew4=2 zWbfX@dGptrG_m=L1aDIN)j9FKoBLjopc~5$E8m;Kd-LF*7mMb$%Eq?MJyoeJcV+g! zErG5Ro-dX@zSq`+%j%-5wz74zsKp7j$pvpLzc1=4yCPh3lI_{IC6DiQX`NMHx<=y5 z5{2@=8jB|1m~iNqRGjULMN@okCl~E&>*=r3Sh=-p@+Ln1{|s?W?1iqP*~xb41$^v2 z7bm`V6?t3mEU9tg@z>tXZ(T*$jiom*&jRUgc$W0wcaTKqbA>=x#xqAg`PF^3S$0Kb zPJfohg79RceQndTs{>udxH}xbEm7$y;1vn5n=a~^+{5Vq>HLaCT{?PcuKmUSp}C8B zkMCI2#hrKHgvVi-znUyrY>f83BEdW78}DFI-m8E9)&8j>L8k3{cS>*MDXRRo)Mtl< z{algY-6k8}u36lqak@ItReMv8y!lpxd6j=P7EL%{AX}7qu<->b5SUIEfYP)7=i9$m zyNVnXw7hd<PV);*X4ZEZiyCioKTE$hz5ZI4rf@coxx;@3UJHT8HvL%|%d8c+*!N$X bUKm$DRV2h{N<iiFEB~ehx+;EJ{Qo8ZzM^H1 literal 0 HcmV?d00001 diff --git a/wp-content/themes/zenlite/index.php b/wp-content/themes/zenlite/index.php new file mode 100644 index 000000000..682c47077 --- /dev/null +++ b/wp-content/themes/zenlite/index.php @@ -0,0 +1,6 @@ +<?php +get_header(); + +get_template_part( 'loop', 'index' ); + +get_footer(); \ No newline at end of file diff --git a/wp-content/themes/zenlite/langs/zenlite.po b/wp-content/themes/zenlite/langs/zenlite.po new file mode 100644 index 000000000..a9ddd60a8 --- /dev/null +++ b/wp-content/themes/zenlite/langs/zenlite.po @@ -0,0 +1,451 @@ +msgid "" +msgstr "" +"Project-Id-Version: ZenLite\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-09-06 22:53-0000\n" +"PO-Revision-Date: 2010-09-06 22:53-0000\n" +"Last-Translator: Mel P. <esmi@quirm.net>\n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e\n" +"X-Poedit-Basepath: C:\\data\\data3\\server\\wordpress\\wp-content\\themes\\\n" +"X-Poedit-SearchPath-0: zenlite\n" + +#: zenlite/404.php:8 +msgid "Page Not Found" +msgstr "" + +#: zenlite/404.php:10 +msgid "Uh oh! I can't seem to find the file you asked for." +msgstr "" + +#: zenlite/404.php:12 +msgid "Perhaps you:" +msgstr "" + +#: zenlite/404.php:15 +msgid "tried to access a post or archive that has been removed" +msgstr "" + +#: zenlite/404.php:16 +msgid "followed a bad link" +msgstr "" + +#: zenlite/404.php:17 +msgid "mis-typed something" +msgstr "" + +#: zenlite/404.php:20 +msgid "Try using the Search option to find what you're looking for." +msgstr "" + +#: zenlite/archives.php:10 +msgid "Archives by Month:" +msgstr "" + +#: zenlite/archives.php:15 +msgid "Archives by Subject:" +msgstr "" + +#: zenlite/attachment.php:11 +#: zenlite/authors.php:16 +#: zenlite/image.php:11 +#: zenlite/page-without-comments.php:16 +#: zenlite/page.php:11 +msgid "Edit" +msgstr "" + +#: zenlite/attachment.php:16 +#, php-format +msgid "Download the <a href=\"%1$s\" rel=\"attachment\">%2$s</a> file." +msgstr "" + +#: zenlite/attachment.php:18 +#, php-format +msgid "Published on %1$s at %2$s" +msgstr "" + +#: zenlite/attachment.php:18 +#: zenlite/attachment.php:21 +#: zenlite/author.php:47 +#: zenlite/loop.php:11 +msgid "F j, Y" +msgstr "" + +#: zenlite/attachment.php:21 +#, php-format +msgid "Updated on %1$s at %2$s" +msgstr "" + +#: zenlite/attachment.php:38 +#: zenlite/image.php:38 +msgid "Posted under" +msgstr "" + +#: zenlite/attachment.php:38 +msgid "Return to parent page" +msgstr "" + +#: zenlite/author.php:9 +msgid "About" +msgstr "" + +#: zenlite/author.php:13 +msgid "Bio" +msgstr "" + +#: zenlite/author.php:18 +#: zenlite/functions.php:238 +msgid "Website" +msgstr "" + +#: zenlite/author.php:24 +msgid "Jabber / Google Talk" +msgstr "" + +#: zenlite/author.php:29 +msgid "AOL Instant Messenger" +msgstr "" + +#: zenlite/author.php:29 +msgid "AIM" +msgstr "" + +#: zenlite/author.php:34 +msgid "Yahoo" +msgstr "" + +#: zenlite/author.php:34 +msgid "Instant Messenger" +msgstr "" + +#: zenlite/author.php:34 +msgid "IM" +msgstr "" + +#: zenlite/author.php:41 +msgid "Posts by" +msgstr "" + +#: zenlite/author.php:45 +#: zenlite/loop.php:8 +msgid "Post" +msgstr "" + +#: zenlite/author.php:45 +#: zenlite/loop.php:8 +msgid "permanent link" +msgstr "" + +#: zenlite/author.php:48 +#: zenlite/loop.php:12 +#, php-format +msgid "Edit %1$s" +msgstr "" + +#: zenlite/author.php:61 +#: zenlite/loop.php:27 +msgid "Continue reading " +msgstr "" + +#: zenlite/author.php:62 +#: zenlite/loop.php:31 +msgid "Comment on " +msgstr "" + +#: zenlite/author.php:62 +#: zenlite/loop.php:32 +msgid "1 Comment on " +msgstr "" + +#: zenlite/author.php:62 +#: zenlite/loop.php:33 +msgid "% Comments on " +msgstr "" + +#: zenlite/author.php:62 +#: zenlite/loop.php:35 +msgid "Comments are off for " +msgstr "" + +#: zenlite/author.php:63 +#: zenlite/loop.php:42 +msgid "Filed under:" +msgstr "" + +#: zenlite/author.php:65 +#: zenlite/loop.php:46 +msgid "Tags:" +msgstr "" + +#: zenlite/author.php:72 +#: zenlite/loop.php:56 +msgid "« Older Posts" +msgstr "" + +#: zenlite/author.php:73 +#: zenlite/loop.php:57 +msgid "Newer Posts »" +msgstr "" + +#: zenlite/authors.php:14 +#: zenlite/page.php:9 +msgid "Permanent Link:" +msgstr "" + +#: zenlite/authors.php:27 +#: zenlite/page-without-comments.php:34 +#: zenlite/page.php:29 +msgid "Pages:" +msgstr "" + +#: zenlite/comments.php:3 +msgid "This post and it's comments are password protected. Enter the password into the form above to view any comments." +msgstr "" + +#: zenlite/comments.php:14 +msgid "No comments" +msgstr "" + +#: zenlite/comments.php:15 +msgid "1 Comment" +msgstr "" + +#: zenlite/comments.php:16 +msgid "% Comments" +msgstr "" + +#: zenlite/comments.php:18 +msgid "on" +msgstr "" + +#: zenlite/comments.php:24 +msgid "Add your comment" +msgstr "" + +#: zenlite/comments.php:26 +msgid "Comments feed for this post" +msgstr "" + +#: zenlite/comments.php:28 +msgid "TrackBack" +msgstr "" + +#: zenlite/comments.php:28 +msgid "Uniform Resource Identifier" +msgstr "" + +#: zenlite/comments.php:28 +msgid "URI" +msgstr "" + +#: zenlite/footer.php:14 +#, php-format +msgid "Powered by the %1$s Theme %2$s" +msgstr "" + +#: zenlite/functions.php:50 +#: zenlite/functions.php:52 +msgid "Main menu" +msgstr "" + +#: zenlite/functions.php:65 +msgid "Primary" +msgstr "" + +#: zenlite/functions.php:169 +msgid "This post is password protected. To view it, please enter your password below:" +msgstr "" + +#: zenlite/functions.php:171 +msgid "Password:" +msgstr "" + +#: zenlite/functions.php:182 +msgid "This is a password protected post." +msgstr "" + +#: zenlite/functions.php:191 +msgid "No Title" +msgstr "" + +#: zenlite/functions.php:220 +msgid "Home" +msgstr "" + +#: zenlite/functions.php:232 +#: zenlite/functions.php:250 +msgid "*" +msgstr "" + +#: zenlite/functions.php:234 +msgid "Name" +msgstr "" + +#: zenlite/functions.php:236 +msgid "Email" +msgstr "" + +#: zenlite/functions.php:250 +msgid " Required fields are marked " +msgstr "" + +#: zenlite/functions.php:250 +msgid "Your email address will <em>never</em> be published or shared." +msgstr "" + +#: zenlite/functions.php:252 +#, php-format +msgid "Logged in as <a href=\"%s\">%s</a>. <a href=\"%s\" title=\"Log out of this account\">Log out?</a></label></p>" +msgstr "" + +#: zenlite/functions.php:257 +msgid "You may use these <abbr title=\"eXtensible HyperText Markup Language\">XHTML</abbr> tags and attributes:" +msgstr "" + +#: zenlite/header.php:26 +msgid " Search Results for '" +msgstr "" + +#: zenlite/header.php:26 +msgid "' on " +msgstr "" + +#: zenlite/header.php:27 +msgid " - No search query entered!" +msgstr "" + +#: zenlite/header.php:30 +msgid "Entries tagged with " +msgstr "" + +#: zenlite/header.php:30 +#: zenlite/header.php:31 +msgid " on " +msgstr "" + +#: zenlite/header.php:31 +msgid "Archives for " +msgstr "" + +#: zenlite/header.php:32 +msgid " - Page not found!" +msgstr "" + +#: zenlite/header.php:46 +msgid "Jump to Main Content" +msgstr "" + +#: zenlite/header.php:47 +msgid "Jump to Footer" +msgstr "" + +#: zenlite/image.php:14 +msgid "(press ESC to close)" +msgstr "" + +#: zenlite/image.php:31 +msgid "More images posted under" +msgstr "" + +#: zenlite/loop.php:39 +msgid "Author:" +msgstr "" + +#: zenlite/page-without-comments.php:14 +msgid "Permanent Link" +msgstr "" + +#: zenlite/page-without-comments.php:21 +#: zenlite/page.php:16 +msgid "Pages in this section" +msgstr "" + +#: zenlite/search.php:6 +msgid "Search Results" +msgstr "" + +#: zenlite/search.php:12 +msgid " page" +msgstr "" + +#: zenlite/search.php:13 +msgid " pages" +msgstr "" + +#: zenlite/search.php:17 +msgid "You searched for" +msgstr "" + +#: zenlite/search.php:20 +msgid "Displaying page" +msgstr "" + +#: zenlite/search.php:20 +msgid "of" +msgstr "" + +#: zenlite/search.php:20 +msgid "of results" +msgstr "" + +#: zenlite/search.php:50 +msgid "Read " +msgstr "" + +#: zenlite/searchform.php:3 +msgid "Keyword(s)" +msgstr "" + +#: zenlite/searchform.php:4 +msgid "Search" +msgstr "" + +#: zenlite/library/theme-options.php:16 +msgid "Pages" +msgstr "" + +#: zenlite/library/theme-options.php:20 +msgid "Categories" +msgstr "" + +#: zenlite/library/theme-options.php:30 +#: zenlite/library/theme-options.php:44 +msgid "Yes" +msgstr "" + +#: zenlite/library/theme-options.php:34 +#: zenlite/library/theme-options.php:48 +msgid "No" +msgstr "" + +#: zenlite/library/theme-options.php:63 +msgid "Theme Options" +msgstr "" + +#: zenlite/library/theme-options.php:88 +msgid " Theme Options" +msgstr "" + +#: zenlite/library/theme-options.php:91 +msgid "Your theme options have been saved" +msgstr "" + +#: zenlite/library/theme-options.php:100 +msgid "Use the top navigation menu to display links to:" +msgstr "" + +#: zenlite/library/theme-options.php:106 +msgid "Display an author link on posts?" +msgstr "" + +#: zenlite/library/theme-options.php:112 +msgid "Display allowed tags on comment form?" +msgstr "" + +#: zenlite/library/theme-options.php:117 +msgid "Update Theme" +msgstr "" + diff --git a/wp-content/themes/zenlite/layout.css b/wp-content/themes/zenlite/layout.css new file mode 100644 index 000000000..d846ebaf9 --- /dev/null +++ b/wp-content/themes/zenlite/layout.css @@ -0,0 +1,705 @@ +/*ZenLite +Author: Mel P. +http://quirm.net/ +*/ + +/* set up some basic styling first */ +body { + margin:0; + padding:0; + font-family:Tahoma, Verdana,Arial, Helvetica, sans-serif; + font-size:100%; + direction:ltr; +} +h1 { + font-size:2.5em; + letter-spacing:0.2em; +} +h2 { + font-size:1.6em; +} +h3 { + font-size:1.4em; +} +h4 { + font-size:1.2em; +} +h5,h6 { + font-size:1em; +} +h2,h3,h4,h5,h6 { + letter-spacing:.01em; +} +h1,h2,h3,h4 { + font-weight:normal; +} +a { + text-decoration:underline; +} +a:hover,a:active,a:focus { + text-decoration:none; +} +img { + border:none; +} +dt { + font-weight:bold; + margin-top:10px; +} +li { + margin-bottom:10px; +} +ol li { + list-style-type:decimal; +} +ol li ol li { + list-style-type: lower-alpha; +} +ol li ol li ol li { + list-style-type:lower-roman; +} +ul li { + list-style-type:disc; +} +ul li ul li { + list-style-type:circle; +} +ul li ul li ul li { + list-style-type: square; +} +small { + font-size:.8em; +} +acronym, abbr { + cursor:help; + letter-spacing:.01em; + text-decoration:none; +} +a acronym,a abbr { + text-decoration:none; + border-bottom:none; +} +blockquote { + margin:0 20px; + padding:0 10px; +} +blockquote cite { + display:block; + padding-bottom:15px; + font-size:.86em; + font-style:normal; +} +q { + font-style:italic; +} +q:before, q:after { + content:""; +} +pre,code,tt,kbd,var { + font-family:'courier new',courier, monospace; +} +pre,code,tt,kbd,var { + font-size:1.05em; +} +pre { + overflow:auto; + white-space:pre; + padding:5px; +} +code { +} +address { + font-style:normal; +} +form { + margin:20px 0; + padding:0; +} +fieldset { + margin:5px; + padding:10px; + border:none; +} +fieldset fieldset { + margin-top:15px; +} +legend { + margin:0 0 0 -10px; + padding:2px 5px; +} +input,textarea,select { + padding:1px 2px; + font-size:1em; +} +textarea { + width:98%; +} +table { + border-collapse:collapse; +} +th,td { + padding:3px; +} + +/* hides skip links until activated for keyboard navigators */ +ul.jumplinks,.jumplinks { + position:absolute; + top:-9000px; + left:-9000px; + z-index:90; +} +.jumplinks a:active,.jumplinks a:focus { + position:absolute; + top:9000px; + left:9010px; + z-index:500; + width:15em; + margin:0; + padding:3px; + text-align:center; + font-weight:bold; +} + +/* Onto the actual layout */ +#wrapper { + width:90%; + max-width:1000px; + margin:0 auto; + padding:0; +} + +/* HEADER */ +#header { + padding:0; + margin:0; +} +#header h1 { + margin:0; + padding:0 15px; + font-size:2.3em; + letter-spacing:.02em; + line-height:1.2em; + text-align:center +} +#header h1 small { + display:block; + margin:0; + padding:0; + font-size:.65em; + font-weight:normal; + font-style:normal; +} +#header h1 a { + text-decoration:none; +} +#header h1 a:hover { + text-decoration:underline; +} +#header-image { + height:150px; +} + +/* MENU */ +.sidebar { + margin:0; + padding:0; + font-weight:bold; + font-size:.9em; +} +.sidebar ul,.sidebar li { + margin:0; + padding:0; + display:inline; + list-style-type:none; + line-height:1em; + font-variant:small-caps; +} +.sidebar .current_page_item,.sidebar .current_page_ancestor, +.sidebar .current-cat,.sidebar .current-menu-item { + font-weight:bold; +} +.sidebar .recentcomments { + margin-right:10px; +} +.sidebar #searchform { + margin:5px 0; +} +.sidebar a { + display:inline-block; + padding:5px; + margin:0; + text-decoration:none; +} +.sidebar a:hover,.sidebar a:active,.sidebar a:focus { + text-decoration:underline; +} + +/* CONTENT */ +#content { + min-height:400px; + line-height:1.5em; + margin:20px 0 0; + padding:0 10px; + font-size:.9em; +} +/* clear all floats */ +#content:after { + content: "."; + display: block; + height: 0; + clear: both; + visibility: hidden; +} +#content .post,#content .page,#content .attachment,.postcontent { + display:block; + margin:0; + padding:0; +} +.img .postcontent { + text-align:center; + margin-bottom:30px; +} +.post-title { + margin:0; + padding:0; +} +.post-title a { + text-decoration:none; +} +.post-title a:hover,.post-title a:active,.post-title a:focus { + text-decoration:underline; +} +#content .meta li,#content .prevnext li { + list-style-image:none; + list-style:none; +} +.meta { + margin:5px 0; + padding:0; + font-size:.9em; + line-height:1.2em; +} +.meta ul,.meta li { + margin:0; + padding:0; +} +.meta ul { + display:inline; +} +.meta li li { + display:inline; + padding-right:.1em; +} +.postfoot { + clear:both; + margin-bottom:20px; + padding-bottom:10px; +} +.more-link,.comment-link { + text-align:right; + line-height:1.5em; +} +.author .posts-by { + padding-top:10px; +} + +/* page tree */ +.page-tree { + float:right; + width:15em; + margin:0 0 20px 20px; + padding:0 5px; +} +.page-tree h3 { + font-size:1.2em; + margin:0; + padding:0; +} +.page-tree ul { + margin:0; + padding:0 .3em; +} +.page-tree li ul { + margin-left:1em; +} +.page-tree li:before { + content: " \BB\ "; +} +.page-tree li.current_page_item { + font-weight:bold; +} +.page-tree li.current_page_item li { + font-weight:normal; +} +.page-tree li.current_page_item a { + text-decoration:none; +} +.page-tree li.current_page_item a:hover { + text-decoration:underline; +} + +/* pagination */ +.prevnext { + margin:20px 0; + padding:0; + text-align:center; +} +.prevnext li { + margin:0; + padding:0 10px; + display:inline; +} +.pagelist { + clear:both; + margin:0 0 10px; + padding:0; +} +.pagelist ul,.pagelist li { + margin:0; + padding:0; + display:inline; +} +.pagelist a { + padding:0 2px; +} +.page-numbers { + width:80%; + margin:20px auto; + padding:0; + text-align:center; +} +.page-numbers li { + display:inline; +} +.page-numbers a { + padding:0 5px; +} +.page-numbers a, .pagelist a { + text-decoration:none; + margin: 0 2px; + padding:0 3px 2px; +} +.page-numbers a:hover,.page-numbers a:active,.page-numbers a:focus, +.pagelist a:hover,.pagelist a:active,.pagelist a:focus{ + text-decoration:underline; +} + +/* gallery */ +.gallery { + margin:20px auto; + padding:0; +} +.gallery .gallery-icon { + font-weight:normal; + margin:0; + padding:0; +} +.gallery .gallery-item { + float:left; + margin:0 0 20px; + padding:0; + text-align:center; + width:33%; +} +#content .gallery .gallery img { + float:none; + margin:0; + padding:0; +} +.gallery .gallery-caption { + margin:0; + padding:0; + text-align:center; + font-size:.9em; + line-height:1.2em; +} + +/* images */ +.alignleft,.wp-post-image { + float:left; +} +.alignright,.result-list .wp-post-image { + float:right; +} +.aligncenter { + float:none; + display:block; +} +.alignnone { + float:none; +} +img.alignleft,.wp-post-image,div.alignleft { + margin:0 20px 20px 0; +} +img.alignright,.result-list .wp-post-image,div.alignright { + margin:0 0 20px 20px; +} +img.aligncenter,div.aligncenter { + margin:10px auto; +} +.img-attachment .main-img { + text-align:center; + margin:20px auto 0; + padding:0; +} +.img-attachment .postcontent { + text-align:center; + margin-bottom:20px; +} +.img-attachment h3.more-images { + font-size:.8em; + text-align:center; + margin:40px 0 5px; + padding:0; +} +.img-attachment .image-nav { + margin-top:0; +} +.img-attachment img.attachment-thumbnail { + float:left; + display:inline; +} +.img-attachment .prevnext img.attachment-thumbnail { + float:none; + vertical-align:middle; +} +.attachment .attachment-caption,.attachment .attachment-content { + clear:both; +} +.attachment .posted-under { + clear:both; + font-size:.8em; +} + +/* captions */ +.wp-caption img { + margin:0 auto; + padding:0; +} +.wp-caption-text { + margin:0; + padding:0; + text-align:center; + font-size:.8em; +} + +/* comments */ +.total-comments { + font-size:1em; + font-weight:bold; +} +#commentlist .commentdata,#commentlist,#commentlist ul { + margin:0; + padding:0; +} +#commentlist li { + margin:0 0 10px; + padding:0 0 5px; + list-style:none; +} +#commentlist .children li { + margin:10px 20px; +} +#commentlist .comment-author { + float:left; + margin-right:20px; +} +#commentlist img { + float:left; + margin:1px 10px 5px 1px; + padding:0; +} +#commentlist .commentmetadata { + min-height:32px; + margin:0 5px 0 0; + text-align:right; + font-size:.9em; +} +#commentlist .comment-author cite { + display:inline; + margin:0; + padding:0; + text-align:left; + font-style:normal; +} +#commentlist .comment-edit-link { + font-size:x-small; +} +#commentlist .comment_text { + clear:left; + margin:0; + padding:0 10px; +} +#commentlist .comment p,#commentlist .trackback p,#commentlist .pingback p { + clear:both; + padding:0 10px; +} +#commentlist .reply { + text-align:right; + margin-right:5px; + font-size:.9em; +} +#commentlist #respond { + width:96%; + margin:0 auto; +} +.comment-links,.comment-links li { + margin:0; + padding:0; +} +#commentform { + width:95%; +} +#commentform label.text { + display:inline-block; + width:3.7em; +} +#commentform .comment-form-comment { + margin:0; +} +#commentform .form-allowed-tags { + margin:0; + line-height:1.2em; + font-size:.8em; +} +#commentform .form-submit { + text-align:right; +} +#commentform .form-allowed-tags code { + font-family:Tahoma,Verdana,Arial,Helvetica,sans-serif; + font-size:1em; +} + +/* search results */ +.result-list { + margin:0; + padding:0; +} +.result-list h3 { + margin:0; +} +.result-list .more-link,.result-list .comment-link { + text-align:left; +} + +/* tag cloud */ +.wp-tag-cloud { + padding:10px; +} +.wp-tag-cloud li { + display:inline; + list-style:none; + margin:0; + padding:0; +} +.wp-tag-cloud li a { + letter-spacing:.01em; + text-decoration:none; + white-space:nowrap; +} +.wp-tag-cloud li a:hover { + text-decoration:underline; +} + +/* calendar */ +#wp-calendar { + letter-spacing:normal; + text-align:center; + font-size:.8em; + border-collapse:collapse; +} +#wp-calendar caption { + margin:0 0 3px; + padding:0; + font-size:.8em; +} +#wp-calendar th { + font-size:.9em; + text-transform:capitalize; +} +#wp-calendar th,#wp-calendar td { + margin:0; + padding:2px; +} +#wp-calendar #next a { + text-align:right; +} +#wp-calendar #prev a { + text-align:left; +} +#wp-calendar a { + display:block; + text-decoration:none; +} +#wp-calendar tbody, #wp-calendar tfoot { + font-size:.8em; +} +#wp-calendar #today a { + font-weight:bold; +} +#wp-calendar a { + text-decoration:underline; +} +#wp-calendar a:hover,#wp-calendar a:active,#wp-calendar a:focus { + text-decoration:none; +} + +/* passwrod form */ +.password-form br { + display:none; +} + + +/* FOOTER */ +#footer { + clear:both; + margin:0; + padding:0 0 5px; + text-align:center; + font-size:.8em; +} +#footer ul { + clear:both; + margin:0; + padding:0; +} +#footer li { + display:inline; + margin:0; + padding:0 5px; +} +#footer li.rss { + position:relative; + top:3px; +} + +/* Offsets */ +.sidebar h2, h2.tag-cloud, .offset { + position:absolute; + left:-9000px; + top:-9000px; +} + + +/* useful stuff to have available */ +.clear-left { + clear:left; +} +.clear-right { + clear:right; +} +.clear { + clear:both; +} +span.clear { + display:block; +} +.center { + text-align:center; +} +.left { + text-align:left; +} +.right { + text-align:right; +} diff --git a/wp-content/themes/zenlite/library/focus.js b/wp-content/themes/zenlite/library/focus.js new file mode 100644 index 000000000..e562b9c6f --- /dev/null +++ b/wp-content/themes/zenlite/library/focus.js @@ -0,0 +1,53 @@ +function addEvent(obj, evType, fn){ + if (obj.addEventListener){ + obj.addEventListener(evType, fn, true); + return true; + } else if (obj.attachEvent){ + var r = obj.attachEvent("on"+evType, fn); + return r; + } else { + return false; + } +} + +addEvent(window, 'load', initFocus); + +function initFocus() { + // Form field hover/focus script for Secure and Accessible PHP Contact Form v.2.0WP by Mike Cherim + // What elements do you want to assign which events to? + var objEvt = { + input : ["hover", "focus"], + select : ["hover", "focus"], + textarea: ["hover", "focus"] + }; + + // spare use variables + var temp, tempLen = 0; + + // hover/focus functions + function hoverFunc (){this.className += ' hover';} + function unHoverFunc(){this.className = this.className.replace(' hover', '');} + function focusFunc (){this.className += ' focus'; + // start URL replacement + if(navigator.appName.indexOf('Explorer')!=-1){ + if(this.value==this.defaultValue&&this.name=='url') this.value='http://'; + } + // end URL replacement + } + function unFocusFunc(){this.className = this.className.replace(' focus', '');} + + for(var i in objEvt){ + temp = document.getElementsByTagName(i), tempLen = temp.length; + for(var j=0; j<tempLen; j++){ + for(var k=0; k<objEvt[i].length; k++){ + if(objEvt[i][k] == 'hover'){ + temp[j].onmouseover = hoverFunc; + temp[j].onmouseout = unHoverFunc; + } else if(objEvt[i][k] == 'focus'){ + temp[j].onfocus = focusFunc; + temp[j].onblur = unFocusFunc; + } + } + } + } +} \ No newline at end of file diff --git a/wp-content/themes/zenlite/library/theme-options.css b/wp-content/themes/zenlite/library/theme-options.css new file mode 100644 index 000000000..d3bae0baa --- /dev/null +++ b/wp-content/themes/zenlite/library/theme-options.css @@ -0,0 +1,6 @@ +.appearance_page_theme_options legend { + font-weight:bold; +} +.appearance_page_theme_options fieldset { + margin-top:20px; +} diff --git a/wp-content/themes/zenlite/library/theme-options.php b/wp-content/themes/zenlite/library/theme-options.php new file mode 100644 index 000000000..36dad7cbb --- /dev/null +++ b/wp-content/themes/zenlite/library/theme-options.php @@ -0,0 +1,181 @@ +<?php + +// THEME OPTIONS + +// Set to equal theme text domain name +$textdomain= 'zenlite'; + +// Set options array + $all_theme_options = array( + 'menu_type' => array( + 'type' => 'radio', + 'default' => 'pages', + 'options' => array( + '1' => array( + 'value' => 'pages', + 'label' => __( 'Pages', $textdomain ) + ), + '2' => array( + 'value' => 'cats', + 'label' => __( 'Categories', $textdomain ) + ) + ) + ), + 'author_display' => array( + 'type' => 'radio', + 'default' => 'yes', + 'options' => array( + '1' => array( + 'value' => 'yes', + 'label' => __( 'Yes', $textdomain ) + ), + '2' => array( + 'value' => 'no', + 'label' => __( 'No', $textdomain ) + ) + ) + ), + 'kses_display' => array( + 'type' => 'radio', + 'default' => 'yes', + 'options' => array( + '1' => array( + 'value' => 'yes', + 'label' => __( 'Yes', $textdomain ) + ), + '2' => array( + 'value' => 'no', + 'label' => __( 'No', $textdomain ) + ) + ) + ) +); + +// White list theme options +function theme_options_init() { + global $textdomain; + register_setting( $textdomain. '_options', $textdomain. '_theme_options', 'theme_options_validate' ); +} +add_action( 'admin_init', 'theme_options_init' ); + +// Add theme options page +function theme_options_add_page() { + add_theme_page( __( 'Theme Options' ), __( 'Theme Options' ), 'edit_theme_options', 'theme_options', 'theme_options_do_page' ); +} +add_action('admin_menu', 'theme_options_add_page'); + +// Load theme options stylesheet +function add_theme_options_style() { + $css_file = TEMPLATEPATH . '/library/theme-options.css'; + $css_url = get_template_directory_uri() . '/library/theme-options.css'; + if ( file_exists($css_file) ) { + wp_register_style('theme_options_style', $css_url, '', '', 'screen'); + } +} +function enqueue_theme_options_style() { + wp_enqueue_style('theme_options_style'); +} +add_action('admin_init', 'add_theme_options_style'); +add_action('admin_print_styles', 'enqueue_theme_options_style'); + +// Theme options form +function theme_options_do_page() { + global $all_theme_options, $textdomain; + if ( ! isset( $_REQUEST['updated'] ) ) $_REQUEST['updated'] = false; + ?> + + <div class="wrap"> + <?php screen_icon(); echo "<h2>" . get_current_theme() . __( ' Theme Options', $textdomain) . "</h2>"; ?> + + <?php if ( false !== $_REQUEST['updated'] ) : ?> + <div class="updated fade"><p><strong><?php _e( 'Your theme options have been saved', $textdomain); ?></strong></p></div> + <?php endif; ?> + + <form method="post" action="options.php" id="zenlite_options"><div> + <?php settings_fields( 'zenlite_options' ); ?> + <?php $stored_options = get_option('zenlite_theme_options'); + ?> + + <fieldset> + <legend><?php _e('Use the top navigation menu to display links to:',$textdomain); ?></legend> + <?php $option_name = 'menu_type'; + theme_options_sort( $all_theme_options[$option_name], $stored_options, $option_name);?> + </fieldset> + + <fieldset> + <legend><?php _e('Display an author link on posts?',$textdomain); ?></legend> + <?php $option_name = 'author_display'; + theme_options_sort( $all_theme_options[$option_name], $stored_options, $option_name);?> + </fieldset> + + <fieldset> + <legend><?php _e('Display allowed tags on comment form?',$textdomain); ?></legend> + <?php $option_name = 'kses_display'; + theme_options_sort( $all_theme_options[$option_name], $stored_options, $option_name);?> + </fieldset> + + <p class="submit"><input type="submit" class="button-primary" value="<?php _e('Update Theme', $textdomain) ?>" /></p> + + </div></form> +</div> + <?php +} + +// sort inputs for display +function theme_options_sort($option_input, $stored_options, $name) { + switch ($option_input['type']) { + case 'radio': + theme_options_do_radio($option_input['options'], $stored_options, $name, $option_input['default']); + break; + + default: + break; + } +} + +// Radio button display +function theme_options_do_radio($radio_options, $stored_options, $name, $default) { + global $textdomain; + if ( ! isset( $checked ) ) $checked = ''; + foreach ( $radio_options as $option ) { + if ( isset( $stored_options[$name] ) ) { + if( $stored_options[$name] == $option['value'] ) $checked = 'checked="checked"'; + else $checked = ''; + } + else{ + if ( $option['value'] == $default ) $checked = 'checked="checked"'; + else $checked = ''; + }?> + <label class="description" for="<?php echo $name;?>_<?php esc_attr_e( $option['value'] ); ?>"><input type="radio" id="<?php echo $name;?>_<?php esc_attr_e( $option['value'] ); ?>" name="<?php echo $textdomain;?>_theme_options[<?php echo $name;?>]" value="<?php esc_attr_e( $option['value'] ); ?>" <?php echo $checked; ?> /> <?php echo $option['label']; ?></label> + <?php + } +} + +// Sanitize and validate inputs +function theme_options_validate( $input ) { + $new_input = array(); + global $all_theme_options; + $theme_option_names = array_keys($all_theme_options); + + foreach($theme_option_names as $theme_option_name) { + $option_type = $theme_option_name['type']; + switch ($option_type) { + case 'checkbox': + $new_input[$theme_option_name] = ( $input[$theme_option_name] == 1 ? 1 : 0 ); + break; + + case 'text': + $new_input[$theme_option_name] = wp_filter_nohtml_kses( $input[$theme_option_name] ); + break; + + case 'textarea': + $new_input[$theme_option_name] = wp_filter_post_kses( $input[$theme_option_name] ); + break; + + default: + $new_input[$theme_option_name] = $input[$theme_option_name]; + } + if( !isset( $input[$theme_option_name] ) ) $new_input[$theme_option_name] = $theme_option_name['default']; + } + return $new_input; +} diff --git a/wp-content/themes/zenlite/license.txt b/wp-content/themes/zenlite/license.txt new file mode 100644 index 000000000..818433ecc --- /dev/null +++ b/wp-content/themes/zenlite/license.txt @@ -0,0 +1,674 @@ + GNU GENERAL PUBLIC LICENSE + Version 3, 29 June 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/> + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The GNU General Public License is a free, copyleft license for +software and other kinds of works. + + The licenses for most software and other practical works are designed +to take away your freedom to share and change the works. By contrast, +the GNU General Public License is intended to guarantee your freedom to +share and change all versions of a program--to make sure it remains free +software for all its users. We, the Free Software Foundation, use the +GNU General Public License for most of our software; it applies also to +any other work released this way by its authors. You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +them if you wish), that you receive source code or can get it if you +want it, that you can change the software or use pieces of it in new +free programs, and that you know you can do these things. + + To protect your rights, we need to prevent others from denying you +these rights or asking you to surrender the rights. Therefore, you have +certain responsibilities if you distribute copies of the software, or if +you modify it: responsibilities to respect the freedom of others. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must pass on to the recipients the same +freedoms that you received. You must make sure that they, too, receive +or can get the source code. And you must show them these terms so they +know their rights. + + Developers that use the GNU GPL protect your rights with two steps: +(1) assert copyright on the software, and (2) offer you this License +giving you legal permission to copy, distribute and/or modify it. + + For the developers' and authors' protection, the GPL clearly explains +that there is no warranty for this free software. For both users' and +authors' sake, the GPL requires that modified versions be marked as +changed, so that their problems will not be attributed erroneously to +authors of previous versions. + + Some devices are designed to deny users access to install or run +modified versions of the software inside them, although the manufacturer +can do so. This is fundamentally incompatible with the aim of +protecting users' freedom to change the software. The systematic +pattern of such abuse occurs in the area of products for individuals to +use, which is precisely where it is most unacceptable. Therefore, we +have designed this version of the GPL to prohibit the practice for those +products. If such problems arise substantially in other domains, we +stand ready to extend this provision to those domains in future versions +of the GPL, as needed to protect the freedom of users. + + Finally, every program is threatened constantly by software patents. +States should not allow patents to restrict development and use of +software on general-purpose computers, but in those that do, we wish to +avoid the special danger that patents applied to a free program could +make it effectively proprietary. To prevent this, the GPL assures that +patents cannot be used to render the program non-free. + + The precise terms and conditions for copying, distribution and +modification follow. + + TERMS AND CONDITIONS + + 0. Definitions. + + "This License" refers to version 3 of the GNU General Public License. + + "Copyright" also means copyright-like laws that apply to other kinds of +works, such as semiconductor masks. + + "The Program" refers to any copyrightable work licensed under this +License. Each licensee is addressed as "you". "Licensees" and +"recipients" may be individuals or organizations. + + To "modify" a work means to copy from or adapt all or part of the work +in a fashion requiring copyright permission, other than the making of an +exact copy. The resulting work is called a "modified version" of the +earlier work or a work "based on" the earlier work. + + A "covered work" means either the unmodified Program or a work based +on the Program. + + To "propagate" a work means to do anything with it that, without +permission, would make you directly or secondarily liable for +infringement under applicable copyright law, except executing it on a +computer or modifying a private copy. Propagation includes copying, +distribution (with or without modification), making available to the +public, and in some countries other activities as well. + + To "convey" a work means any kind of propagation that enables other +parties to make or receive copies. Mere interaction with a user through +a computer network, with no transfer of a copy, is not conveying. + + An interactive user interface displays "Appropriate Legal Notices" +to the extent that it includes a convenient and prominently visible +feature that (1) displays an appropriate copyright notice, and (2) +tells the user that there is no warranty for the work (except to the +extent that warranties are provided), that licensees may convey the +work under this License, and how to view a copy of this License. If +the interface presents a list of user commands or options, such as a +menu, a prominent item in the list meets this criterion. + + 1. Source Code. + + The "source code" for a work means the preferred form of the work +for making modifications to it. "Object code" means any non-source +form of a work. + + A "Standard Interface" means an interface that either is an official +standard defined by a recognized standards body, or, in the case of +interfaces specified for a particular programming language, one that +is widely used among developers working in that language. + + The "System Libraries" of an executable work include anything, other +than the work as a whole, that (a) is included in the normal form of +packaging a Major Component, but which is not part of that Major +Component, and (b) serves only to enable use of the work with that +Major Component, or to implement a Standard Interface for which an +implementation is available to the public in source code form. A +"Major Component", in this context, means a major essential component +(kernel, window system, and so on) of the specific operating system +(if any) on which the executable work runs, or a compiler used to +produce the work, or an object code interpreter used to run it. + + The "Corresponding Source" for a work in object code form means all +the source code needed to generate, install, and (for an executable +work) run the object code and to modify the work, including scripts to +control those activities. However, it does not include the work's +System Libraries, or general-purpose tools or generally available free +programs which are used unmodified in performing those activities but +which are not part of the work. For example, Corresponding Source +includes interface definition files associated with source files for +the work, and the source code for shared libraries and dynamically +linked subprograms that the work is specifically designed to require, +such as by intimate data communication or control flow between those +subprograms and other parts of the work. + + The Corresponding Source need not include anything that users +can regenerate automatically from other parts of the Corresponding +Source. + + The Corresponding Source for a work in source code form is that +same work. + + 2. Basic Permissions. + + All rights granted under this License are granted for the term of +copyright on the Program, and are irrevocable provided the stated +conditions are met. This License explicitly affirms your unlimited +permission to run the unmodified Program. The output from running a +covered work is covered by this License only if the output, given its +content, constitutes a covered work. This License acknowledges your +rights of fair use or other equivalent, as provided by copyright law. + + You may make, run and propagate covered works that you do not +convey, without conditions so long as your license otherwise remains +in force. You may convey covered works to others for the sole purpose +of having them make modifications exclusively for you, or provide you +with facilities for running those works, provided that you comply with +the terms of this License in conveying all material for which you do +not control copyright. Those thus making or running the covered works +for you must do so exclusively on your behalf, under your direction +and control, on terms that prohibit them from making any copies of +your copyrighted material outside their relationship with you. + + Conveying under any other circumstances is permitted solely under +the conditions stated below. Sublicensing is not allowed; section 10 +makes it unnecessary. + + 3. Protecting Users' Legal Rights From Anti-Circumvention Law. + + No covered work shall be deemed part of an effective technological +measure under any applicable law fulfilling obligations under article +11 of the WIPO copyright treaty adopted on 20 December 1996, or +similar laws prohibiting or restricting circumvention of such +measures. + + When you convey a covered work, you waive any legal power to forbid +circumvention of technological measures to the extent such circumvention +is effected by exercising rights under this License with respect to +the covered work, and you disclaim any intention to limit operation or +modification of the work as a means of enforcing, against the work's +users, your or third parties' legal rights to forbid circumvention of +technological measures. + + 4. Conveying Verbatim Copies. + + You may convey verbatim copies of the Program's source code as you +receive it, in any medium, provided that you conspicuously and +appropriately publish on each copy an appropriate copyright notice; +keep intact all notices stating that this License and any +non-permissive terms added in accord with section 7 apply to the code; +keep intact all notices of the absence of any warranty; and give all +recipients a copy of this License along with the Program. + + You may charge any price or no price for each copy that you convey, +and you may offer support or warranty protection for a fee. + + 5. Conveying Modified Source Versions. + + You may convey a work based on the Program, or the modifications to +produce it from the Program, in the form of source code under the +terms of section 4, provided that you also meet all of these conditions: + + a) The work must carry prominent notices stating that you modified + it, and giving a relevant date. + + b) The work must carry prominent notices stating that it is + released under this License and any conditions added under section + 7. This requirement modifies the requirement in section 4 to + "keep intact all notices". + + c) You must license the entire work, as a whole, under this + License to anyone who comes into possession of a copy. This + License will therefore apply, along with any applicable section 7 + additional terms, to the whole of the work, and all its parts, + regardless of how they are packaged. This License gives no + permission to license the work in any other way, but it does not + invalidate such permission if you have separately received it. + + d) If the work has interactive user interfaces, each must display + Appropriate Legal Notices; however, if the Program has interactive + interfaces that do not display Appropriate Legal Notices, your + work need not make them do so. + + A compilation of a covered work with other separate and independent +works, which are not by their nature extensions of the covered work, +and which are not combined with it such as to form a larger program, +in or on a volume of a storage or distribution medium, is called an +"aggregate" if the compilation and its resulting copyright are not +used to limit the access or legal rights of the compilation's users +beyond what the individual works permit. Inclusion of a covered work +in an aggregate does not cause this License to apply to the other +parts of the aggregate. + + 6. Conveying Non-Source Forms. + + You may convey a covered work in object code form under the terms +of sections 4 and 5, provided that you also convey the +machine-readable Corresponding Source under the terms of this License, +in one of these ways: + + a) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by the + Corresponding Source fixed on a durable physical medium + customarily used for software interchange. + + b) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by a + written offer, valid for at least three years and valid for as + long as you offer spare parts or customer support for that product + model, to give anyone who possesses the object code either (1) a + copy of the Corresponding Source for all the software in the + product that is covered by this License, on a durable physical + medium customarily used for software interchange, for a price no + more than your reasonable cost of physically performing this + conveying of source, or (2) access to copy the + Corresponding Source from a network server at no charge. + + c) Convey individual copies of the object code with a copy of the + written offer to provide the Corresponding Source. This + alternative is allowed only occasionally and noncommercially, and + only if you received the object code with such an offer, in accord + with subsection 6b. + + d) Convey the object code by offering access from a designated + place (gratis or for a charge), and offer equivalent access to the + Corresponding Source in the same way through the same place at no + further charge. You need not require recipients to copy the + Corresponding Source along with the object code. If the place to + copy the object code is a network server, the Corresponding Source + may be on a different server (operated by you or a third party) + that supports equivalent copying facilities, provided you maintain + clear directions next to the object code saying where to find the + Corresponding Source. Regardless of what server hosts the + Corresponding Source, you remain obligated to ensure that it is + available for as long as needed to satisfy these requirements. + + e) Convey the object code using peer-to-peer transmission, provided + you inform other peers where the object code and Corresponding + Source of the work are being offered to the general public at no + charge under subsection 6d. + + A separable portion of the object code, whose source code is excluded +from the Corresponding Source as a System Library, need not be +included in conveying the object code work. + + A "User Product" is either (1) a "consumer product", which means any +tangible personal property which is normally used for personal, family, +or household purposes, or (2) anything designed or sold for incorporation +into a dwelling. In determining whether a product is a consumer product, +doubtful cases shall be resolved in favor of coverage. For a particular +product received by a particular user, "normally used" refers to a +typical or common use of that class of product, regardless of the status +of the particular user or of the way in which the particular user +actually uses, or expects or is expected to use, the product. A product +is a consumer product regardless of whether the product has substantial +commercial, industrial or non-consumer uses, unless such uses represent +the only significant mode of use of the product. + + "Installation Information" for a User Product means any methods, +procedures, authorization keys, or other information required to install +and execute modified versions of a covered work in that User Product from +a modified version of its Corresponding Source. The information must +suffice to ensure that the continued functioning of the modified object +code is in no case prevented or interfered with solely because +modification has been made. + + If you convey an object code work under this section in, or with, or +specifically for use in, a User Product, and the conveying occurs as +part of a transaction in which the right of possession and use of the +User Product is transferred to the recipient in perpetuity or for a +fixed term (regardless of how the transaction is characterized), the +Corresponding Source conveyed under this section must be accompanied +by the Installation Information. But this requirement does not apply +if neither you nor any third party retains the ability to install +modified object code on the User Product (for example, the work has +been installed in ROM). + + The requirement to provide Installation Information does not include a +requirement to continue to provide support service, warranty, or updates +for a work that has been modified or installed by the recipient, or for +the User Product in which it has been modified or installed. Access to a +network may be denied when the modification itself materially and +adversely affects the operation of the network or violates the rules and +protocols for communication across the network. + + Corresponding Source conveyed, and Installation Information provided, +in accord with this section must be in a format that is publicly +documented (and with an implementation available to the public in +source code form), and must require no special password or key for +unpacking, reading or copying. + + 7. Additional Terms. + + "Additional permissions" are terms that supplement the terms of this +License by making exceptions from one or more of its conditions. +Additional permissions that are applicable to the entire Program shall +be treated as though they were included in this License, to the extent +that they are valid under applicable law. If additional permissions +apply only to part of the Program, that part may be used separately +under those permissions, but the entire Program remains governed by +this License without regard to the additional permissions. + + When you convey a copy of a covered work, you may at your option +remove any additional permissions from that copy, or from any part of +it. (Additional permissions may be written to require their own +removal in certain cases when you modify the work.) You may place +additional permissions on material, added by you to a covered work, +for which you have or can give appropriate copyright permission. + + Notwithstanding any other provision of this License, for material you +add to a covered work, you may (if authorized by the copyright holders of +that material) supplement the terms of this License with terms: + + a) Disclaiming warranty or limiting liability differently from the + terms of sections 15 and 16 of this License; or + + b) Requiring preservation of specified reasonable legal notices or + author attributions in that material or in the Appropriate Legal + Notices displayed by works containing it; or + + c) Prohibiting misrepresentation of the origin of that material, or + requiring that modified versions of such material be marked in + reasonable ways as different from the original version; or + + d) Limiting the use for publicity purposes of names of licensors or + authors of the material; or + + e) Declining to grant rights under trademark law for use of some + trade names, trademarks, or service marks; or + + f) Requiring indemnification of licensors and authors of that + material by anyone who conveys the material (or modified versions of + it) with contractual assumptions of liability to the recipient, for + any liability that these contractual assumptions directly impose on + those licensors and authors. + + All other non-permissive additional terms are considered "further +restrictions" within the meaning of section 10. If the Program as you +received it, or any part of it, contains a notice stating that it is +governed by this License along with a term that is a further +restriction, you may remove that term. If a license document contains +a further restriction but permits relicensing or conveying under this +License, you may add to a covered work material governed by the terms +of that license document, provided that the further restriction does +not survive such relicensing or conveying. + + If you add terms to a covered work in accord with this section, you +must place, in the relevant source files, a statement of the +additional terms that apply to those files, or a notice indicating +where to find the applicable terms. + + Additional terms, permissive or non-permissive, may be stated in the +form of a separately written license, or stated as exceptions; +the above requirements apply either way. + + 8. Termination. + + You may not propagate or modify a covered work except as expressly +provided under this License. Any attempt otherwise to propagate or +modify it is void, and will automatically terminate your rights under +this License (including any patent licenses granted under the third +paragraph of section 11). + + However, if you cease all violation of this License, then your +license from a particular copyright holder is reinstated (a) +provisionally, unless and until the copyright holder explicitly and +finally terminates your license, and (b) permanently, if the copyright +holder fails to notify you of the violation by some reasonable means +prior to 60 days after the cessation. + + Moreover, your license from a particular copyright holder is +reinstated permanently if the copyright holder notifies you of the +violation by some reasonable means, this is the first time you have +received notice of violation of this License (for any work) from that +copyright holder, and you cure the violation prior to 30 days after +your receipt of the notice. + + Termination of your rights under this section does not terminate the +licenses of parties who have received copies or rights from you under +this License. If your rights have been terminated and not permanently +reinstated, you do not qualify to receive new licenses for the same +material under section 10. + + 9. Acceptance Not Required for Having Copies. + + You are not required to accept this License in order to receive or +run a copy of the Program. Ancillary propagation of a covered work +occurring solely as a consequence of using peer-to-peer transmission +to receive a copy likewise does not require acceptance. However, +nothing other than this License grants you permission to propagate or +modify any covered work. These actions infringe copyright if you do +not accept this License. Therefore, by modifying or propagating a +covered work, you indicate your acceptance of this License to do so. + + 10. Automatic Licensing of Downstream Recipients. + + Each time you convey a covered work, the recipient automatically +receives a license from the original licensors, to run, modify and +propagate that work, subject to this License. You are not responsible +for enforcing compliance by third parties with this License. + + An "entity transaction" is a transaction transferring control of an +organization, or substantially all assets of one, or subdividing an +organization, or merging organizations. If propagation of a covered +work results from an entity transaction, each party to that +transaction who receives a copy of the work also receives whatever +licenses to the work the party's predecessor in interest had or could +give under the previous paragraph, plus a right to possession of the +Corresponding Source of the work from the predecessor in interest, if +the predecessor has it or can get it with reasonable efforts. + + You may not impose any further restrictions on the exercise of the +rights granted or affirmed under this License. For example, you may +not impose a license fee, royalty, or other charge for exercise of +rights granted under this License, and you may not initiate litigation +(including a cross-claim or counterclaim in a lawsuit) alleging that +any patent claim is infringed by making, using, selling, offering for +sale, or importing the Program or any portion of it. + + 11. Patents. + + A "contributor" is a copyright holder who authorizes use under this +License of the Program or a work on which the Program is based. The +work thus licensed is called the contributor's "contributor version". + + A contributor's "essential patent claims" are all patent claims +owned or controlled by the contributor, whether already acquired or +hereafter acquired, that would be infringed by some manner, permitted +by this License, of making, using, or selling its contributor version, +but do not include claims that would be infringed only as a +consequence of further modification of the contributor version. For +purposes of this definition, "control" includes the right to grant +patent sublicenses in a manner consistent with the requirements of +this License. + + Each contributor grants you a non-exclusive, worldwide, royalty-free +patent license under the contributor's essential patent claims, to +make, use, sell, offer for sale, import and otherwise run, modify and +propagate the contents of its contributor version. + + In the following three paragraphs, a "patent license" is any express +agreement or commitment, however denominated, not to enforce a patent +(such as an express permission to practice a patent or covenant not to +sue for patent infringement). To "grant" such a patent license to a +party means to make such an agreement or commitment not to enforce a +patent against the party. + + If you convey a covered work, knowingly relying on a patent license, +and the Corresponding Source of the work is not available for anyone +to copy, free of charge and under the terms of this License, through a +publicly available network server or other readily accessible means, +then you must either (1) cause the Corresponding Source to be so +available, or (2) arrange to deprive yourself of the benefit of the +patent license for this particular work, or (3) arrange, in a manner +consistent with the requirements of this License, to extend the patent +license to downstream recipients. "Knowingly relying" means you have +actual knowledge that, but for the patent license, your conveying the +covered work in a country, or your recipient's use of the covered work +in a country, would infringe one or more identifiable patents in that +country that you have reason to believe are valid. + + If, pursuant to or in connection with a single transaction or +arrangement, you convey, or propagate by procuring conveyance of, a +covered work, and grant a patent license to some of the parties +receiving the covered work authorizing them to use, propagate, modify +or convey a specific copy of the covered work, then the patent license +you grant is automatically extended to all recipients of the covered +work and works based on it. + + A patent license is "discriminatory" if it does not include within +the scope of its coverage, prohibits the exercise of, or is +conditioned on the non-exercise of one or more of the rights that are +specifically granted under this License. You may not convey a covered +work if you are a party to an arrangement with a third party that is +in the business of distributing software, under which you make payment +to the third party based on the extent of your activity of conveying +the work, and under which the third party grants, to any of the +parties who would receive the covered work from you, a discriminatory +patent license (a) in connection with copies of the covered work +conveyed by you (or copies made from those copies), or (b) primarily +for and in connection with specific products or compilations that +contain the covered work, unless you entered into that arrangement, +or that patent license was granted, prior to 28 March 2007. + + Nothing in this License shall be construed as excluding or limiting +any implied license or other defenses to infringement that may +otherwise be available to you under applicable patent law. + + 12. No Surrender of Others' Freedom. + + If conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot convey a +covered work so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you may +not convey it at all. For example, if you agree to terms that obligate you +to collect a royalty for further conveying from those to whom you convey +the Program, the only way you could satisfy both those terms and this +License would be to refrain entirely from conveying the Program. + + 13. Use with the GNU Affero General Public License. + + Notwithstanding any other provision of this License, you have +permission to link or combine any covered work with a work licensed +under version 3 of the GNU Affero General Public License into a single +combined work, and to convey the resulting work. The terms of this +License will continue to apply to the part which is the covered work, +but the special requirements of the GNU Affero General Public License, +section 13, concerning interaction through a network will apply to the +combination as such. + + 14. Revised Versions of this License. + + The Free Software Foundation may publish revised and/or new versions of +the GNU General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + + Each version is given a distinguishing version number. If the +Program specifies that a certain numbered version of the GNU General +Public License "or any later version" applies to it, you have the +option of following the terms and conditions either of that numbered +version or of any later version published by the Free Software +Foundation. If the Program does not specify a version number of the +GNU General Public License, you may choose any version ever published +by the Free Software Foundation. + + If the Program specifies that a proxy can decide which future +versions of the GNU General Public License can be used, that proxy's +public statement of acceptance of a version permanently authorizes you +to choose that version for the Program. + + Later license versions may give you additional or different +permissions. However, no additional obligations are imposed on any +author or copyright holder as a result of your choosing to follow a +later version. + + 15. Disclaimer of Warranty. + + THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY +APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT +HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY +OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, +THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM +IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF +ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. Limitation of Liability. + + IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS +THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY +GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE +USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF +DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD +PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), +EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF +SUCH DAMAGES. + + 17. Interpretation of Sections 15 and 16. + + If the disclaimer of warranty and limitation of liability provided +above cannot be given local legal effect according to their terms, +reviewing courts shall apply local law that most closely approximates +an absolute waiver of all civil liability in connection with the +Program, unless a warranty or assumption of liability accompanies a +copy of the Program in return for a fee. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +state the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + <one line to give the program's name and a brief idea of what it does.> + Copyright (C) <year> <name of author> + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see <http://www.gnu.org/licenses/>. + +Also add information on how to contact you by electronic and paper mail. + + If the program does terminal interaction, make it output a short +notice like this when it starts in an interactive mode: + + <program> Copyright (C) <year> <name of author> + This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, your program's commands +might be different; for a GUI interface, you would use an "about box". + + You should also get your employer (if you work as a programmer) or school, +if any, to sign a "copyright disclaimer" for the program, if necessary. +For more information on this, and how to apply and follow the GNU GPL, see +<http://www.gnu.org/licenses/>. + + The GNU General Public License does not permit incorporating your program +into proprietary programs. If your program is a subroutine library, you +may consider it more useful to permit linking proprietary applications with +the library. If this is what you want to do, use the GNU Lesser General +Public License instead of this License. But first, please read +<http://www.gnu.org/philosophy/why-not-lgpl.html>. diff --git a/wp-content/themes/zenlite/loop.php b/wp-content/themes/zenlite/loop.php new file mode 100644 index 000000000..6b59ed295 --- /dev/null +++ b/wp-content/themes/zenlite/loop.php @@ -0,0 +1,60 @@ +<?php global $zenlite_options;?> + +<div id="content"> + +<?php if (have_posts()) : while (have_posts()) : the_post(); ?> + +<div <?php post_class();?> id="post-<?php the_ID();?>"> +<h2 class="post-title"><a href="<?php the_permalink(); ?>" rel="bookmark" title="<?php _e('Post', 'zenlite');?> <?php the_ID(); ?> - <?php _e('permanent link', 'zenlite');?>"><?php the_title();?></a></h2> + +<ul class="meta"> +<li><?php the_time(__('F j, Y', 'zenlite')); ?> <?php the_time(); ?></li> +<li><?php edit_post_link(sprintf( __('Edit %1$s', 'zenlite'), get_the_title() ) +); ?></li> +</ul> + +<div class="postcontent"> +<?php if( has_post_thumbnail() ) { + the_post_thumbnail(); + the_excerpt(); +} +elseif( post_password_required() ) the_excerpt(); +else the_content('', false,'');?> +</div> + +<ul class="meta postfoot"> + +<li class="more-link"><a href="<?php the_permalink();?>#more-<?php echo $post->ID;?>"><?php _e('Continue reading ', 'zenlite');the_title();?></a> »</li> + +<?php if('open' == $post->comment_status) : ?> +<li class="comment-link"><?php comments_popup_link( +__('Comment on ', 'zenlite') . get_the_title($id), +__('1 Comment on ', 'zenlite') . get_the_title($id), + __('% Comments on ', 'zenlite') . get_the_title($id), +'postcomment', +__('Comments are off for ', 'zenlite') . get_the_title($id) +); ?> »</li> +<?php endif;?> + +<?php if( !isset( $zenlite_options['author_display'] ) || $zenlite_options['author_display'] != 'no') :?><li class="author"><?php _e('Author:', 'zenlite');?> <?php the_author_posts_link(); ?></li><?php endif;?> + +<?php if(!is_category() ) :?> +<li class="cats"><?php _e('Filed under:', 'zenlite');?> <ul><li><?php the_category(',</li> <li>') ?></li></ul></li> +<?php endif;?> + +<?php if( get_the_tag_list() && !is_tag() ) :?> +<li class="tags"><?php _e('Tags:', 'zenlite');?> <?php the_tags('<ul><li>',',</li> <li>','</li></ul>');?></li> +<?php endif;?> + +</ul> + +</div> + +<?php endwhile; ?> + +<ul class="prevnext"> +<li><?php next_posts_link(__('« Older Posts', 'zenlite') ); ?></li> +<li><?php previous_posts_link(__('Newer Posts »', 'zenlite') );?></li> +</ul> + +<?php endif; \ No newline at end of file diff --git a/wp-content/themes/zenlite/page-without-comments.php b/wp-content/themes/zenlite/page-without-comments.php new file mode 100644 index 000000000..408a557cb --- /dev/null +++ b/wp-content/themes/zenlite/page-without-comments.php @@ -0,0 +1,48 @@ +<?php +/* +Template Name: Page without Comments +*/ +?> +<?php get_header(); ?> + +<div id="content"> + +<?php if (have_posts()) : while (have_posts()) : the_post(); ?> + +<div <?php post_class(); ?>> + +<h2 class="post-title" id="post-<?php the_ID(); ?>"><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php _e('Permanent Link', 'zenlite');?>"><?php the_title(); ?></a></h2> +<ul class="meta"> +<li><?php edit_post_link(__('Edit', 'zenlite') ); ?></li> +</ul> + +<?php if( zenlite_page_tree($post) != '') :?> +<div class="page-tree"> +<h3><?php _e('Pages in this section', 'zenlite');?></h3> +<ul><?php echo zenlite_page_tree($post);?></ul> +</div> +<?php endif;?> + +<div class="postcontent"> +<?php the_content(); ?> +</div> + +<span class="clear" /> + +<?php +$args = array( + 'before' => '<div class="pagelist">' . __('Pages:', 'zenlite'), + 'after' => '</div>', + 'link_before' => '', + 'link_after' => '', + 'pagelink' => '%' +); +wp_link_pages($args);?> + +</div> + +<?php endwhile; ?> + +<?php endif; ?> + +<?php get_footer(); ?> \ No newline at end of file diff --git a/wp-content/themes/zenlite/page.php b/wp-content/themes/zenlite/page.php new file mode 100644 index 000000000..44470edb5 --- /dev/null +++ b/wp-content/themes/zenlite/page.php @@ -0,0 +1,47 @@ +<?php get_header(); ?> + +<div id="content"> + +<?php if (have_posts()) : while (have_posts()) : the_post(); ?> + +<div <?php post_class(); ?>> + +<h2 class="post-title" id="post-<?php the_ID(); ?>"><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php _e('Permanent Link:', 'zenlite');?>"><?php the_title(); ?></a></h2> +<ul class="meta"> +<li><?php edit_post_link(__('Edit', 'zenlite') ); ?></li> +</ul> + +<?php if( zenlite_page_tree($post) != '' ) :?> +<div class="page-tree"> +<h3><?php _e('Pages in this section', 'zenlite');?></h3> +<ul><?php echo zenlite_page_tree($post);?></ul> +</div> +<?php endif;?> + +<div class="postcontent"> +<?php the_content(); ?> +</div> + +<span class="clear" /> + +<?php +$args = array( + 'before' => '<div class="pagelist">' . __('Pages:', 'zenlite'), + 'after' => '</div>', + 'link_before' => '', + 'link_after' => '', + 'pagelink' => '%' +); +wp_link_pages($args);?> + +</div> + +<?php if( have_comments() || 'open' == $post->comment_status ) : ?> +<?php comments_template();?> +<?php endif;?> + +<?php endwhile; ?> + +<?php endif; ?> + +<?php get_footer(); ?> \ No newline at end of file diff --git a/wp-content/themes/zenlite/print.css b/wp-content/themes/zenlite/print.css new file mode 100644 index 000000000..b5195e8d6 --- /dev/null +++ b/wp-content/themes/zenlite/print.css @@ -0,0 +1,18 @@ +@import url(layout.css); +@import url(color.css); + +body { + font-size:10pt; +} +.jumplinks,.sidebar.edit,.prevnext, +#footer .top, #footer .loginout { + display:none; +} +.image-nav { + display:block; +} +a { + text-decoration:none; + color:#606060; + +} \ No newline at end of file diff --git a/wp-content/themes/zenlite/screenshot.png b/wp-content/themes/zenlite/screenshot.png new file mode 100644 index 0000000000000000000000000000000000000000..6e753fb81241c5565d602e19de5fb2f3d198aadd GIT binary patch literal 13334 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 ay=6~t#I?(N6d4#87(8A5T-G@yGywoVXBEW& literal 0 HcmV?d00001 diff --git a/wp-content/themes/zenlite/search.php b/wp-content/themes/zenlite/search.php new file mode 100644 index 000000000..0ab46bed5 --- /dev/null +++ b/wp-content/themes/zenlite/search.php @@ -0,0 +1,79 @@ +<?php get_header();?> + +<div id="content"> +<div <?php post_class();?>> + +<h2 class="post-title"><?php _e('Search Results', 'zenlite');?></h2> + +<?php get_search_form();?> + +<?php +$my_tot_pages = $wp_query->max_num_pages; +if($my_tot_pages ==1) $my_tot_pages.= __(' page', 'zenlite'); +else $my_tot_pages .= __(' pages', 'zenlite'); +$my_curr_page = $paged; +if($my_curr_page =='') $my_curr_page = 1; +$my_searchterm = trim(get_search_query());?> +<p><?php _e('You searched for', 'zenlite');?> <em><?php echo $my_searchterm;?></em>.<br /> + +<?php if (have_posts()) : ?> +<?php _e('Displaying page', 'zenlite');?> <?php echo $my_curr_page;?> <?php _e('of', 'zenlite');?> <?php echo $my_tot_pages;?> <?php _e('of results', 'zenlite');?>:</p> + +<ul class="result-list"> + +<?php while (have_posts()) : the_post(); ?> +<li><?php if( has_post_thumbnail() ) the_post_thumbnail(); ?> +<h3 id="post-<?php the_ID(); ?>"><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h3> + +<ul class="meta"> + +<?php if($post->post_type == 'post') :?> +<li><?php the_time(__('F j, Y', 'zenlite')); ?> <?php the_time(); ?></li> +<li><?php edit_post_link(sprintf( __('Edit %1$s', 'zenlite'), get_the_title() ) +); ?></li> +<?php endif;?> + +<?php if( !isset( $zenlite_options['author_display'] ) || $zenlite_options['author_display'] != 'no') :?><li class="author"><?php _e('Author:', 'zenlite');?> <?php the_author_posts_link(); ?></li><?php endif;?> + +<?php if($post->post_type == 'post') :?> + +<li><?php _e('Filed under:', 'zenlite');?> <ul><li><?php the_category(',</li> <li>') ?></li></ul></li> + +<?php if(get_the_tag_list()) :?> +<li><?php _e('Tags:', 'zenlite');?> <?php the_tags('<ul><li>',',</li> <li>','</li></ul>');?></li><?php endif;?> + +<?php endif;?> +</ul> + +<ul class="meta postfoot"> + +<li><a href="<?php the_permalink();?>"><?php _e('Read ', 'zenlite'); the_title(); ?></a> »</li> + +<?php if('open' == $post->comment_status) : ?> +<li class="comment-link"><?php comments_popup_link( + __('Comment on ', 'zenlite') . get_the_title($id), + __('1 Comment on ', 'zenlite') . get_the_title($id), + __('% Comments on ', 'zenlite') . get_the_title($id), + 'postcomment', + __('Comments are off for ', 'zenlite') . get_the_title($id) +); ?> »</li> +<?php endif;?> + +</ul> + +</li> +<?php endwhile; ?> +</ul> + +<ul class="prevnext"> +<li><?php next_posts_link(__('« Older Posts', 'zenlite') ); ?></li> +<li><?php previous_posts_link(__('Newer Posts »', 'zenlite') );?></li> +</ul> + +<?php else : ?> +<span class="sorry">Sorry - I couldn't find anything on '<em><?php echo $my_searchterm; ?></em>'.</span></p> +<?php endif; ?> + +</div> + +<?php get_footer();?> \ No newline at end of file diff --git a/wp-content/themes/zenlite/searchform.php b/wp-content/themes/zenlite/searchform.php new file mode 100644 index 000000000..f2be1735c --- /dev/null +++ b/wp-content/themes/zenlite/searchform.php @@ -0,0 +1,6 @@ +<form method="get" id="searchform" action="<?php bloginfo('url'); ?>"> +<div> +<label for="s" class="offset"><?php _e('Keyword(s)', 'zenlite');?></label> <input class="text" type="text" value=" " name="s" id="s" /> +<input type="submit" class="submit button" name="submit" value="<?php _e('Search', 'zenlite');?>" /> +</div> +</form> \ No newline at end of file diff --git a/wp-content/themes/zenlite/sidebar.php b/wp-content/themes/zenlite/sidebar.php new file mode 100644 index 000000000..66fb0c35f --- /dev/null +++ b/wp-content/themes/zenlite/sidebar.php @@ -0,0 +1,19 @@ +<?php global $zenlite_options;?> + +<div class="sidebar"> +<?php if( is_active_sidebar( 'main-menu') ) echo "<ul>\n";?> + +<?php if (!dynamic_sidebar( 'Main menu' ) ) : ?> + +<?php +$args = array( + 'theme_location' => 'primary', + 'container' => '' +); +if( isset( $zenlite_options['menu_type'] ) && $zenlite_options['menu_type'] == 'cats' ) $args['fallback_cb'] = 'zenlite_callback_cats'; +wp_nav_menu( $args ); +?> + +<?php endif; ?> +<?php if( is_active_sidebar( 'main-menu') ) echo "</ul>\n";?> +</div> diff --git a/wp-content/themes/zenlite/single.php b/wp-content/themes/zenlite/single.php new file mode 100644 index 000000000..7df3c2584 --- /dev/null +++ b/wp-content/themes/zenlite/single.php @@ -0,0 +1,47 @@ +<?php get_header(); ?> + +<?php global $zenlite_options;?> + +<div id="content"> + +<?php if (have_posts()) : while (have_posts()) : the_post(); ?> + +<div <?php post_class();?>id="post-<?php the_ID();?>"> + +<h2 class="post-title"><?php the_title();?></h2> + +<ul class="meta"> +<li><?php the_time(__('F j, Y'), 'zenlite'); ?> <?php the_time(); ?></li> +<li><?php edit_post_link('Edit'); ?></li> +</ul> + +<div class="postcontent"> +<?php the_content(); ?> +</div> + +<?php +$args = array( + 'before' => '<div class="pagelist">' . __('Pages:', 'zenlite'), + 'after' => '</div>', + 'link_before' => '', + 'link_after' => '', + 'pagelink' => '%' +); +wp_link_pages($args);?> + +<ul class="meta postfoot"> +<?php if( !isset( $zenlite_options['author_display'] ) || $zenlite_options['author_display'] != 'no') :?><li><?php _e('Author:', 'zenlite');?> <?php the_author_posts_link(); ?></li><?php endif;?> +<li>Filed under: <ul><li><?php the_category(',</li> <li>') ?></li></ul></li> +<?php if(get_the_tag_list()) :?> +<li>Tags: <?php the_tags('<ul><li>',',</li> <li>','</li></ul>');?></li> +<?php endif;?> +</ul> + +</div> +<?php comments_template();?> + +<?php endwhile; ?> + +<?php endif; ?> + +<?php get_footer(); ?> diff --git a/wp-content/themes/zenlite/style.css b/wp-content/themes/zenlite/style.css new file mode 100644 index 000000000..e84ef646b --- /dev/null +++ b/wp-content/themes/zenlite/style.css @@ -0,0 +1,32 @@ +/* +Theme Name:ZenLite +Version: 3.61 +Theme URI: http://quirm.net/zenlite/ +Description: A minimalistic single column design with a widget-ready horizontal navigation menu for listing Pages, Categories or a custom menu. Includes additional templates for archives, categories, author lists, pages without comments, images, attachments and search results. Thickbox enabled image template. Customisable header and background images. Additional theme options. Translation-ready. Suitable for WordPress 3.0 and above. Support available at http://forum.quirm.net/ + +Author: Mel Pedley +Author URI: http://www.blackwidows.co.uk +Tags: one-column, custom-header, light, flexible-width, theme-options, translation-ready, threaded-comments + +Distributed under the terms of the GNU General Public License + +*/ + +@import url(layout.css); +@import url(color.css); + +/* ignore these classes - they're just here to satisfy the wordpress.org upload +They are appropriately specified in layout.css - but the wordpress.org uploader doesn't appear to be able to deal with imported css sheets. +.aligncenter { + display: block; + margin-left: auto; + margin-right: auto; +} +.alignleft { + float: left; +} +.alignright { + float: right; +} +*/ + diff --git a/wp-content/themes/zenlite/tag.php b/wp-content/themes/zenlite/tag.php new file mode 100644 index 000000000..df645ec9b --- /dev/null +++ b/wp-content/themes/zenlite/tag.php @@ -0,0 +1,6 @@ +<?php +get_header(); + +get_template_part( 'loop', 'tag' ); + +get_footer(); \ No newline at end of file -- GitLab