From 9304e0c5328ae10088849790f1a8cff8255806d7 Mon Sep 17 00:00:00 2001
From: root <root@rivolta.investici.org>
Date: Tue, 7 Dec 2010 02:04:04 +0000
Subject: [PATCH] Add theme critical

---
 wp-content/themes/critical/functions.php      | 122 ++++
 wp-content/themes/critical/home.php           |  45 ++
 .../themes/critical/languages/critical.pot    |  27 +
 wp-content/themes/critical/languages/en_EN.mo | Bin 0 -> 553 bytes
 wp-content/themes/critical/languages/en_EN.po |  27 +
 wp-content/themes/critical/license.txt        | 339 +++++++++++
 wp-content/themes/critical/readme.html        |  60 ++
 wp-content/themes/critical/screenshot.png     | Bin 0 -> 24750 bytes
 wp-content/themes/critical/sidebar-header.php |  20 +
 wp-content/themes/critical/style.css          | 535 ++++++++++++++++++
 wp-content/themes/critical/tabs.css           |  50 ++
 11 files changed, 1225 insertions(+)
 create mode 100644 wp-content/themes/critical/functions.php
 create mode 100644 wp-content/themes/critical/home.php
 create mode 100644 wp-content/themes/critical/languages/critical.pot
 create mode 100644 wp-content/themes/critical/languages/en_EN.mo
 create mode 100644 wp-content/themes/critical/languages/en_EN.po
 create mode 100644 wp-content/themes/critical/license.txt
 create mode 100644 wp-content/themes/critical/readme.html
 create mode 100644 wp-content/themes/critical/screenshot.png
 create mode 100644 wp-content/themes/critical/sidebar-header.php
 create mode 100644 wp-content/themes/critical/style.css
 create mode 100644 wp-content/themes/critical/tabs.css

