From 50bf8dfaef22f5c21233a5c569c09166ba830b51 Mon Sep 17 00:00:00 2001 From: Andrew Nacin Date: Tue, 20 Mar 2012 18:41:54 +0000 Subject: [PATCH] Remove Twenty Twelve from 3.4. see #19978. see http://wp.me/pbNCB-yA. git-svn-id: https://develop.svn.wordpress.org/trunk@20219 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-content/themes/twentytwelve/404.php | 29 - wp-content/themes/twentytwelve/archive.php | 79 -- wp-content/themes/twentytwelve/author.php | 65 -- wp-content/themes/twentytwelve/comments.php | 66 -- .../themes/twentytwelve/content-aside.php | 29 - .../themes/twentytwelve/content-image.php | 50 -- .../themes/twentytwelve/content-link.php | 29 - .../themes/twentytwelve/content-page.php | 23 - .../themes/twentytwelve/content-quote.php | 50 -- .../themes/twentytwelve/content-single.php | 71 -- wp-content/themes/twentytwelve/content.php | 60 -- wp-content/themes/twentytwelve/footer.php | 24 - .../themes/twentytwelve/full-width-page.php | 23 - wp-content/themes/twentytwelve/functions.php | 342 -------- wp-content/themes/twentytwelve/header.php | 54 -- wp-content/themes/twentytwelve/image.php | 102 --- wp-content/themes/twentytwelve/index.php | 64 -- wp-content/themes/twentytwelve/js/html5.js | 3 - .../themes/twentytwelve/js/navigation.js | 41 - .../twentytwelve/languages/twentytwelve.pot | 319 ------- wp-content/themes/twentytwelve/license.txt | 281 ------- wp-content/themes/twentytwelve/page.php | 29 - wp-content/themes/twentytwelve/readme.txt | 3 - wp-content/themes/twentytwelve/rtl.css | 9 - wp-content/themes/twentytwelve/screenshot.png | Bin 38486 -> 0 bytes wp-content/themes/twentytwelve/search.php | 49 -- wp-content/themes/twentytwelve/sidebar.php | 17 - wp-content/themes/twentytwelve/single.php | 30 - wp-content/themes/twentytwelve/style.css | 789 ------------------ 29 files changed, 2730 deletions(-) delete mode 100644 wp-content/themes/twentytwelve/404.php delete mode 100644 wp-content/themes/twentytwelve/archive.php delete mode 100644 wp-content/themes/twentytwelve/author.php delete mode 100644 wp-content/themes/twentytwelve/comments.php delete mode 100644 wp-content/themes/twentytwelve/content-aside.php delete mode 100644 wp-content/themes/twentytwelve/content-image.php delete mode 100644 wp-content/themes/twentytwelve/content-link.php delete mode 100644 wp-content/themes/twentytwelve/content-page.php delete mode 100644 wp-content/themes/twentytwelve/content-quote.php delete mode 100644 wp-content/themes/twentytwelve/content-single.php delete mode 100644 wp-content/themes/twentytwelve/content.php delete mode 100644 wp-content/themes/twentytwelve/footer.php delete mode 100644 wp-content/themes/twentytwelve/full-width-page.php delete mode 100644 wp-content/themes/twentytwelve/functions.php delete mode 100644 wp-content/themes/twentytwelve/header.php delete mode 100644 wp-content/themes/twentytwelve/image.php delete mode 100644 wp-content/themes/twentytwelve/index.php delete mode 100644 wp-content/themes/twentytwelve/js/html5.js delete mode 100644 wp-content/themes/twentytwelve/js/navigation.js delete mode 100644 wp-content/themes/twentytwelve/languages/twentytwelve.pot delete mode 100644 wp-content/themes/twentytwelve/license.txt delete mode 100644 wp-content/themes/twentytwelve/page.php delete mode 100644 wp-content/themes/twentytwelve/readme.txt delete mode 100644 wp-content/themes/twentytwelve/rtl.css delete mode 100644 wp-content/themes/twentytwelve/screenshot.png delete mode 100644 wp-content/themes/twentytwelve/search.php delete mode 100644 wp-content/themes/twentytwelve/sidebar.php delete mode 100644 wp-content/themes/twentytwelve/single.php delete mode 100644 wp-content/themes/twentytwelve/style.css diff --git a/wp-content/themes/twentytwelve/404.php b/wp-content/themes/twentytwelve/404.php deleted file mode 100644 index 1d7db1e3ed..0000000000 --- a/wp-content/themes/twentytwelve/404.php +++ /dev/null @@ -1,29 +0,0 @@ - - -
-
- -
-
-

-
- -
-

- -
-
- -
-
- - \ No newline at end of file diff --git a/wp-content/themes/twentytwelve/archive.php b/wp-content/themes/twentytwelve/archive.php deleted file mode 100644 index 2cdd4e2db7..0000000000 --- a/wp-content/themes/twentytwelve/archive.php +++ /dev/null @@ -1,79 +0,0 @@ - - -
-
- - -

' . get_the_date() . '' ); - } elseif ( is_month() ) { - printf( __( 'Monthly Archives: %s', 'twentytwelve' ), '' . get_the_date( _x( 'F Y', 'monthly archives date format', 'twentytwelve' ) ) . '' ); - } elseif ( is_year() ) { - printf( __( 'Yearly Archives: %s', 'twentytwelve' ), '' . get_the_date( _x( 'Y', 'yearly archives date format', 'twentytwelve' ) ) . '' ); - } elseif ( is_tag() ) { - printf( __( 'Tag Archives: %s', 'twentytwelve' ), '' . single_tag_title( '', false ) . '' ); - // Show an optional tag description - $tag_description = tag_description(); - if ( $tag_description ) - echo apply_filters( 'tag_archive_meta', '
' . $tag_description . '
' ); - } elseif ( is_category() ) { - printf( __( 'Category Archives: %s', 'twentytwelve' ), '' . single_cat_title( '', false ) . '' ); - // Show an optional category description - $category_description = category_description(); - if ( $category_description ) - echo apply_filters( 'category_archive_meta', '
' . $category_description . '
' ); - } else { - _e( 'Blog Archives', 'twentytwelve' ); - } - ?>

- - - - - -
-
-

-
- -
-

