Changeset 9933
- Timestamp:
- 05/27/2020 01:44:38 AM (4 years ago)
- Location:
- sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-showcase
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-showcase/404.php
r9570 r9933 14 14 <div class="col-5"> 15 15 <div class="storycontent"> 16 <h 3><?php _e( 'Page Not Found', 'wporg-showcase' ); ?></h3>16 <h2><?php _e( 'Page Not Found', 'wporg-showcase' ); ?></h2> 17 17 <p><?php _e( 'Sorry, we could not not find that site in the Showcase. We do have many others available though. Here’s one chosen at random!', 'wporg-showcase' ); ?></p> 18 18 <?php //breadcrumb(); ?> 19 <h 3><?php the_title(); ?></h3>19 <h2><?php the_title(); ?></h2> 20 20 <a href=' http://<?php get_site_domain( false ); ?>'> 21 21 <?php site_screenshot_tag( 518, 'screenshot site-screenshot'); ?> -
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-showcase/archive.php
r7416 r9933 18 18 <?php site_screenshot_tag( 145, 'screenshot alignleft' ); ?> 19 19 </a> 20 <h 5><a href="<?php the_permalink() ?>" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a></h5>20 <h3 class="heading"><a href="<?php the_permalink() ?>" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a></h3> 21 21 <div class="excerpt"><?php the_content_limit(200); ?></div> 22 22 <div class="meta"><?php tags_with_count( 'flat', '<strong>' . __( 'Tags:', 'wporg-showcase' ) . '</strong> ', ', ', '<br />'); ?><?php edit_post_link( __( 'Edit this entry', 'wporg-showcase' ) ); ?></div> -
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-showcase/functions.php
r9573 r9933 82 82 global $post; 83 83 84 echo '<h 4>' . __( 'Flavor', 'wporg-showcase' ). '</h4>';84 echo '<h2 class="heading">' . __( 'Flavor', 'wporg-showcase' ). '</h2>'; 85 85 echo '<ul id="flavors">'; 86 86 … … 132 132 $tags = get_terms( 'post_tag', $args ); 133 133 134 $out = '<h 4>' . __( 'Browse Popular Tags', 'wporg-showcase' ). '</h4>';134 $out = '<h2 class="heading">' . __( 'Browse Popular Tags', 'wporg-showcase' ). '</h2>'; 135 135 $out .= '<ul class="submenu wpsc-popular-tags">'; 136 136 … … 151 151 function breadcrumb() { ?> 152 152 153 <h 3><a href="<?php echo home_url( '/' ); ?>" title="<?php esc_attr_e( 'Showcase', 'wporg-showcase' ); ?>"><?php _e( 'Showcase', 'wporg-showcase' ); ?></a>153 <h2><a href="<?php echo home_url( '/' ); ?>" title="<?php esc_attr_e( 'Showcase', 'wporg-showcase' ); ?>"><?php _e( 'Showcase', 'wporg-showcase' ); ?></a> 154 154 155 155 <?php if ( is_search() ) : ?> … … 173 173 <?php endif; // is_search ?> 174 174 175 </h 3>175 </h2> 176 176 <?php 177 177 } -
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-showcase/header.php
r9574 r9933 8 8 $prefix = is_ssl() ? 'https://' : 'http://s.'; 9 9 wp_enqueue_style( 'blog-wp4', $prefix.'wordpress.org/style/blog-wp4.css', array(), 4 ); 10 wp_enqueue_style( 'showcase', $prefix.'wordpress.org/wp-content/themes/pub/wporg-showcase/style.css', array(), 19 );10 wp_enqueue_style( 'showcase', get_stylesheet_uri(), array(), 19 ); 11 11 require WPORGPATH . 'header.php'; 12 12 ?> … … 14 14 <div class="wrapper"> 15 15 <a id="wpsc-mobile-menu-button" class="" href="#" onclick="toggle_wpsc_mobile_menu();"></a> 16 <h 2><?php _e( 'WordPress Website Showcase', 'wporg-showcase' ); ?></h2>16 <h1><?php _e( 'WordPress Website Showcase', 'wporg-showcase' ); ?></h1> 17 17 </div> 18 18 </div> -
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-showcase/index.php
r6456 r9933 3 3 <div class="wrapper archives"> 4 4 <?php get_sidebar( 'left' ); ?> 5 <div class="col-5 ">5 <div class="col-5 archives-content"> 6 6 <?php 7 7 breadcrumb(); … … 14 14 <?php while ( have_posts() ) : the_post(); ?> 15 15 16 <?php the_date('', '<h 4>', '</h4>'); ?>16 <?php the_date('', '<h3 class="heading">', '</h3>'); ?> 17 17 <div class="storycontent"><a href='<?php the_permalink(); ?>' title='<?php the_title_attribute(); ?>'><?php the_title(); ?></a></div> 18 18 -
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-showcase/page-home.php
r7416 r9933 14 14 ?> 15 15 <div id="pagebody" class="home"> 16 <h2 class="screen-reader-text"><?php _e( 'Featured Sites', 'wporg-showcase' ); ?></h2> 16 17 <?php query_posts( array( 'cat' => 4, 'posts_per_page' => 9, 'post_status' => 'publish' ) ); ?> 17 18 <?php if ( have_posts() ) : ?> … … 69 70 <?php query_posts( array( 'cat' => 4, 'posts_per_page' => 3, 'tag' => 'business', 'orderby' => 'rand' ) ); ?> 70 71 <?php if ( have_posts() ) : ?> 71 <h 3><?php _e( 'Featured Business Sites', 'wporg-showcase' ); ?></h3>72 <h2><?php _e( 'Featured Business Sites', 'wporg-showcase' ); ?></h2> 72 73 <ul class="wpsc-recent"> 73 74 … … 78 79 <?php site_screenshot_tag( 215 ); ?> 79 80 </a> 80 <h 5><a href="<?php the_permalink() ?>" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a></h5>81 <h3><a href="<?php the_permalink() ?>" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a></h3> 81 82 <?php 82 83 the_content_limit( 90 ); … … 92 93 <?php if ( have_posts() ) : ?> 93 94 94 <h 3><?php _e( 'Recently Added Sites', 'wporg-showcase' ); ?></h3>95 <h2><?php _e( 'Recently Added Sites', 'wporg-showcase' ); ?></h2> 95 96 <ul class="wpsc-recent"> 96 97 … … 101 102 <?php site_screenshot_tag( 215 ); ?> 102 103 </a> 103 <h 5><a href="<?php the_permalink() ?>" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a></h5>104 <h3><a href="<?php the_permalink() ?>" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a></h3> 104 105 <?php 105 106 the_tags( '<ul class="wpsc-tags"><li>', '</li><li>', '</li></ul>' ); -
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-showcase/sidebar-left.php
r6273 r9933 2 2 <a href="<?php echo home_url( '/submit-a-wordpress-site/' ); ?>" class="wpsc-submit-site"><?php _e( 'Submit a Site →', 'wporg-showcase' ); ?></a> 3 3 4 <h 4 class="search"><?php _e( 'Search', 'wporg-showcase' ); ?></h4>4 <h2 class="heading search"><?php _e( 'Search', 'wporg-showcase' ); ?></h2> 5 5 <?php // @todo: use get_search_form(); ?> 6 6 <form method="get" id="searchform" action="<?php echo home_url( '/' ); ?>"> … … 12 12 <a href='<?php echo home_url( '/tag-cloud/' ); ?>' class="wpsc-all-tags"><?php _e( 'View All Tags →', 'wporg-showcase' ); ?></a> 13 13 14 <h 4><?php _e( 'Browse by Flavor', 'wporg-showcase' ); ?></h4>14 <h2 class="heading"><?php _e( 'Browse by Flavor', 'wporg-showcase' ); ?></h2> 15 15 <ul class="submenu"> 16 16 <?php wp_list_categories( 'exclude=4&title_li=' ); ?> -
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-showcase/sidebar-right.php
r7416 r9933 6 6 <?php wp_flavors(); ?> 7 7 <br /> 8 <?php tags_with_count( 'list', '<h 4>' . __( 'Tags', 'wporg-showcase' ) . '</h4><ul>', '', '</ul>' ); ?>8 <?php tags_with_count( 'list', '<h2 class="heading">' . __( 'Tags', 'wporg-showcase' ) . '</h2><ul>', '', '</ul>' ); ?> 9 9 </div> 10 10 </div> -
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-showcase/style.css
r9571 r9933 91 91 } 92 92 93 h4 { 94 border-bottom:1px solid #DEDEDE; 95 color:#333333; 96 font-size:12px; 97 font-weight:bold; 98 margin-bottom:10px; 99 padding-bottom:4px; 100 padding-top:1px; 101 } 102 103 h4.search { 93 .heading.search { 104 94 padding-top: 0; 105 95 } 106 96 107 .archives h4{97 .archives-content .heading { 108 98 margin-top: 10px; 109 99 } … … 140 130 } 141 131 142 .gallery-caption h 5{132 .gallery-caption h4 { 143 133 margin-top: 10px; 144 134 } 145 135 146 h5 { 136 h4, 137 .archives-content .heading { 147 138 font-size: 16px; 148 139 margin-bottom: 5px; 149 140 } 150 141 151 h 5a {142 h4 a { 152 143 font-weight: normal; 153 144 } … … 208 199 } 209 200 210 h3 { 201 .story-excerpt .heading { 202 font-size: 16px; 203 margin-bottom: 5px; 204 } 205 206 .story-excerpt .heading a { 207 font-weight: normal; 208 } 209 210 h2 { 211 211 font-weight: normal; 212 212 font-size: 20px; … … 214 214 } 215 215 216 h 3a {216 h2 a { 217 217 font-weight: normal; 218 218 } … … 593 593 } 594 594 595 .secondary h4 { 595 .secondary .heading, 596 .archives-content .heading, 597 .rightsidebarwrapper .heading { 596 598 color: #444; 597 599 font-size: 13px; … … 600 602 padding: 0 0 10px 0; 601 603 602 margin: 47px 0 11px 0; 604 margin: 48px 0 12px 0; 605 border-bottom: 1px solid #DEDEDE; 606 font-weight: bold; 607 } 608 609 .rightsidebarwrapper .heading { 610 margin-top: 30px; 611 } 612 613 .archives-content .heading { 614 margin-top: 16px; 603 615 } 604 616 … … 715 727 } 716 728 717 .home .main-content h 3{729 .home .main-content h2 { 718 730 font-weight: bold; 719 731 margin: 0 0 29px 14px; … … 761 773 } 762 774 763 .wpsc-recent h 5{775 .wpsc-recent h3 { 764 776 font-size: 14px; 765 777 line-height: 1.2; … … 767 779 } 768 780 769 .wpsc-recent h 5a {781 .wpsc-recent h3 a { 770 782 font-style: normal; 771 783 font-weight: bold; … … 813 825 } 814 826 827 #headline h1 { 828 color: #555; 829 font-size: 28px; 830 line-height: 1em; 831 text-shadow: #fff 0px 1px 0px; 832 padding-top: 18px; 833 padding-left: 9px; 834 padding-bottom: 18px; 835 display: -webkit-box; 836 display: -webkit-flex; 837 display: -moz-box; 838 display: -ms-flexbox; 839 display: flex; 840 font-family: "HelveticaNeue-Light","Helvetica Neue Light","Helvetica Neue",sans-serif; 841 font-weight: 300; 842 } 843 815 844 /* Large devices */ 816 845 @media ( max-width: 992px ) {
Note: See TracChangeset
for help on using the changeset viewer.