diff --git a/wp-content/themes/critical/functions.php b/wp-content/themes/critical/functions.php
new file mode 100644
index 000000000..4438b9918
--- /dev/null
+++ b/wp-content/themes/critical/functions.php
@@ -0,0 +1,122 @@
+<?php
+/**
+ * Functions File
+ *
+ * This is your child theme's functions.php file.  It is here for adding custom functions and 
+ * setting up default functionality for this child theme.  You are free to modify this file in
+ * any way you like.  Note that if you change the functions already within this file, you run 
+ * the risk of losing theme functionality.  Alter the functions below only if you know what
+ * you're doing.
+ *
+ * @package Critical
+ * @subpackage Functions
+ */
+
+/* Set up the child theme and its default functionality. */
+add_action( 'after_setup_theme', 'critical_theme_setup' );
+
+/**
+ * Adds all the default actions and filters to their appropriate hooks and sets up anything
+ * else needed by the theme.
+ *
+ * @since 0.2
+ */
+function critical_theme_setup() {
+
+	/* Get the parent theme prefix for use with its hooks. */
+	$prefix = hybrid_get_prefix();
+
+	/* Load translation files. */
+	load_child_theme_textdomain( 'critical', get_stylesheet_directory() . '/languages' );
+
+	/* Register additional sidebars. */
+	add_action( 'widgets_init', 'critical_register_sidebars' );
+
+	/* Adds the header sidebar to the header. */
+	add_action( "{$prefix}_header", 'critical_utility_header' );
+
+	/* Create custom entry meta. */
+	add_filter( "{$prefix}_entry_meta", 'critical_entry_meta' );
+
+	/* Add the post ratings plugin to the entry content. */
+	add_filter( 'the_content', 'critical_content_rating' );
+
+	/* Disable the entry title. */
+	add_filter( "{$prefix}_entry_title", 'critical_disabler' );
+
+	/* Disable the entry byline. */
+	add_filter( "{$prefix}_byline", 'critical_disabler' );
+
+	/* Disable the entry excerpt. */
+	add_filter( 'the_excerpt', 'critical_disabler' );
+}
+
+/**
+ * Register additional sidebars.
+ *
+ * @since 0.1
+ */
+function critical_register_sidebars() {
+	register_sidebar( array( 'name' => __( 'Utility: Header', 'critical' ), 'id' => 'utility-header', 'before_widget' => '<div id="%1$s" class="widget %2$s widget-%2$s"><div class="widget-inside">', 'after_widget' => '</div></div>', 'before_title' => '<h3 class="widget-title">', 'after_title' => '</h3>' ) );
+}
+
+/**
+ * Insert header widget area.
+ * @since 0.1
+ */
+function critical_utility_header() {
+	get_sidebar( 'header' );
+}
+
+/**
+ * Adds the post ratings to the content on single post views.
+ * @link http://wordpress.org/extend/plugins/wp-postratings
+ *
+ * @since 0.1
+ */
+function critical_content_rating( $content ) {
+	global $post;
+
+	if ( is_singular( 'post' ) && in_the_loop() && function_exists( 'the_ratings' ) )
+		$content .= the_ratings( 'div', $post->ID, false );
+
+	return $content;
+}
+
+/**
+ * Replaces the default entry metadata on archive-type pages with a link to the 
+ * comments and post ratings.
+ * @link http://wordpress.org/extend/plugins/wp-postratings
+ *
+ * @since 0.1
+ */
+function critical_entry_meta( $metadata ) {
+	global $post;
+
+	if ( is_singular() || 'link_category' == get_query_var( 'taxonomy' ) )
+		return $metadata;
+
+	$metadata = '';
+
+	if ( comments_open() )
+		$metadata .= '[entry-comments-link zero="' . __( 'No Responses', 'critical' ) . '"] ';
+
+	if ( function_exists( 'the_ratings' ) )
+		$metadata .= the_ratings( 'div', $post->ID, false );
+
+	return $metadata;
+}
+
+/**
+ * Disabling filter for non-singular pages.
+ *
+ * @since 0.1
+ */
+function critical_disabler( $var ) {
+	if ( !is_singular() && in_the_loop() )
+		return false;
+
+	return $var;
+}
+
+?>
\ No newline at end of file
diff --git a/wp-content/themes/critical/home.php b/wp-content/themes/critical/home.php
new file mode 100644
index 000000000..125861035
--- /dev/null
+++ b/wp-content/themes/critical/home.php
@@ -0,0 +1,45 @@
+<?php
+/**
+ * Home Template
+ *
+ * This template is loaded when on the home/blog page.
+ *
+ * @package Critical
+ * @subpackage Template
+ */
+
+get_header(); ?>
+
+	<div class="hfeed content">
+
+		<?php hybrid_before_content(); // Before content hook ?>
+
+		<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
+
+			<div id="post-<?php the_ID(); ?>" class="<?php hybrid_entry_class(); ?>">
+
+				<?php get_the_image( array( 'custom_key' => array( 'Thumbnail' ), 'size' => 'thumbnail' ) ); ?>
+
+				<?php hybrid_before_entry(); // Before entry hook ?>
+
+				<div class="entry-summary">
+					<?php the_excerpt(); ?>
+				</div>
+
+				<?php hybrid_after_entry(); // After entry hook ?>
+
+			</div>
+
+			<?php endwhile; ?>
+
+		<?php else: ?>
+
+			<p class="no-data"><?php _e( 'Sorry, no posts matched your criteria.', 'critical' ); ?></p>
+
+		<?php endif; ?>
+
+		<?php hybrid_after_content(); // After content hook ?>
+
+	</div>
+
+<?php get_footer(); ?>
\ No newline at end of file
diff --git a/wp-content/themes/critical/languages/critical.pot b/wp-content/themes/critical/languages/critical.pot
new file mode 100644
index 000000000..bef1956c6
--- /dev/null
+++ b/wp-content/themes/critical/languages/critical.pot
@@ -0,0 +1,27 @@
+msgid ""
+msgstr ""
+"Project-Id-Version: Critical Child Theme\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-07-06 18:31-0600\n"
+"PO-Revision-Date: 2010-07-06 18:31-0600\n"
+"Last-Translator: Justin Tadlock <justin@justintadlock.com>\n"
+"Language-Team: ThemeHybrid\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Poedit-KeywordsList: _e;__;esc_attr_e;esc_attr__;esc_html_e;esc_html__;_x;_ex;esc_attr_x;esc_html_x;_n;_nx;_n_noop;_nx_noop\n"
+"X-Poedit-Basepath: ../\n"
+"X-Poedit-SearchPath-0: .\n"
+
+#: functions.php:60
+msgid "Utility: Header"
+msgstr ""
+
+#: functions.php:102
+msgid "No Responses"
+msgstr ""
+
+#: home.php:37
+msgid "Sorry, no posts matched your criteria."
+msgstr ""
+
diff --git a/wp-content/themes/critical/languages/en_EN.mo b/wp-content/themes/critical/languages/en_EN.mo
new file mode 100644
index 0000000000000000000000000000000000000000..bc8f12401a781295e74fc5e8e474070e7c4c756e
GIT binary patch
literal 553
zcmca7#4?qEfq{XMfq_AWfq_AVfq{XUfq_8>B*?(PV8Ot^@Sc%@!4j$lD$KwTP?VpQ
znp~pmnW7t(T2!2wpJ%1uT$EXonVguT;GB_}lcErkk(!&z6_i?#UsR&&Tb!PmqU%(e
zUaT9EZ>7K$;2)yvT$Gwvl9`{U>ylWKYNcRgU}&IgV6JOmreJ7cWo)QxU}j*z72vNM
zlv<VvvH`C;pTy!4-H@WhyyBe1lKdho1+UWLlFU4Xki?Xn{N!u}n=CNj0Ya5PMD>#M
zbM3f%67$ka6Vp?5LsAoStsw69s7xx#OyTnN^mRpe&`{5S%Q-)<BsH%@H>9#4)k>ix
zwW377ASW?1&srflBeAGBwZt|w#7)-%p$_DvwA3P9*SzHXl+3(zD+P<B%o45$-GKbm
zl*|%c@6^ij{Gya%pUmPCD~0$}>-c!<)Z*m$#FCPt_*4WFBAQW>n*$XEGvlq}E3D&F
zD-h}+Ot55yb$p(6d>)93&&$s*0I|UggzZj=#i<2}B^g!<dV2Z@;o#K7qU4N##F7kM
K11kkRE(QP;fU8vi

literal 0
HcmV?d00001

diff --git a/wp-content/themes/critical/languages/en_EN.po b/wp-content/themes/critical/languages/en_EN.po
new file mode 100644
index 000000000..bef1956c6
--- /dev/null
+++ b/wp-content/themes/critical/languages/en_EN.po
@@ -0,0 +1,27 @@
+msgid ""
+msgstr ""
+"Project-Id-Version: Critical Child Theme\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-07-06 18:31-0600\n"
+"PO-Revision-Date: 2010-07-06 18:31-0600\n"
+"Last-Translator: Justin Tadlock <justin@justintadlock.com>\n"
+"Language-Team: ThemeHybrid\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Poedit-KeywordsList: _e;__;esc_attr_e;esc_attr__;esc_html_e;esc_html__;_x;_ex;esc_attr_x;esc_html_x;_n;_nx;_n_noop;_nx_noop\n"
+"X-Poedit-Basepath: ../\n"
+"X-Poedit-SearchPath-0: .\n"
+
+#: functions.php:60
+msgid "Utility: Header"
+msgstr ""
+
+#: functions.php:102
+msgid "No Responses"
+msgstr ""
+
+#: home.php:37
+msgid "Sorry, no posts matched your criteria."
+msgstr ""
+
diff --git a/wp-content/themes/critical/license.txt b/wp-content/themes/critical/license.txt
new file mode 100644
index 000000000..63e41a44c
--- /dev/null
+++ b/wp-content/themes/critical/license.txt
@@ -0,0 +1,339 @@
+		    GNU GENERAL PUBLIC LICENSE
+		       Version 2, June 1991
+
+ Copyright (C) 1989, 1991 Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ Everyone is permitted to copy and distribute verbatim copies
+ of this license document, but changing it is not allowed.
+
+			    Preamble
+
+  The licenses for most software are designed to take away your
+freedom to share and change it.  By contrast, the GNU General Public
+License is intended to guarantee your freedom to share and change free
+software--to make sure the software is free for all its users.  This
+General Public License applies to most of the Free Software
+Foundation's software and to any other program whose authors commit to
+using it.  (Some other Free Software Foundation software is covered by
+the GNU Lesser General Public License instead.)  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
+this service 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 make restrictions that forbid
+anyone to deny you these rights or to ask you to surrender the rights.
+These restrictions translate to certain responsibilities for you if you
+distribute copies of the software, or if you modify it.
+
+  For example, if you distribute copies of such a program, whether
+gratis or for a fee, you must give the recipients all the rights that
+you have.  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.
+
+  We protect your rights with two steps: (1) copyright the software, and
+(2) offer you this license which gives you legal permission to copy,
+distribute and/or modify the software.
+
+  Also, for each author's protection and ours, we want to make certain
+that everyone understands that there is no warranty for this free
+software.  If the software is modified by someone else and passed on, we
+want its recipients to know that what they have is not the original, so
+that any problems introduced by others will not reflect on the original
+authors' reputations.
+
+  Finally, any free program is threatened constantly by software
+patents.  We wish to avoid the danger that redistributors of a free
+program will individually obtain patent licenses, in effect making the
+program proprietary.  To prevent this, we have made it clear that any
+patent must be licensed for everyone's free use or not licensed at all.
+
+  The precise terms and conditions for copying, distribution and
+modification follow.
+
+		    GNU GENERAL PUBLIC LICENSE
+   TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
+
+  0. This License applies to any program or other work which contains
+a notice placed by the copyright holder saying it may be distributed
+under the terms of this General Public License.  The "Program", below,
+refers to any such program or work, and a "work based on the Program"
+means either the Program or any derivative work under copyright law:
+that is to say, a work containing the Program or a portion of it,
+either verbatim or with modifications and/or translated into another
+language.  (Hereinafter, translation is included without limitation in
+the term "modification".)  Each licensee is addressed as "you".
+
+Activities other than copying, distribution and modification are not
+covered by this License; they are outside its scope.  The act of
+running the Program is not restricted, and the output from the Program
+is covered only if its contents constitute a work based on the
+Program (independent of having been made by running the Program).
+Whether that is true depends on what the Program does.
+
+  1. You may copy and distribute 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 and disclaimer of warranty; keep intact all the
+notices that refer to this License and to the absence of any warranty;
+and give any other recipients of the Program a copy of this License
+along with the Program.
+
+You may charge a fee for the physical act of transferring a copy, and
+you may at your option offer warranty protection in exchange for a fee.
+
+  2. You may modify your copy or copies of the Program or any portion
+of it, thus forming a work based on the Program, and copy and
+distribute such modifications or work under the terms of Section 1
+above, provided that you also meet all of these conditions:
+
+    a) You must cause the modified files to carry prominent notices
+    stating that you changed the files and the date of any change.
+
+    b) You must cause any work that you distribute or publish, that in
+    whole or in part contains or is derived from the Program or any
+    part thereof, to be licensed as a whole at no charge to all third
+    parties under the terms of this License.
+
+    c) If the modified program normally reads commands interactively
+    when run, you must cause it, when started running for such
+    interactive use in the most ordinary way, to print or display an
+    announcement including an appropriate copyright notice and a
+    notice that there is no warranty (or else, saying that you provide
+    a warranty) and that users may redistribute the program under
+    these conditions, and telling the user how to view a copy of this
+    License.  (Exception: if the Program itself is interactive but
+    does not normally print such an announcement, your work based on
+    the Program is not required to print an announcement.)
+
+These requirements apply to the modified work as a whole.  If
+identifiable sections of that work are not derived from the Program,
+and can be reasonably considered independent and separate works in
+themselves, then this License, and its terms, do not apply to those
+sections when you distribute them as separate works.  But when you
+distribute the same sections as part of a whole which is a work based
+on the Program, the distribution of the whole must be on the terms of
+this License, whose permissions for other licensees extend to the
+entire whole, and thus to each and every part regardless of who wrote it.
+
+Thus, it is not the intent of this section to claim rights or contest
+your rights to work written entirely by you; rather, the intent is to
+exercise the right to control the distribution of derivative or
+collective works based on the Program.
+
+In addition, mere aggregation of another work not based on the Program
+with the Program (or with a work based on the Program) on a volume of
+a storage or distribution medium does not bring the other work under
+the scope of this License.
+
+  3. You may copy and distribute the Program (or a work based on it,
+under Section 2) in object code or executable form under the terms of
+Sections 1 and 2 above provided that you also do one of the following:
+
+    a) Accompany it with the complete corresponding machine-readable
+    source code, which must be distributed under the terms of Sections
+    1 and 2 above on a medium customarily used for software interchange; or,
+
+    b) Accompany it with a written offer, valid for at least three
+    years, to give any third party, for a charge no more than your
+    cost of physically performing source distribution, a complete
+    machine-readable copy of the corresponding source code, to be
+    distributed under the terms of Sections 1 and 2 above on a medium
+    customarily used for software interchange; or,
+
+    c) Accompany it with the information you received as to the offer
+    to distribute corresponding source code.  (This alternative is
+    allowed only for noncommercial distribution and only if you
+    received the program in object code or executable form with such
+    an offer, in accord with Subsection b above.)
+
+The source code for a work means the preferred form of the work for
+making modifications to it.  For an executable work, complete source
+code means all the source code for all modules it contains, plus any
+associated interface definition files, plus the scripts used to
+control compilation and installation of the executable.  However, as a
+special exception, the source code distributed need not include
+anything that is normally distributed (in either source or binary
+form) with the major components (compiler, kernel, and so on) of the
+operating system on which the executable runs, unless that component
+itself accompanies the executable.
+
+If distribution of executable or object code is made by offering
+access to copy from a designated place, then offering equivalent
+access to copy the source code from the same place counts as
+distribution of the source code, even though third parties are not
+compelled to copy the source along with the object code.
+
+  4. You may not copy, modify, sublicense, or distribute the Program
+except as expressly provided under this License.  Any attempt
+otherwise to copy, modify, sublicense or distribute the Program is
+void, and will automatically terminate your rights under this License.
+However, parties who have received copies, or rights, from you under
+this License will not have their licenses terminated so long as such
+parties remain in full compliance.
+
+  5. You are not required to accept this License, since you have not
+signed it.  However, nothing else grants you permission to modify or
+distribute the Program or its derivative works.  These actions are
+prohibited by law if you do not accept this License.  Therefore, by
+modifying or distributing the Program (or any work based on the
+Program), you indicate your acceptance of this License to do so, and
+all its terms and conditions for copying, distributing or modifying
+the Program or works based on it.
+
+  6. Each time you redistribute the Program (or any work based on the
+Program), the recipient automatically receives a license from the
+original licensor to copy, distribute or modify the Program subject to
+these terms and conditions.  You may not impose any further
+restrictions on the recipients' exercise of the rights granted herein.
+You are not responsible for enforcing compliance by third parties to
+this License.
+
+  7. If, as a consequence of a court judgment or allegation of patent
+infringement or for any other reason (not limited to patent issues),
+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
+distribute so as to satisfy simultaneously your obligations under this
+License and any other pertinent obligations, then as a consequence you
+may not distribute the Program at all.  For example, if a patent
+license would not permit royalty-free redistribution of the Program by
+all those who receive copies directly or indirectly through you, then
+the only way you could satisfy both it and this License would be to
+refrain entirely from distribution of the Program.
+
+If any portion of this section is held invalid or unenforceable under
+any particular circumstance, the balance of the section is intended to
+apply and the section as a whole is intended to apply in other
+circumstances.
+
+It is not the purpose of this section to induce you to infringe any
+patents or other property right claims or to contest validity of any
+such claims; this section has the sole purpose of protecting the
+integrity of the free software distribution system, which is
+implemented by public license practices.  Many people have made
+generous contributions to the wide range of software distributed
+through that system in reliance on consistent application of that
+system; it is up to the author/donor to decide if he or she is willing
+to distribute software through any other system and a licensee cannot
+impose that choice.
+
+This section is intended to make thoroughly clear what is believed to
+be a consequence of the rest of this License.
+
+  8. If the distribution and/or use of the Program is restricted in
+certain countries either by patents or by copyrighted interfaces, the
+original copyright holder who places the Program under this License
+may add an explicit geographical distribution limitation excluding
+those countries, so that distribution is permitted only in or among
+countries not thus excluded.  In such case, this License incorporates
+the limitation as if written in the body of this License.
+
+  9. The Free Software Foundation may publish revised and/or new versions
+of the 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 a version number of this License which applies to it and "any
+later version", you have the option of following the terms and conditions
+either of that version or of any later version published by the Free
+Software Foundation.  If the Program does not specify a version number of
+this License, you may choose any version ever published by the Free Software
+Foundation.
+
+  10. If you wish to incorporate parts of the Program into other free
+programs whose distribution conditions are different, write to the author
+to ask for permission.  For software which is copyrighted by the Free
+Software Foundation, write to the Free Software Foundation; we sometimes
+make exceptions for this.  Our decision will be guided by the two goals
+of preserving the free status of all derivatives of our free software and
+of promoting the sharing and reuse of software generally.
+
+			    NO WARRANTY
+
+  11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, 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.
+
+  12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
+WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
+REDISTRIBUTE 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.
+
+		     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
+convey 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 2 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, write to the Free Software Foundation, Inc.,
+    51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+
+Also add information on how to contact you by electronic and paper mail.
+
+If the program is interactive, make it output a short notice like this
+when it starts in an interactive mode:
+
+    Gnomovision version 69, Copyright (C) year name of author
+    Gnomovision 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, the commands you use may
+be called something other than `show w' and `show c'; they could even be
+mouse-clicks or menu items--whatever suits your program.
+
+You should also get your employer (if you work as a programmer) or your
+school, if any, to sign a "copyright disclaimer" for the program, if
+necessary.  Here is a sample; alter the names:
+
+  Yoyodyne, Inc., hereby disclaims all copyright interest in the program
+  `Gnomovision' (which makes passes at compilers) written by James Hacker.
+
+  <signature of Ty Coon>, 1 April 1989
+  Ty Coon, President of Vice
+
+This 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.
\ No newline at end of file
diff --git a/wp-content/themes/critical/readme.html b/wp-content/themes/critical/readme.html
new file mode 100644
index 000000000..68100e673
--- /dev/null
+++ b/wp-content/themes/critical/readme.html
@@ -0,0 +1,60 @@
+<!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>
+<meta http-equiv="Content-Type" content="text/html;charset=utf-8"/>
+<title>A guide to the Critical WordPress theme</title>
+
+<link rel="stylesheet" href="../hybrid/library/css/25px.css" type="text/css" media="screen" />
+<link rel="stylesheet" href="../hybrid/library/css/readme.css" type="text/css" media="screen" />
+
+</head>
+<body>
+
+<h1>A guide to the Critical theme</h1>
+
+<p class="first"><em>Critical</em> is a child theme of <em>Hybrid</em> that was designed to house reviews for movies, TV series, books, and other types of entertainment.</p>
+
+<p class="second">This theme was created because of a high demand by users to have a theme that functioned like the <a href="http://popcritics.com/movies" title="Pop Critics Movie Database">movie database</a> site I built. It’s great for writing reviews and building a community of people around a single topic. It was developed for WordPress 2.8+.</p>
+
+<h2>How to install Critical</h2>
+
+<p>Once you've installed <a href="http://wordpress.org/extend/themes/hybrid" title="Hybrid WordPress theme">Hybrid</a>, follow these steps:</p>
+
+<ol>
+	<li>Unzip the <code>critical.zip</code> file (you've probably already done this).</li>
+	<li>Upload the <code>critical</code> folder to your <code>/wp-content/themes</code> directory.</li>
+	<li>Go to <em>Appearance > Themes</em> in your WordPress admin.</li>
+	<li>Activate the <em>Critical</em> theme.</li>
+</ol>
+
+<h2>Using the theme</h2>
+
+<p>Everything should work from the moment you have everything installed.  Since the theme relies heavily on thumbnails, it might be helpful to read up on <a href="http://themehybrid.com/themes/hybrid/images" title="How images work in Hybrid">how images work</a> within the <em>Hybrid</em> framework.</p>
+
+<p>To get the ratings system working, install the <a href="http://wordpress.org/extend/plugins/wp-postratings">WP PostRatings</a> plugin by Lester Chan.</p>
+
+<h2>Widgets</h2>
+
+<p><em>Critical</em> is packaged with an additional widget area (aside from the numerous ones already available).</p>
+
+<dl>
+	<dt>Utility: Header</dt>
+	<dd>Located to the right of the site title and description.  Optimized for 468px by 60px ads.</dd>
+</dl>
+
+<h2>Theme Support &amp; Community</h2>
+
+<p>The most authoritative sources for finding out how to use the theme or do some nifty stuff are the <a href="http://themehybrid.com/themes/critical" title="Critical WordPress theme">Critical</a> and <a href="http://themehybrid.com/themes/hybrid" title="Hybrid WordPress theme">Hybrid</a> theme tutorials.  I'll keep both updated with tutorials and frequently asked questions.</p>
+
+<p>We also have a vibrant community at the <a href="http://themehybrid.com/support" title="Theme Hybrid support forums">Theme Hybrid Support Forums</a>.  If you ever lose the link, you can find it right from your Hybrid Settings page in your WordPress dashboard.</p>
+
+<h2>Copyright &amp; License</h2>
+
+<p><em>Critical</em> is licensed under the <a href="http://www.gnu.org/licenses/old-licenses/gpl-2.0.html" title="GNU GPL">GNU General Public License</a>, version 2 (<acronym title="GNU General Public License">GPL</acronym>).</p>
+
+<p><em>Critical</em> is copyrighted to <a href="http://justintadlock.com" title="Justin Tadlock">Justin Tadlock</a> and <a href="http://themehybrid.com" title="Theme Hybrid">Theme Hybrid</a>.</p>
+
+<p>2009&thinsp;&ndash;&thinsp;2010 &copy; Justin Tadlock.  All rights reserved.</p>
+
+</body>
+</html>
\ No newline at end of file
diff --git a/wp-content/themes/critical/screenshot.png b/wp-content/themes/critical/screenshot.png
new file mode 100644
index 0000000000000000000000000000000000000000..1165e37c55c246b6ce0668b8207cd87730cc1c5e
GIT binary patch
literal 24750
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
FngD4osWbop

literal 0
HcmV?d00001

diff --git a/wp-content/themes/critical/sidebar-header.php b/wp-content/themes/critical/sidebar-header.php
new file mode 100644
index 000000000..411747d21
--- /dev/null
+++ b/wp-content/themes/critical/sidebar-header.php
@@ -0,0 +1,20 @@
+<?php
+/**
+ * Header Sidebar
+ *
+ * The Heder Sidebar template houses the HTML used for the 'Utility: Header' 
+ * widget area. It will first check if the widget area is active before displaying anything.
+ *
+ * @package Critical
+ * @subpackage Template
+ */
+
+	if ( is_active_sidebar( 'utility-header' ) ) : ?>
+
+		<div id="utility-header" class="sidebar sidebar-header utility">
+
+			<?php dynamic_sidebar( 'utility-header' ); ?>
+
+		</div><!-- #utility-header .utility -->
+
+	<?php endif; ?>
\ No newline at end of file
diff --git a/wp-content/themes/critical/style.css b/wp-content/themes/critical/style.css
new file mode 100644
index 000000000..7378d009d
--- /dev/null
+++ b/wp-content/themes/critical/style.css
@@ -0,0 +1,535 @@
+/**
+ * Theme Name: Critical
+ * Theme URI: http://themehybrid.com/themes/critical
+ * Description: An image-based WordPress theme ideal for movie, TV, and book reviews.
+ * Version: 0.2
+ * Author: Justin Tadlock
+ * Author URI: http://justintadlock.com
+ * Tags: theme-options, threaded-comments, translation-ready, sticky-post, microformats, two-columns, fixed-width
+ * Template: hybrid
+ * Status: publish
+ *
+ * Copyright (c) 2009 - 2010 Justin Tadlock.  All rights reserved.
+ * http://justintadlock.com
+ *
+ * Hybrid is released under the GNU General Public License, version 2 (GPL).
+ * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
+ *
+ * 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.
+ */
+
+/* Get base CSS */
+@import url('../hybrid/library/css/21px.css');
+
+/* Get layout CSS */
+@import url('../hybrid/library/css/2c-l-fixed.css');
+
+/* Get plugins CSS */
+@import url('../hybrid/library/css/plugins.css');
+
+/* Get drop-downs CSS */
+@import url('../hybrid/library/css/drop-downs.css');
+
+/* Get tabs CSS (uncomment below line if using the Hybrid Tabs plugin) */
+/* @import url('tabs.css'); */
+
+/* Body */
+body {
+	font: 15px/22px Georgia, Times, 'Times New Roman', serif;
+	color: #000;
+	}
+#body-container {
+	width: 960px;
+	margin: 0 auto 60px auto;
+	}
+
+/* Links */
+a {
+	color: #0000ff;
+	text-decoration: none;
+	}
+a:visited {
+	color: #663399;
+	}
+a:hover, a:active {
+	text-decoration: underline;
+	}
+
+/* Headers */
+h1, h2, h3, h4, h5, h6 {
+	font-family: Arial, Verdana, sans-serif;
+	font-weight: bold;
+	}
+
+/* Blockquotes */
+blockquote {
+	font-style: italic;
+	color: #444;
+	}
+blockquote em {
+	font-style: normal;
+	}
+
+/* Code */
+pre {
+	padding: 9px;
+	background: #f9f9f9;
+	border: 1px solid #ccc;
+	}
+code {
+	padding: 0 3px;
+	background: #eee;
+	}
+pre code {
+	background: transparent;
+	}
+
+/* Tables */
+table {
+	width: 100%;
+	border-collapse: separate;
+	border-top: 1px solid #ccc;
+	border-left: 1px solid #ccc;
+	}
+caption {
+	font-size: .9em;
+	font-style: italic;
+	text-align: right;
+	}
+td, th {
+	padding: 3px 6px;
+	border-bottom: 1px solid #ccc;
+	border-right: 1px solid #ccc;
+	}
+th {
+	background: #eee;
+	}
+
+/* Drop caps */
+.drop-cap {
+	float: left;
+	margin: 6px 3px 0 0;
+	font: normal normal normal 47px/35px "Warnock Pro", "Goudy Old Style", Palatino,"Book Antiqua", Cambria, Georgia, serif;
+	color: #333;
+	}
+
+/* Notes */
+.note {
+	padding: 6px 9px;
+	background: #eee;
+	border: 1px solid #ccc;
+	}
+
+/* Warnings/Alerts */
+.warning, .alert {
+	padding: 6px 9px;
+	background: #fffbbc;
+	border: 1px solid #E6DB55;
+	}
+
+/* Errors */
+.error {
+	padding: 6px 9px;
+	background: #ffebe8;
+	border: 1px solid #C00;
+	}
+
+/* Downloads */
+.download {
+	padding: 6px 9px;
+	background: #e7f7d3;
+	border: 1px solid #6c3;
+	}
+
+/* Images */
+.hentry img {
+	max-width: 568px;
+	padding: 5px;
+	border: 1px solid #ccc;
+	}
+
+/* Thumbnails */
+.blog .thumbnail, .archive .thumbnail, .search .thumbnail {
+	width: 150px;
+	height: 200px;
+	margin: 8px auto 2px auto;
+	padding: 3px;
+	border: 1px solid #ddd;
+	display: block;
+	}
+
+/* Captions [caption] */
+.wp-caption {
+	max-width: 576px;
+	margin-top: 6px;
+	padding: 6px 1px 0 1px;
+	border: 1px solid #ccc;
+	text-align: center;
+	}
+.wp-caption .wp-caption-text {
+	margin: 0;
+	padding: 0 5px;
+	text-align: right;
+	font-size: .9em;
+	font-style: italic;
+	color: #666;
+	}
+.wp-caption img {
+	max-width: 564px;
+	margin: 0 auto;
+	padding: 0;
+	border: 1px solid #666;
+	}
+
+/* Gallery [gallery] */
+.gallery img {
+	border: 1px solid #ccc;
+	}
+
+/* Avatars */
+.avatar {
+	float: left;
+	width: 100px;
+	height: 100px;
+	margin: 5px 15px 0 0;
+	padding: 5px;
+	border: 1px solid #ccc;
+	}
+
+/* Header */
+#header {
+	margin: 60px 0 40px 0;
+	}
+#site-title {
+	margin: 0 0 20px 0;
+	font: normal normal bold 30px/30px Arial, Verdana, sans-serif;
+	}
+#site-title a {
+	color: #000;
+	}
+#site-description {
+	font: italic normal normal 15px/20px Georgia, Times, 'Times New Roman', serif;
+	color: #666;
+	}
+
+/* Utility: Header */
+#utility-header {
+	overflow: hidden;
+	float: right;
+	width: 468px;
+	height: 60px;
+	}
+
+/* Navigation */
+#primary-menu {
+	overflow: visible;
+	height: 34px;
+	margin: 0 0 60px 0;
+	z-index: 100;
+	}
+#primary-menu li {
+	margin-right: 15px;
+	}
+#primary-menu li li {
+	margin-right: 0;
+	}
+#primary-menu li a {
+	padding: 8px 15px 8px 15px;
+	color: #111;
+	background: #fff;
+	border: 1px solid #ddd;
+	}
+
+/* Drop-downs style */
+#primary-menu li:hover ul, li.sfHover ul {
+	top: 32px;
+	}
+#primary-menu li li a {
+	border-top: none;
+	margin-right: 0;
+	}
+#primary-menu li ul {
+	background: #fff;
+	border-top: 1px solid #ddd;
+	}
+#primary-menu li li:hover ul, #primary-menu li li.sfHover ul, 
+#primary-menu li li li:hover ul, #primary-menu li li li.sfHover ul  {
+	top: -1px;
+	}
+#primary-menu ul ul ul {
+	margin-left: -1px;
+	}
+
+/* Container */
+#container {
+	overflow: hidden;
+	margin: 0 0 30px 0;
+	}
+
+/* Breadcrumb trail */
+.breadcrumb {
+	margin: 0 0 20px 0;
+	font-style: italic;
+	font-size: 14px;
+	color: #666;
+	}
+
+/* Content */
+.content {
+	width: 580px;
+	}
+
+/* Make content area wider when showing thumbnails. */
+.blog .content, .archive .content, .search .content {
+	width: 605px;
+	}
+
+/* Posts */
+.hentry {
+	overflow: hidden;
+	margin-bottom: 25px;
+	}
+
+/* Archive-type posts. */
+.blog .hentry, .archive .hentry, .search .hentry {
+	float: left;
+	width: 173px;
+	height: 240px;
+	margin: 0 25px 25px 0;
+	border: 1px solid #ddd;
+	}
+
+/* Link category archives. */
+.link_category .hentry {
+	float: none;
+	width: auto;
+	height: auto;
+	margin: 0 0 25px 0;
+	border: none;
+	}
+
+/* Post ratings */
+.post-ratings {
+	margin: 0 0 21px 0;
+	}
+.post-ratings-loading {
+	display: none !important;
+	}
+.blog .hentry .post-ratings, .archive .hentry .post-ratings, .search .hentry .post-ratings {
+	width: 60px !important;
+	float: right;
+	margin: 0 10px 0 0 !important;
+	padding: 0 !important;
+	}
+.blog, .post-ratings img, .archive .post-ratings img, .search .post-ratings img {
+	margin: 0 !important;
+	padding: 0 !important;
+	}
+
+/* Comments link */
+.blog .comments-link, .archive .comments-link, .search .comments-link {
+	float: left;
+	width: 90px;
+	margin: 3px 0 0 10px;
+	font: italic normal normal 11px/15px Georgia, Times, 'Times New Roman', serif;
+	color: #777;
+	}
+
+/* Post titles. */
+.entry-title a {
+	color: #000;
+	}
+
+/* Byline */
+.byline {
+	font-style: italic;
+	color: #666;
+	}
+.byline a {
+	color: #333;
+	}
+
+/* Entry meta */
+.entry-meta {
+	clear: both;
+	font-style: italic;
+	color: #666;
+	}
+.entry-meta a {
+	color: #333;
+	}
+
+/* Page links (multiple-paged posts) */
+p.page-links a {
+	margin: 0 3px;
+	padding: 3px 9px 3px 9px;
+	border: 1px solid #ccc;
+	}
+
+/* Archive information */
+.archive-info, .author-info, .author-profile, .date-info, .category-info, .tag-info, .search-info, .taxonomy-info {
+	overflow: hidden;
+	margin: 0 0 40px 0;
+	}
+
+/* Series */
+.series {
+	overflow: hidden;
+	margin-bottom: 25px;
+	}
+
+/* Navigation links */
+.navigation-links {
+	clear: left;
+	margin-bottom: 21px;
+	font-style: italic;
+	}
+.navigation-links .previous {
+	float: left;
+	max-width: 50%;
+	}
+.navigation-links .next {
+	float: right;
+	max-width: 50%;
+	text-align: right;
+	}
+
+/* WP Pagenavi */
+.wp-pagenavi {
+	display: block;
+	clear: left;
+	margin: 20px 0;
+	}
+.wp-pagenavi .pages, .wp-pagenavi .current, .wp-pagenavi .extend, .wp-pagenavi a {
+	margin-right: 6px !important;
+	padding: 3px 9px 3px 9px !important;
+	border: 1px solid #ddd !important;
+	}
+
+/* Primary */
+#primary {
+	position: static;
+	}
+
+/* Secondary */
+#secondary {
+	position: static;
+	}
+
+/* Utility widget areas */
+#utility-before-content, #utility-after-content, #utility-after-page, #utility-after-single {
+	overflow: hidden;
+	margin: 0 0 25px 0;
+	padding: 20px 20px 0 20px;
+	border: 1px solid #ccc;
+	}
+
+/* Comments template */
+#comments-template {
+	}
+
+/* Comment headers */
+.comments-header {
+	font-size: 1.2em;
+	}
+
+/* Comments are closed */
+.comments-closed {
+	font-style: italic;
+	}
+
+/* Comment list */
+ol.comment-list, ol.ping-list, ol.comment-list ol, ol.ping-list ol {
+	list-style: none;
+	margin: 0 0 21px 0;
+	}
+
+/* Comments, pingbacks, and trackbacks. */
+li.comment, li.pingback, li.trackback {
+	overflow: hidden;
+	margin: 0 0 20px 0;
+	padding: 20px 20px 0 20px;
+	background: #fff;
+	border: 1px solid #ccc;
+	}
+
+/* Comments by the post author. */
+li.entry-author {
+	}
+
+/* Avatar */
+#comments-template .avatar {
+	width: 40px;
+	height: 40px;
+	float: left;
+	margin-right: 15px;
+	padding: 0;
+	border: 1px solid #666;
+	}
+
+/* Comment metadata */
+.comment-meta {
+	margin: 0 0 21px 0;
+	color: #666;
+	}
+.comment-meta a {
+	font-style: italic;
+	color: #333;
+	}
+
+/* Comment text */
+.comment-text {
+	clear: left;
+	margin: 0 15px;
+	}
+
+/* Form */
+.text-input {
+	display: block;
+	padding: 3px 6px;
+	width: 97%;
+	}
+#comments-template label {
+	font-size: .9em;
+	}
+
+/* Respond textarea */
+textarea {
+	width: 98%;
+	}
+
+/* Submit and rest buttons */
+.button, #submit {
+	width: 100px;
+	margin-right: 15px;
+	padding: 7px 15px 8px 15px;
+	background: #fff;
+	border: 1px solid #ccc;
+	}
+.button:hover, #submit:hover {
+	cursor: pointer;
+	background: #f9f9f9;
+	}
+
+/* Footer container */
+#footer-container {
+	margin: 0 0 60px 0;
+	}
+
+/* Subsidiary */
+#subsidiary {
+	margin: 0 0 21px 0;
+	}
+
+/* Footer */
+#footer {
+	font-style: italic;
+	color: #444;
+	}
+#footer .copyright {
+	display: inline;
+	float: left;
+	margin-right: 9px;
+	}
\ No newline at end of file
diff --git a/wp-content/themes/critical/tabs.css b/wp-content/themes/critical/tabs.css
new file mode 100644
index 000000000..ec32ca15a
--- /dev/null
+++ b/wp-content/themes/critical/tabs.css
@@ -0,0 +1,50 @@
+/**
+ * Tabs Stylesheet
+ * To be used with the Hybrid Tabs plugin/widget
+ *
+ * @since 0.5
+ * @package Hybrid
+ * @subpackage CSS
+ */
+
+.widget-tabs {
+	overflow: hidden;
+	padding: 0;
+	margin: 0 0 21px 0;
+	background: transparent;
+	}
+.widget-tabs ul.tabs {
+	display: block !important;
+	width: 100%;
+	overflow: hidden;
+	list-style: none;
+	margin: 0 0 10px 0;
+	}
+.widget-tabs li.t {
+	float: left;
+	display: inline;
+	margin: 0 10px 0 0;
+	padding: 0;
+	background: transparent;
+	}
+.widget-tabs li.t a {
+	display: block;
+	float: left;
+	margin: 0;
+	padding: 5px 10px;
+	background: #fff;
+	border: 1px solid #ccc;
+	}
+.widget-tabs li.t a:hover {
+	background: #f7f7f7;
+	text-decoration: none;
+	}
+.widget-tabs li.t a.tab-current {
+	color: #2f6eb9;
+	background: #eee;
+	}
+.widget-tabs .tab-content {
+	padding: 15px 15px 0 15px;
+	background: #fff;
+	border: 1px solid #ccc;
+	}
\ No newline at end of file
-- 
GitLab