- -
-
- - - -
-
- - - \ No newline at end of file diff --git a/wp-content/themes/twentytwelve/author.php b/wp-content/themes/twentytwelve/author.php deleted file mode 100644 index ff7de9bdf1..0000000000 --- a/wp-content/themes/twentytwelve/author.php +++ /dev/null @@ -1,65 +0,0 @@ - - -
-
- - - - - - - - - - -
-
- -
-
-

- -
-
- - - - - - - - - - - -
-
-

-
- -
-

- -
-
- - - -
-
- - - \ No newline at end of file diff --git a/wp-content/themes/twentytwelve/comments.php b/wp-content/themes/twentytwelve/comments.php deleted file mode 100644 index c8c1beed39..0000000000 --- a/wp-content/themes/twentytwelve/comments.php +++ /dev/null @@ -1,66 +0,0 @@ - -
- -

-
- - - - - -

- ' . get_the_title() . '' ); - ?> -

- - 1 && get_option( 'page_comments' ) ) : // are there comments to navigate through ?> - - - -
    - 'twentytwelve_comment', 'style' => 'ol' ) ); ?> -
- - 1 && get_option( 'page_comments' ) ) : // are there comments to navigate through ?> - - - - -

- - - - - \ No newline at end of file diff --git a/wp-content/themes/twentytwelve/content-aside.php b/wp-content/themes/twentytwelve/content-aside.php deleted file mode 100644 index 0bec8ebbb0..0000000000 --- a/wp-content/themes/twentytwelve/content-aside.php +++ /dev/null @@ -1,29 +0,0 @@ - - -
> -
-

-
- -
- →', 'twentytwelve' ) ); ?> - '' ) ); ?> -
- -
- - - | - ' . __( 'Leave a reply', 'twentytwelve' ) . '', __( '1 Reply', 'twentytwelve' ), __( '% Replies', 'twentytwelve' ) ); ?> - - ', '' ); ?> -
-
diff --git a/wp-content/themes/twentytwelve/content-image.php b/wp-content/themes/twentytwelve/content-image.php deleted file mode 100644 index 16d0180497..0000000000 --- a/wp-content/themes/twentytwelve/content-image.php +++ /dev/null @@ -1,50 +0,0 @@ - - -
> -
-

- - -
- -
- →', 'twentytwelve' ) ); ?> - '' ) ); ?> -
- -
- - - Posted in %2$s', 'twentytwelve' ), 'entry-utility-prep entry-utility-prep-cat-links', $categories_list ); ?> - - - - - Tagged %2$s', 'twentytwelve' ), 'entry-utility-prep entry-utility-prep-tag-links', $tags_list ); ?> - - - - - ' . __( 'Leave a reply', 'twentytwelve' ) . '', __( '1 Reply', 'twentytwelve' ), __( '% Replies', 'twentytwelve' ) ); ?> - - - ', '' ); ?> -
-
diff --git a/wp-content/themes/twentytwelve/content-link.php b/wp-content/themes/twentytwelve/content-link.php deleted file mode 100644 index c062e51cf9..0000000000 --- a/wp-content/themes/twentytwelve/content-link.php +++ /dev/null @@ -1,29 +0,0 @@ - - -
> -
-

-
- -
- →', 'twentytwelve' ) ); ?> - '' ) ); ?> -
- -
- - - | - ' . __( 'Leave a reply', 'twentytwelve' ) . '', __( '1 Reply', 'twentytwelve' ), __( '% Replies', 'twentytwelve' ) ); ?> - - ', '' ); ?> -
-
diff --git a/wp-content/themes/twentytwelve/content-page.php b/wp-content/themes/twentytwelve/content-page.php deleted file mode 100644 index 3a44fb1478..0000000000 --- a/wp-content/themes/twentytwelve/content-page.php +++ /dev/null @@ -1,23 +0,0 @@ - - -
> -
-

-
- -
- - '' ) ); ?> -
-
- ', '' ); ?> -
-
diff --git a/wp-content/themes/twentytwelve/content-quote.php b/wp-content/themes/twentytwelve/content-quote.php deleted file mode 100644 index be809bb63a..0000000000 --- a/wp-content/themes/twentytwelve/content-quote.php +++ /dev/null @@ -1,50 +0,0 @@ - - -
> -
-

- - -
- -
- →', 'twentytwelve' ) ); ?> - '' ) ); ?> -
- -
- - - Posted in %2$s', 'twentytwelve' ), 'entry-utility-prep entry-utility-prep-cat-links', $categories_list ); ?> - - - - - Tagged %2$s', 'twentytwelve' ), 'entry-utility-prep entry-utility-prep-tag-links', $tags_list ); ?> - - - - - ' . __( 'Leave a reply', 'twentytwelve' ) . '', __( '1 Reply', 'twentytwelve' ), __( '% Replies', 'twentytwelve' ) ); ?> - - - ', '' ); ?> -
-
diff --git a/wp-content/themes/twentytwelve/content-single.php b/wp-content/themes/twentytwelve/content-single.php deleted file mode 100644 index b9a5de28ab..0000000000 --- a/wp-content/themes/twentytwelve/content-single.php +++ /dev/null @@ -1,71 +0,0 @@ - - -
> -
-

- - - - -
- -
- - '' ) ); ?> -
- -
- %5$s. Bookmark the permalink.', 'twentytwelve' ); - } elseif ( '' != $categories_list ) { - $utility_text = __( 'This entry was posted in %1$s by %5$s. Bookmark the permalink.', 'twentytwelve' ); - } else { - $utility_text = __( 'This entry was posted by %5$s. Bookmark the permalink.', 'twentytwelve' ); - } - - printf( - $utility_text, - $categories_list, - $tag_list, - esc_url( get_permalink() ), - the_title_attribute( 'echo=0' ), - get_the_author(), - esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ) - ); - ?> - ', '' ); ?> - - - - -
-
diff --git a/wp-content/themes/twentytwelve/content.php b/wp-content/themes/twentytwelve/content.php deleted file mode 100644 index cfbb97e065..0000000000 --- a/wp-content/themes/twentytwelve/content.php +++ /dev/null @@ -1,60 +0,0 @@ - - -
> -
-

- - - - -
- - -
- -
- -
- →', 'twentytwelve' ) ); ?> - '' ) ); ?> -
- - -
- - - - Posted in %2$s', 'twentytwelve' ), 'entry-utility-prep entry-utility-prep-cat-links', $categories_list ); ?> - - - - - Tagged %2$s', 'twentytwelve' ), 'entry-utility-prep entry-utility-prep-tag-links', $tags_list ); ?> - - - - - - ' . __( 'Leave a reply', 'twentytwelve' ) . '', __( '1 Reply', 'twentytwelve' ), __( '% Replies', 'twentytwelve' ) ); ?> - - - ', '' ); ?> -
-
diff --git a/wp-content/themes/twentytwelve/footer.php b/wp-content/themes/twentytwelve/footer.php deleted file mode 100644 index 0803c8917f..0000000000 --- a/wp-content/themes/twentytwelve/footer.php +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - - - - \ No newline at end of file diff --git a/wp-content/themes/twentytwelve/full-width-page.php b/wp-content/themes/twentytwelve/full-width-page.php deleted file mode 100644 index fbc7a781eb..0000000000 --- a/wp-content/themes/twentytwelve/full-width-page.php +++ /dev/null @@ -1,23 +0,0 @@ - - -
-
- - - - - - -
-
- - \ No newline at end of file diff --git a/wp-content/themes/twentytwelve/functions.php b/wp-content/themes/twentytwelve/functions.php deleted file mode 100644 index f8c5ae8ab6..0000000000 --- a/wp-content/themes/twentytwelve/functions.php +++ /dev/null @@ -1,342 +0,0 @@ -. - add_theme_support( 'automatic-feed-links' ); - - // Add support for a variety of post formats - add_theme_support( 'post-formats', array( 'aside', 'image', 'link', 'quote' ) ); - - // This theme uses wp_nav_menu() in one location. - register_nav_menu( 'primary', __( 'Primary Menu', 'twentytwelve' ) ); - - // Add support for custom background. - add_custom_background(); - - // Add support for a custom header image. - $header_args = array( - 'random-default' => true, - 'flex-height' => true, - 'suggested-height' => apply_filters( 'twentytwelve_header_image_height', 250 ), - 'flex-width' => true, - 'max-width' => apply_filters( 'twentytwelve_header_image_max_width', 2000 ), - 'suggested-width' => apply_filters( 'twentytwelve_header_image_width', 960 ), - ); - add_theme_support( 'custom-header', $header_args ); - add_custom_image_header( 'twentytwelve_header_style', 'twentytwelve_admin_header_style', 'twentytwelve_admin_header_image' ); - - // The default header text color - define( 'HEADER_TEXTCOLOR', '444' ); -} -endif; - -if ( ! function_exists( 'twentytwelve_header_style' ) ) : -/** - * Styles the header image and text displayed on the blog - * - * get_header_textcolor() options: HEADER_TEXTCOLOR is default, hide text (returns 'blank'), or any hex value - * - * @since Twenty Twelve 1.0 - */ -function twentytwelve_header_style() { - // If no custom options for text are set, let's bail - if ( HEADER_TEXTCOLOR == get_header_textcolor() ) - return; - // If we get this far, we have custom styles. - ?> - - Header admin panel. - * - * Referenced via add_custom_image_header() in twentytwelve_setup(). - * - * @since Twenty Twelve 1.0 - */ -function twentytwelve_admin_header_style() { -?> - - Header admin panel. - * - * Referenced via add_custom_image_header() in twentytwelve_setup(). - * - * @since Twenty Twelve 1.0 - */ -function twentytwelve_admin_header_image() { ?> -
- -

onclick="return false;" href="">

-

>

- - - -
- __( 'Main Sidebar', 'twentytwelve' ), - 'id' => 'sidebar-1', - 'before_widget' => '", - 'before_title' => '

', - 'after_title' => '

', - ) ); -} -add_action( 'widgets_init', 'twentytwelve_widgets_init' ); - -if ( ! function_exists( 'twentytwelve_content_nav' ) ) : -/** - * Display navigation to next/previous pages when applicable - * - * @since Twenty Twelve 1.0 - */ -function twentytwelve_content_nav( $nav_id ) { - global $wp_query; - - if ( $wp_query->max_num_pages > 1 ) : ?> - - comment_type ) : - case 'pingback' : - case 'trackback' : - // Display trackbacks differently than normal comments. - ?> -
  • id="comment-"> -

    ', '' ); ?>

    - -
  • id="li-comment-"> -
    -
    - %s', get_comment_author_link() ); - printf( '', - esc_url( get_comment_link( $comment->comment_ID ) ), - get_comment_time( 'c' ), - /* translators: 1: date, 2: time */ - sprintf( __( '%1$s at %2$s', 'twentytwelve' ), get_comment_date(), get_comment_time() ) - ); - ?> - ', '' ); ?> -
    - - comment_approved ) : ?> -

    - - -
    - -
    - -
    - __( 'Reply ', 'twentytwelve' ), 'depth' => $depth, 'max_depth' => $args['max_depth'] ) ) ); ?> -
    -
    - Posted on by ', 'twentytwelve' ), - esc_url( get_permalink() ), - esc_attr( get_the_time() ), - esc_attr( get_the_date( 'c' ) ), - esc_html( get_the_date() ), - esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ), - esc_attr( sprintf( __( 'View all posts by %s', 'twentytwelve' ), get_the_author() ) ), - get_the_author() - ); -} -endif; - -/** - * Extends the default WordPress body class to denote a full-width layout. - * - * Used in two cases: no active widgets in sidebar, and full-width page template. - * - * @since Twenty Twelve 1.0 - */ -function twentytwelve_body_class( $classes ) { - if ( ! is_active_sidebar( 'sidebar-1' ) || is_page_template( 'full-width' ) ) - $classes[] = 'full-width'; - - return $classes; -} -add_filter( 'body_class', 'twentytwelve_body_class' ); \ No newline at end of file diff --git a/wp-content/themes/twentytwelve/header.php b/wp-content/themes/twentytwelve/header.php deleted file mode 100644 index 82479d0a4d..0000000000 --- a/wp-content/themes/twentytwelve/header.php +++ /dev/null @@ -1,54 +0,0 @@ - section and everything up till
    - * - * @package WordPress - * @subpackage Twenty_Twelve - * @since Twenty Twelve 1.0 - */ -?> -> - - - -<?php wp_title( '|', true, 'right' ); ?> <?php bloginfo( 'name' ); ?> - - - - - - - - -> -
    - - -
    \ No newline at end of file diff --git a/wp-content/themes/twentytwelve/image.php b/wp-content/themes/twentytwelve/image.php deleted file mode 100644 index 4392d87b8e..0000000000 --- a/wp-content/themes/twentytwelve/image.php +++ /dev/null @@ -1,102 +0,0 @@ - - -
    -
    - - - -
    > -
    -

    - - - - -
    - -
    - -
    -
    - $post->post_parent, 'post_status' => 'inherit', 'post_type' => 'attachment', 'post_mime_type' => 'image', 'order' => 'ASC', 'orderby' => 'menu_order ID' ) ) ); -foreach ( $attachments as $k => $attachment ) { - if ( $attachment->ID == $post->ID ) - break; -} -$k++; -// If there is more than 1 attachment in a gallery -if ( count( $attachments ) > 1 ) { - if ( isset( $attachments[ $k ] ) ) - // get the URL of the next image attachment - $next_attachment_url = get_attachment_link( $attachments[ $k ]->ID ); - else - // or get the URL of the first image attachment - $next_attachment_url = get_attachment_link( $attachments[ 0 ]->ID ); -} else { - // or, if there's only 1 image, get the URL of the image - $next_attachment_url = wp_get_attachment_url(); -} -?> - ID, array( $attachment_size, $attachment_size ) ); - ?> - - post_excerpt ) ) : ?> -
    - -
    - -
    - -
    - -
    - - '' ) ); ?> -
    - -
    - -
    - - - - - -
    -
    - - \ No newline at end of file diff --git a/wp-content/themes/twentytwelve/index.php b/wp-content/themes/twentytwelve/index.php deleted file mode 100644 index 2307c951ea..0000000000 --- a/wp-content/themes/twentytwelve/index.php +++ /dev/null @@ -1,64 +0,0 @@ - - -
    -
    - - - - - - - - - - - -
    - - -
    -

    -
    - -
    -

    Get started here.', 'twentytwelve' ), admin_url( 'post-new.php' ) ); ?>

    -
    - - -
    -

    -
    - -
    -

    - -
    - - -
    - - - -
    -
    - - - \ No newline at end of file diff --git a/wp-content/themes/twentytwelve/js/html5.js b/wp-content/themes/twentytwelve/js/html5.js deleted file mode 100644 index 6dd03a4ce4..0000000000 --- a/wp-content/themes/twentytwelve/js/html5.js +++ /dev/null @@ -1,3 +0,0 @@ -// html5shiv MIT @rem remysharp.com/html5-enabling-script -// iepp v1.6.2 MIT @jon_neal iecss.com/print-protector -/*@cc_on(function(a,b){function r(a){var b=-1;while(++b";return a.childNodes.length!==1}())){a.iepp=a.iepp||{};var c=a.iepp,d=c.html5elements||"abbr|article|aside|audio|canvas|datalist|details|figcaption|figure|footer|header|hgroup|mark|meter|nav|output|progress|section|summary|time|video",e=d.split("|"),f=e.length,g=new RegExp("(^|\\s)("+d+")","gi"),h=new RegExp("<(/*)("+d+")","gi"),i=/^\s*[\{\}]\s*$/,j=new RegExp("(^|[^\\n]*?\\s)("+d+")([^\\n]*)({[\\n\\w\\W]*?})","gi"),k=b.createDocumentFragment(),l=b.documentElement,m=l.firstChild,n=b.createElement("body"),o=b.createElement("style"),p=/print|all/,q;c.getCSS=function(a,b){if(a+""===undefined)return"";var d=-1,e=a.length,f,g=[];while(++d\n" -"Language-Team: LANGUAGE \n" - -#: 404.php:17 -msgid "This is somewhat embarrassing, isn’t it?" -msgstr "" - -#: 404.php:21 -msgid "" -"It seems we can’t find what you’re looking for. Perhaps " -"searching, or one of the links below, can help." -msgstr "" - -#: archive.php:23 -msgid "Daily Archives: %s" -msgstr "" - -#: archive.php:25 -msgid "Monthly Archives: %s" -msgstr "" - -#: archive.php:25 -msgctxt "monthly archives date format" -msgid "F Y" -msgstr "" - -#: archive.php:27 -msgid "Yearly Archives: %s" -msgstr "" - -#: archive.php:27 -msgctxt "yearly archives date format" -msgid "Y" -msgstr "" - -#: archive.php:29 -msgid "Tag Archives: %s" -msgstr "" - -#: archive.php:35 -msgid "Category Archives: %s" -msgstr "" - -#: archive.php:41 -msgid "Blog Archives" -msgstr "" - -#: archive.php:64 author.php:50 search.php:34 -msgid "Nothing Found" -msgstr "" - -#: archive.php:68 author.php:54 index.php:51 -msgid "" -"Apologies, but no results were found for the requested archive. Perhaps " -"searching will help find a related post." -msgstr "" - -#: author.php:18 -msgid "Author Archives: %s" -msgstr "" - -#: author.php:33 content-single.php:60 -msgid "About %s" -msgstr "" - -#: comments.php:17 -msgid "" -"This post is password protected. Enter the password to view any comments." -msgstr "" - -#: comments.php:33 -msgid "One thought on “%2$s”" -msgid_plural "%1$s thoughts on “%2$s”" -msgstr[0] "" -msgstr[1] "" - -#: comments.php:40 comments.php:52 -msgid "Comment navigation" -msgstr "" - -#: comments.php:41 comments.php:53 -msgid "← Older Comments" -msgstr "" - -#: comments.php:42 comments.php:54 -msgid "Newer Comments →" -msgstr "" - -#: comments.php:61 -msgid "Comments are closed." -msgstr "" - -#: content-aside.php:13 content-image.php:13 content-link.php:13 -#: content-quote.php:13 content.php:13 -msgid "Permalink to %s" -msgstr "" - -#: content-aside.php:17 content-image.php:21 content-link.php:17 -#: content-quote.php:21 content.php:28 -msgid "Continue reading " -msgstr "" - -#: content-aside.php:18 content-image.php:22 content-link.php:18 -#: content-page.php:18 content-quote.php:22 content-single.php:24 -#: content.php:29 image.php:88 -msgid "Pages:" -msgstr "" - -#: content-aside.php:25 content-image.php:45 content-link.php:25 -#: content-quote.php:45 content.php:55 -msgid "Leave a reply" -msgstr "" - -#: content-aside.php:25 content-image.php:45 content-link.php:25 -#: content-quote.php:45 content.php:55 -msgid "1 Reply" -msgstr "" - -#: content-aside.php:25 content-image.php:45 content-link.php:25 -#: content-quote.php:45 content.php:55 -msgid "% Replies" -msgstr "" - -#: content-aside.php:27 content-image.php:48 content-link.php:27 -#: content-page.php:21 content-quote.php:48 content-single.php:52 -#: content.php:58 functions.php:287 image.php:35 -msgid "Edit" -msgstr "" - -#. translators: used between list items, there is a space after the comma -#: content-image.php:28 content-image.php:37 content-quote.php:28 -#: content-quote.php:37 content-single.php:30 content-single.php:33 -#: content.php:37 content.php:46 -msgid ", " -msgstr "" - -#: content-image.php:32 content-quote.php:32 content.php:41 -msgid "Posted in %2$s" -msgstr "" - -#: content-image.php:40 content-quote.php:40 content.php:49 -msgid "Tagged %2$s" -msgstr "" - -#: content-single.php:35 -msgid "" -"This entry was posted in %1$s and tagged %2$s by %5$s. " -"Bookmark the permalink." -msgstr "" - -#: content-single.php:37 -msgid "" -"This entry was posted in %1$s by %5$s. Bookmark the permalink." -msgstr "" - -#: content-single.php:39 -msgid "" -"This entry was posted by %5$s. Bookmark the permalink." -msgstr "" - -#: content-single.php:64 -msgid "View all posts by %s " -msgstr "" - -#. #-#-#-#-# twentytwelve.pot (Twenty Twelve .5) #-#-#-#-# -#. Author URI of the plugin/theme -#: footer.php:18 -msgid "http://wordpress.org/" -msgstr "" - -#: footer.php:18 -msgid "Semantic Personal Publishing Platform" -msgstr "" - -#: footer.php:18 -msgid "Proudly powered by %s" -msgstr "" - -#: functions.php:66 -msgid "Primary Menu" -msgstr "" - -#: functions.php:219 -msgid "Main Sidebar" -msgstr "" - -#: functions.php:240 -msgid "Post navigation" -msgstr "" - -#: functions.php:241 -msgid " Older posts" -msgstr "" - -#: functions.php:242 -msgid "Newer posts " -msgstr "" - -#: functions.php:267 -msgid "Pingback:" -msgstr "" - -#: functions.php:267 -msgid "(Edit)" -msgstr "" - -#. translators: 1: date, 2: time -#: functions.php:284 -msgid "%1$s at %2$s" -msgstr "" - -#: functions.php:291 -msgid "Your comment is awaiting moderation." -msgstr "" - -#: functions.php:299 -msgid "Reply " -msgstr "" - -#: functions.php:317 -msgid "" -"Posted on by %7$s" -msgstr "" - -#: functions.php:323 -msgid "View all posts by %s" -msgstr "" - -#: header.php:43 -msgid "Menu" -msgstr "" - -#: header.php:44 -msgid "Skip to content" -msgstr "" - -#: image.php:24 -msgid "" -"Published at %4$s " -"× %5$s in %8$s" -msgstr "" - -#: image.php:39 -msgid "← Previous" -msgstr "" - -#: image.php:40 -msgid "Next →" -msgstr "" - -#: index.php:36 -msgid "No posts to display" -msgstr "" - -#: index.php:40 -msgid "Ready to publish your first post? Get started here." -msgstr "" - -#: index.php:47 -msgid "Nothing found" -msgstr "" - -#: search.php:18 -msgid "Search Results for: %s" -msgstr "" - -#: search.php:38 -msgid "" -"Sorry, but nothing matched your search criteria. Please try again with some " -"different keywords." -msgstr "" - -#. Theme Name of the plugin/theme -msgid "Twenty Twelve" -msgstr "" - -#. Theme URI of the plugin/theme -msgid "http://wordpress.org/extend/themes/twentytwelve" -msgstr "" - -#. Description of the plugin/theme -msgid "The 2012 theme for WordPress." -msgstr "" - -#. Author of the plugin/theme -msgid "the WordPress team" -msgstr "" - -#. Tags of the plugin/theme -msgid "" -"white, light, two-columns, right-sidebar, responsive-width, custom-" -"background, custom-menu, microformats, post-formats, rtl-language-support, " -"translation-ready" -msgstr "" - -#. Template Name of the plugin/theme -msgid "Full-width page, no sidebar" -msgstr "" diff --git a/wp-content/themes/twentytwelve/license.txt b/wp-content/themes/twentytwelve/license.txt deleted file mode 100644 index d31195ab0e..0000000000 --- a/wp-content/themes/twentytwelve/license.txt +++ /dev/null @@ -1,281 +0,0 @@ - GNU GENERAL PUBLIC LICENSE - Version 2, June 1991 - - Copyright (C) 1989, 1991 Free Software Foundation, Inc. - 51 Franklin St, Fifth Floor, Boston, MA 02110, 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 Library 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 - diff --git a/wp-content/themes/twentytwelve/page.php b/wp-content/themes/twentytwelve/page.php deleted file mode 100644 index d2d1e6938d..0000000000 --- a/wp-content/themes/twentytwelve/page.php +++ /dev/null @@ -1,29 +0,0 @@ - - -
    -
    - - - - - - -
    -
    - - - \ No newline at end of file diff --git a/wp-content/themes/twentytwelve/readme.txt b/wp-content/themes/twentytwelve/readme.txt deleted file mode 100644 index 57a9aea3a8..0000000000 --- a/wp-content/themes/twentytwelve/readme.txt +++ /dev/null @@ -1,3 +0,0 @@ -== Twenty Twelve == - -= Changelog = \ No newline at end of file diff --git a/wp-content/themes/twentytwelve/rtl.css b/wp-content/themes/twentytwelve/rtl.css deleted file mode 100644 index 8600c60112..0000000000 --- a/wp-content/themes/twentytwelve/rtl.css +++ /dev/null @@ -1,9 +0,0 @@ -/* -Theme Name: Twenty Twelve - -Adding support for language written in a Right To Left (RTL) direction is easy - -it's just a matter of overwriting all the horizontal positioning attributes -of your CSS stylesheet in a separate stylesheet file named rtl.css. - -http://codex.wordpress.org/Right_to_Left_Language_Support -*/ \ No newline at end of file diff --git a/wp-content/themes/twentytwelve/screenshot.png b/wp-content/themes/twentytwelve/screenshot.png deleted file mode 100644 index c6d14c88cee8dbbae17898c8811e39b718f9ebc5..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 38486 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 - -
    -
    - - - - - - - - - - - - - - - - -
    -
    -

    -
    - -
    -

    - -
    -
    - - - -
    -
    - - - \ No newline at end of file diff --git a/wp-content/themes/twentytwelve/sidebar.php b/wp-content/themes/twentytwelve/sidebar.php deleted file mode 100644 index f3808016e3..0000000000 --- a/wp-content/themes/twentytwelve/sidebar.php +++ /dev/null @@ -1,17 +0,0 @@ - - - - - \ No newline at end of file diff --git a/wp-content/themes/twentytwelve/single.php b/wp-content/themes/twentytwelve/single.php deleted file mode 100644 index 0aabe1c209..0000000000 --- a/wp-content/themes/twentytwelve/single.php +++ /dev/null @@ -1,30 +0,0 @@ - - -
    -
    - - - - - - - - -
    -
    - - - \ No newline at end of file diff --git a/wp-content/themes/twentytwelve/style.css b/wp-content/themes/twentytwelve/style.css deleted file mode 100644 index 3791bc92be..0000000000 --- a/wp-content/themes/twentytwelve/style.css +++ /dev/null @@ -1,789 +0,0 @@ -/* -Theme Name: Twenty Twelve -Theme URI: http://wordpress.org/extend/themes/twentytwelve -Author: the WordPress team -Author URI: http://wordpress.org/ -Description: The 2012 theme for WordPress. -Version: .5 -License: GNU General Public License -License URI: license.txt -Tags: white, light, two-columns, right-sidebar, responsive-width, custom-background, custom-menu, microformats, post-formats, rtl-language-support, translation-ready - -This theme, like WordPress, is licensed under the GPL. -Use it to make something cool, have fun, and share what you've learned with others. -*/ - -/* _reset.scss - * Zero it out ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */ -html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video { - margin: 0; - padding: 0; - border: 0; - font-size: 100%; - vertical-align: baseline; -} - -body { - line-height: 1; -} - -ol, ul { - list-style: none; -} - -blockquote, q { - quotes: none; -} - -blockquote:before, blockquote:after, -q:before, q:after { - content: ''; - content: none; -} - -table { - border-collapse: collapse; - border-spacing: 0; -} - -html { - overflow-y: scroll; - font-size: 100%; - -webkit-text-size-adjust: 100%; - -ms-text-size-adjust: 100%; -} - -a:focus { - outline: thin dotted; -} - -article, -aside, -details, -figcaption, -figure, -footer, -header, -hgroup, -nav, -section { - display: block; -} - -audio, -canvas, -video { - display: inline-block; - *display: inline; - *zoom: 1; -} - -audio:not([controls]) { - display: none; -} - -sub, -sup { - font-size: 75%; - line-height: 0; - position: relative; - vertical-align: baseline; -} - -sup { - top: -0.5em; -} - -sub { - bottom: -0.25em; -} - -img { - border: 0; - -ms-interpolation-mode: bicubic; -} - -.clear { - zoom: 1; -} -.clear:before, .clear:after { - display: table; - content: ""; -} -.clear:after { - clear: both; -} - -/* patterns.scss - * Repeatable patterns - * ------------------------------------------------------------------ */ -.archive-title, -.widget-title { - text-transform: uppercase; - font-weight: 400; - font-size: 12px; - font-size: 0.857142857rem; - line-height: 2; -} - -/* scaffolding.css.scss -* Basic structure -* ------------------------------------------------------------------ */ -/*--------------------------------------------------------- -Body, links, basics ------------------------------------------------------------- */ -html { - font-size: 87.5%; -} - -body { - font-size: 14px; - font-size: 1rem; - font-family: "Open Sans", Helvetica, Arial, sans-serif; - text-rendering: optimizeLegibility; - color: #444444; -} - -a { - outline: none; - color: #13609e; -} -a:hover { - color: #082943; -} - -.skip-link, -.assistive-text { - display: none; -} - -/*--------------------------------------------------------- -Page structure ------------------------------------------------------------- */ -#page { - padding: 0 24px; - padding: 0 1.714285714rem; - background-color: #fff; -} -@media screen and (min-width: 600px) { - #page { - zoom: 1; - margin: 0 auto; - max-width: 960px; - max-width: 68.571428571rem; - } - #page:before, #page:after { - display: table; - content: ""; - } - #page:after { - clear: both; - } -} - -#primary { - margin: 24px 0; - margin: 1.714285714rem 0; -} -@media screen and (min-width: 600px) { - #primary { - float: left; - width: 65.104166667%; - } -} - -@media screen and (min-width: 600px) { - body.full-width #primary { - width: 100%; - } -} - -#secondary { - margin: 24px 0; - margin: 1.714285714rem 0; -} -@media screen and (min-width: 600px) { - #secondary { - float: right; - width: 26.041666667%; - } -} - -/*--------------------------------------------------------- -Header ------------------------------------------------------------- */ -.site-header { - padding: 24px 0; - padding: 1.714285714rem 0; -} -.site-header hgroup h1, -.site-header hgroup h2 { - text-align: center; -} -@media screen and (min-width: 600px) { - .site-header hgroup h1, - .site-header hgroup h2 { - text-align: left; - } -} -.site-header hgroup h1 a, -.site-header hgroup h2 a { - color: #444444; - text-decoration: none; -} -.site-header hgroup h1 a:hover, -.site-header hgroup h2 a:hover { - color: #13609e; - text-decoration: underline; -} -.site-header hgroup h1 { - font-size: 24px; - font-size: 1.714285714rem; - line-height: 2; -} -@media screen and (min-width: 600px) { - .site-header hgroup h1 { - font-size: 26px; - font-size: 1.857142857rem; - line-height: 1.846153846; - } -} -.site-header hgroup h2 { - font-weight: normal; - font-size: 13px; - font-size: 0.928571429rem; - line-height: 1.846153846; - color: #777777; -} - -/*--------------------------------------------------------- -Navigation ------------------------------------------------------------- */ -nav[role="navigation"] { - display: inline-block; - margin-top: 24px; - margin-top: 1.714285714rem; - width: 100%; - font-size: 13px; - font-size: 0.928571429rem; - border-bottom: 1px solid #ededed; - border-top: 1px solid #ededed; -} -@media screen and (max-width: 600px) { - nav[role="navigation"] { - -webkit-column-count: 2; - -webkit-column-gap: 0.714285714rem; - -moz-column-count: 2; - -moz-column-gap: 0.714285714rem; - column-count: 2; - column-gap: 0.714285714rem; - text-align: center; - } -} -nav[role="navigation"] ul { - margin: 0; - text-indent: 0; -} -nav[role="navigation"] li ul li { - padding-left: 0; -} -nav[role="navigation"] li a, -nav[role="navigation"] li { - display: inline-block; - text-decoration: none; -} -@media screen and (max-width: 600px) { - nav[role="navigation"] li a, - nav[role="navigation"] li { - display: list-item; - } -} -nav[role="navigation"] li a { - color: #444444; -} -nav[role="navigation"] li a:hover { - color: #1e1e1e; -} -nav[role="navigation"] li { - margin-right: 40px; - margin-right: 2.857142857rem; - position: relative; -} -nav[role="navigation"] li a { - border-bottom: 0; - line-height: 3.692307692; -} -nav[role="navigation"] li ul { - display: none; - position: absolute; - top: 100%; - padding: 0; - margin: 0; - z-index: 1; -} -nav[role="navigation"] li:hover ul { - display: block; - border-left: 0; -} -nav[role="navigation"] li ul li, -nav[role="navigation"] li ul li a { - text-align: center; -} -nav[role="navigation"] li ul li a { - background: #efefef; - border-bottom: 1px solid #ededed; - display: block; - font-size: 12px; - font-size: 0.857142857rem; - line-height: 1.846153846; - padding: 8px 12px; - padding: 0.571428571rem 0.857142857rem; - width: 90px; -} - -/* Small menu */ -nav[role="navigation"].main-small-navigation { - text-align: left; -} -.menu-toggle { - cursor: pointer; - font-size: 12px; - font-size: 0.857142857rem; - line-height: 1.846153846; -} -.main-small-navigation .menu { - display: none; -} -@media screen and (max-width: 600px) { - nav[role="navigation"] li a { - padding: 8px 0; - line-height: 1.090909091; - } -} - -/*--------------------------------------------------------- -Banner ------------------------------------------------------------- */ -section[role="banner"] { - margin-bottom: 48px; - margin-bottom: 3.428571429rem; -} - -/*--------------------------------------------------------- -Sidebar ------------------------------------------------------------- */ -div#secondary aside { - margin-bottom: 48px; - margin-bottom: 3.428571429rem; -} -div#secondary aside h3 { - margin-bottom: 24px; - margin-bottom: 1.714285714rem; -} -div#secondary aside p, -div#secondary aside li { - font-size: 13px; - font-size: 0.928571429rem; - line-height: 1.846153846; -} -div#secondary aside a { - color: #777777; -} -div#secondary aside a:hover { - color: #13609e; -} - -/*--------------------------------------------------------- -Footer ------------------------------------------------------------- */ -footer[role="contentinfo"] { - clear: both; - zoom: 1; - max-width: 960px; - max-width: 68.571428571rem; - margin-top: 48px; - margin-top: 3.428571429rem; - margin-bottom: 48px; - margin-bottom: 3.428571429rem; - margin-left: auto; - margin-right: auto; - padding: 24px 0; - padding: 1.714285714rem 0; - border-top: 1px solid #ededed; -} -footer[role="contentinfo"]:before, footer[role="contentinfo"]:after { - display: table; - content: ""; -} -footer[role="contentinfo"]:after { - clear: both; -} -footer[role="contentinfo"] a { - font-size: 12px; - font-size: 0.857142857rem; - line-height: 2; - color: #686868; -} -footer[role="contentinfo"] a:hover { - color: #13609e; -} - -/* index.css.scss -* Basic post styling -* ------------------------------------------------------------------ */ -/*--------------------------------------------------------- -Basic post styling ------------------------------------------------------------- */ -header.entry-header { - margin-bottom: 24px; - margin-bottom: 1.714285714rem; -} -header.entry-header .entry-title { - font-size: 20px; - font-size: 1.428571429rem; - line-height: 1.2; - font-weight: normal; -} -header.entry-header .entry-title a { - text-decoration: none; -} -@media screen and (min-width: 600px) { - header.entry-header .entry-title { - font-size: 22px; - font-size: 1.571428571rem; - line-height: 1.090909091; - } -} -header.entry-header .entry-format { - margin-top: 24px; - margin-top: 1.714285714rem; - font-weight: normal; -} -header.entry-header .entry-meta { - font-size: 11px; - font-size: 0.785714286rem; - line-height: 2.181818182; - color: #777777; -} - -.entry-meta a { - color: #777777; -} -.entry-meta a:hover { - color: #13609e; -} - -div.entry-content p { - margin: 24px 0; - margin: 1.714285714rem 0; - line-height: 1.714285714; -} - -div#content article { - padding-bottom: 24px; - padding-bottom: 1.714285714rem; - margin-bottom: 48px; - margin-bottom: 3.428571429rem; - border-bottom: 1px solid #ededed; -} - -div.page-links { - line-height: 1.714285714; -} - -footer.entry-meta { - margin-top: 24px; - margin-top: 1.714285714rem; - font-size: 13px; - font-size: 0.928571429rem; - line-height: 1.846153846; - font-style: italic; - color: #777777; -} - -/*--------------------------------------------------------- -Elements ------------------------------------------------------------- */ -abbr, -acronym, -dfn { - border-bottom: 1px solid #ededed; - cursor: help; -} - -code, -kbd { - font-family: Consolas, Monaco, Lucida Console, monospace; - padding: 0 4px; - padding: 0 0.285714286rem; -} - -mark { - color: #fff; - padding: 0 4px; - padding: 0 0.285714286rem; - font-style: italic; -} - -pre, -tt, -var { - font-family: Consolas, Monaco, Lucida Console, monospace; - margin: 24px 0; - margin: 1.714285714rem 0; - overflow: auto; -} -pre code, -tt code, -var code { - display: block; - padding: 14px; - padding: 1rem; -} - -.alignleft { - float: left; -} - -.alignright { - float: right; -} - -/*--------------------------------------------------------- -Media ------------------------------------------------------------- */ -img, -embed, -object, -video { - max-width: 100%; -} - -/* comments.css.scss - * Comment styling - * ------------------------------------------------------------------ */ -#comments-title { - margin-bottom: 48px; - margin-bottom: 3.428571429rem; - font-size: 16px; - font-size: 1.142857143rem; - line-height: 1.5; - font-weight: normal; -} - -#comments article { - zoom: 1; - margin: 24px 0; - margin: 1.714285714rem 0; -} -#comments article:before, #comments article:after { - display: table; - content: ""; -} -#comments article:after { - clear: both; -} -#comments article header { - position: relative; - zoom: 1; - margin: 0 0 48px 0; - margin: 0 0 3.428571429rem 0; -} -#comments article header:before, #comments article header:after { - display: table; - content: ""; -} -#comments article header:after { - clear: both; -} -#comments article header img { - float: left; - padding: 0; - line-height: 0; -} -#comments article header cite, -#comments article header time { - display: block; - margin-left: 85px; - margin-left: 6.071428571rem; -} -#comments article header cite { - font-style: normal; - font-size: 15px; - font-size: 1.071428571rem; - line-height: 1.6; -} -#comments article header time { - line-height: 1.714285714; - text-decoration: none; - font-size: 12px; - font-size: 0.857142857rem; - color: #5e5e5e; -} -#comments article header a { - text-decoration: none; - color: #5e5e5e; -} -#comments article header a:hover { - color: #13609e; -} -#comments article header cite a { - color: #444444; -} -#comments article header cite a:hover { - text-decoration: underline; -} -#comments article header h4 { - position: absolute; - top: 0; - right: 0; - padding: 6px 12px; - padding: 0.428571429rem 0.857142857rem; - font-size: 12px; - font-size: 0.857142857rem; - font-weight: normal; - color: #fff; - background-color: #0088d0; - background-repeat: repeat-x; - background-image: -khtml-gradient(linear, left top, left bottom, from(#009cee), to(#0088d0)); - background-image: -moz-linear-gradient(top, #009cee, #0088d0); - background-image: -ms-linear-gradient(top, #009cee, #0088d0); - background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #009cee), color-stop(100%, #0088d0)); - background-image: -webkit-linear-gradient(top, #009cee, #0088d0); - background-image: -o-linear-gradient(top, #009cee, #0088d0); - background-image: linear-gradient(top, #009cee, #0088d0); - -webkit-border-radius: 3px; - -moz-border-radius: 3px; - border-radius: 3px; - border: 1px solid #007cbd; -} -#comments article p { - margin: 24px 0; - margin: 1.714285714rem 0; - line-height: 1.714285714; -} - -a.comment-reply-link { - font-size: 13px; - font-size: 0.928571429rem; - line-height: 1.846153846; - color: #686868; -} -a.comment-reply-link:hover { - color: #13609e; -} - -/*--------------------------------------------------------- -Form ------------------------------------------------------------- */ -#respond { - margin-top: 48px; - margin-top: 3.428571429rem; -} -#respond h3#reply-title { - font-size: 16px; - font-size: 1.142857143rem; - line-height: 1.5; -} -#respond h3#reply-title #cancel-comment-reply-link { - margin-left: 10px; - margin-left: 0.714285714rem; - font-weight: normal; - font-size: 12px; - font-size: 0.857142857rem; -} -#respond form { - margin: 24px 0; - margin: 1.714285714rem 0; -} -#respond form p { - zoom: 1; - margin: 11px 0; - margin: 0.785714286rem 0; -} -#respond form p:before, #respond form p:after { - display: table; - content: ""; -} -#respond form p:after { - clear: both; -} -#respond form p.logged-in-as { - margin-bottom: 24px; - margin-bottom: 1.714285714rem; -} -#respond form label { - display: block; - line-height: 1.714285714; -} -#respond form input[type="text"], -#respond form textarea { - font-family: inherit; - line-height: 1.714285714; - padding: 10px; - padding: 0.714285714rem; - border: 1px solid #d5d2ca; - -webkit-border-radius: 3px; - -moz-border-radius: 3px; - border-radius: 3px; - width: 96%; -} -@media screen and (min-width: 600px) { - #respond form input[type="text"] { - width: 46.333333333%; - } - #respond form textarea.blog-textarea { - width: 79.666666667%; - } -} -#respond form p.form-allowed-tags { - margin: 0; - font-size: 12px; - font-size: 0.857142857rem; - line-height: 2; - color: #5e5e5e; -} - -/* widgets.css.scss - * All widget styling - * ------------------------------------------------------------------ */ -#wp-calendar { - margin: 0; - width: 100%; - font-size: 13px; - font-size: 0.928571429rem; - line-height: 1.846153846; - color: #686868; -} -#wp-calendar th, -#wp-calendar td, -#wp-calendar caption { - text-align: left; -} - -.widget_search label { - display: block; - font-size: 13px; - font-size: 0.928571429rem; - line-height: 1.846153846; -} -.widget_search input[type="text"] { - padding: 6px; - padding: 0.428571429rem; - border: 1px solid #ccc; - -webkit-border-radius: 3px; - -moz-border-radius: 3px; - border-radius: 3px; -} - -/* archive.css.scss - * Styling for the archive view - * ------------------------------------------------------------------ */ -.archive #content h1.archive-title { - margin-bottom: 48px; - margin-bottom: 3.428571429rem; - padding-bottom: 22px; - padding-bottom: 1.571428571rem; - border-bottom: 1px solid #ededed; - color: #777777; -}