Make WordPress Core

Ticket #36497: 36497.diff

File 36497.diff, 361.3 KB (added by obenland, 9 years ago)
  • src/wp-content/themes/twentysixteen/404.php

     
     1<?php
     2/**
     3 * The template for displaying 404 pages (not found)
     4 *
     5 * @package WordPress
     6 * @subpackage Twenty_Sixteen
     7 * @since Twenty Sixteen 1.0
     8 */
     9
     10get_header(); ?>
     11
     12        <div id="primary" class="content-area">
     13                <main id="main" class="site-main" role="main">
     14
     15                        <section class="error-404 not-found">
     16                                <header class="page-header">
     17                                        <h1 class="page-title"><?php _e( 'Oops! That page can&rsquo;t be found.', 'twentysixteen' ); ?></h1>
     18                                </header><!-- .page-header -->
     19
     20                                <div class="page-content">
     21                                        <p><?php _e( 'It looks like nothing was found at this location. Maybe try a search?', 'twentysixteen' ); ?></p>
     22
     23                                        <?php get_search_form(); ?>
     24                                </div><!-- .page-content -->
     25                        </section><!-- .error-404 -->
     26
     27                </main><!-- .site-main -->
     28
     29                <?php get_sidebar( 'content-bottom' ); ?>
     30
     31        </div><!-- .content-area -->
     32
     33<?php get_sidebar(); ?>
     34<?php get_footer(); ?>
  • src/wp-content/themes/twentysixteen/archive.php

     
     1<?php
     2/**
     3 * The template for displaying archive pages
     4 *
     5 * Used to display archive-type pages if nothing more specific matches a query.
     6 * For example, puts together date-based pages if no date.php file exists.
     7 *
     8 * If you'd like to further customize these archive views, you may create a
     9 * new template file for each one. For example, tag.php (Tag archives),
     10 * category.php (Category archives), author.php (Author archives), etc.
     11 *
     12 * @link https://codex.wordpress.org/Template_Hierarchy
     13 *
     14 * @package WordPress
     15 * @subpackage Twenty_Sixteen
     16 * @since Twenty Sixteen 1.0
     17 */
     18
     19get_header(); ?>
     20
     21        <div id="primary" class="content-area">
     22                <main id="main" class="site-main" role="main">
     23
     24                <?php if ( have_posts() ) : ?>
     25
     26                        <header class="page-header">
     27                                <?php
     28                                        the_archive_title( '<h1 class="page-title">', '</h1>' );
     29                                        the_archive_description( '<div class="taxonomy-description">', '</div>' );
     30                                ?>
     31                        </header><!-- .page-header -->
     32
     33                        <?php
     34                        // Start the Loop.
     35                        while ( have_posts() ) : the_post();
     36
     37                                /*
     38                                 * Include the Post-Format-specific template for the content.
     39                                 * If you want to override this in a child theme, then include a file
     40                                 * called content-___.php (where ___ is the Post Format name) and that will be used instead.
     41                                 */
     42                                get_template_part( 'template-parts/content', get_post_format() );
     43
     44                        // End the loop.
     45                        endwhile;
     46
     47                        // Previous/next page navigation.
     48                        the_posts_pagination( array(
     49                                'prev_text'          => __( 'Previous page', 'twentysixteen' ),
     50                                'next_text'          => __( 'Next page', 'twentysixteen' ),
     51                                'before_page_number' => '<span class="meta-nav screen-reader-text">' . __( 'Page', 'twentysixteen' ) . ' </span>',
     52                        ) );
     53
     54                // If no content, include the "No posts found" template.
     55                else :
     56                        get_template_part( 'template-parts/content', 'none' );
     57
     58                endif;
     59                ?>
     60
     61                </main><!-- .site-main -->
     62        </div><!-- .content-area -->
     63
     64<?php get_sidebar(); ?>
     65<?php get_footer(); ?>
  • src/wp-content/themes/twentysixteen/comments.php

     
     1<?php
     2/**
     3 * The template for displaying comments
     4 *
     5 * The area of the page that contains both current comments
     6 * and the comment form.
     7 *
     8 * @package WordPress
     9 * @subpackage Twenty_Sixteen
     10 * @since Twenty Sixteen 1.0
     11 */
     12
     13/*
     14 * If the current post is protected by a password and
     15 * the visitor has not yet entered the password we will
     16 * return early without loading the comments.
     17 */
     18if ( post_password_required() ) {
     19        return;
     20}
     21?>
     22
     23<div id="comments" class="comments-area">
     24
     25        <?php if ( have_comments() ) : ?>
     26                <h2 class="comments-title">
     27                        <?php
     28                                $comments_number = get_comments_number();
     29                                if ( 1 === $comments_number ) {
     30                                        /* translators: %s: post title */
     31                                        printf( _x( 'One thought on &ldquo;%s&rdquo;', 'comments title', 'twentysixteen' ), get_the_title() );
     32                                } else {
     33                                        printf(
     34                                                /* translators: 1: number of comments, 2: post title */
     35                                                _nx(
     36                                                        '%1$s thought on &ldquo;%2$s&rdquo;',
     37                                                        '%1$s thoughts on &ldquo;%2$s&rdquo;',
     38                                                        $comments_number,
     39                                                        'comments title',
     40                                                        'twentysixteen'
     41                                                ),
     42                                                number_format_i18n( $comments_number ),
     43                                                get_the_title()
     44                                        );
     45                                }
     46                        ?>
     47                </h2>
     48
     49                <?php the_comments_navigation(); ?>
     50
     51                <ol class="comment-list">
     52                        <?php
     53                                wp_list_comments( array(
     54                                        'style'       => 'ol',
     55                                        'short_ping'  => true,
     56                                        'avatar_size' => 42,
     57                                ) );
     58                        ?>
     59                </ol><!-- .comment-list -->
     60
     61                <?php the_comments_navigation(); ?>
     62
     63        <?php endif; // Check for have_comments(). ?>
     64
     65        <?php
     66                // If comments are closed and there are comments, let's leave a little note, shall we?
     67                if ( ! comments_open() && get_comments_number() && post_type_supports( get_post_type(), 'comments' ) ) :
     68        ?>
     69                <p class="no-comments"><?php _e( 'Comments are closed.', 'twentysixteen' ); ?></p>
     70        <?php endif; ?>
     71
     72        <?php
     73                comment_form( array(
     74                        'title_reply_before' => '<h2 id="reply-title" class="comment-reply-title">',
     75                        'title_reply_after'  => '</h2>',
     76                ) );
     77        ?>
     78
     79</div><!-- .comments-area -->
  • src/wp-content/themes/twentysixteen/css/editor-style.css

     
     1/*
     2Theme Name: Twenty Sixteen
     3Description: Used to style the TinyMCE editor.
     4*/
     5
     6
     7/**
     8 * Table of Contents:
     9 *
     10 * 1.0 - Body
     11 * 2.0 - Typography
     12 * 3.0 - Elements
     13 * 4.0 - Alignment
     14 * 5.0 - Caption
     15 * 6.0 - Galleries
     16 * 7.0 - Audio / Video
     17 * 8.0 - RTL
     18 */
     19
     20
     21/**
     22 * 1.0 - Body
     23 */
     24
     25body {
     26        color: #1a1a1a;
     27        font-family: Merriweather, Georgia, serif;
     28        font-size: 16px;
     29        font-weight: 400;
     30        line-height: 1.75;
     31        margin: 20px 40px;
     32        max-width: 600px;
     33        vertical-align: baseline;
     34}
     35
     36body.post-type-page {
     37        max-width: 840px;
     38}
     39
     40
     41/**
     42 * 2.0 - Typography
     43 */
     44
     45h1,
     46h2,
     47h3,
     48h4,
     49h5,
     50h6 {
     51        clear: both;
     52        font-weight: 900;
     53        margin: 56px 0 28px;
     54}
     55
     56h1 {
     57        font-size: 33px;
     58        line-height: 1.2727272727;
     59}
     60
     61h2 {
     62        font-size: 28px;
     63        line-height: 1.25;
     64}
     65
     66h3 {
     67        font-size: 23px;
     68        line-height: 1.2173913043;
     69}
     70
     71h4,
     72h5,
     73h6 {
     74        font-size: 19px;
     75        line-height: 1.1052631579;
     76}
     77
     78h4 {
     79        letter-spacing: 0.13333em;
     80        text-transform: uppercase;
     81}
     82
     83h6 {
     84        font-style: italic;
     85}
     86
     87h1:first-child,
     88h2:first-child,
     89h3:first-child,
     90h4:first-child,
     91h5:first-child,
     92h6:first-child {
     93        margin-top: 0;
     94}
     95
     96p {
     97        margin: 0 0 28px;
     98}
     99
     100b,
     101strong {
     102        font-weight: 700;
     103}
     104
     105dfn,
     106cite,
     107em,
     108i {
     109        font-style: italic;
     110}
     111
     112blockquote {
     113        border-left: 4px solid #1a1a1a;
     114        color: #686868;
     115        font-size: 19px;
     116        font-style: italic;
     117        line-height: 1.4736842105;
     118        margin-bottom: 28px;
     119        overflow: hidden;
     120        padding: 0 0 0 24px;
     121}
     122
     123blockquote:not(.alignleft):not(.alignright) {
     124        margin-left: -28px;
     125}
     126
     127blockquote blockquote:not(.alignleft):not(.alignright) {
     128        margin-left: 0;
     129}
     130
     131blockquote:before,
     132blockquote:after {
     133        content: "";
     134        display: table;
     135}
     136
     137blockquote:after {
     138        clear: both;
     139}
     140
     141blockquote > :last-child {
     142        margin-bottom: 0;
     143}
     144
     145blockquote cite,
     146blockquote small {
     147        color: #1a1a1a;
     148        font-size: 16px;
     149        line-height: 1.75;
     150}
     151
     152blockquote em,
     153blockquote i,
     154blockquote cite {
     155        font-style: normal;
     156}
     157
     158blockquote strong,
     159blockquote b {
     160        font-weight: 400;
     161}
     162
     163blockquote.alignleft,
     164blockquote.alignright {
     165        border: 0 solid #1a1a1a;
     166        border-top-width: 4px;
     167        padding: 18px 0 0;
     168        width: -webkit-calc(50% - 14px);
     169        width: calc(50% - 14px);
     170}
     171
     172address {
     173        font-style: italic;
     174        margin: 0 0 28px;
     175}
     176
     177code,
     178kbd,
     179tt,
     180var,
     181samp,
     182pre {
     183        font-family: Inconsolata, monospace;
     184}
     185
     186pre {
     187        border: 1px solid #d1d1d1;
     188        font-size: 16px;
     189        line-height: 1.3125;
     190        margin: 0 0 28px;
     191        max-width: 100%;
     192        overflow: auto;
     193        padding: 14px;
     194        white-space: pre;
     195        white-space: pre-wrap;
     196        word-wrap: break-word;
     197}
     198
     199code {
     200        background-color: #d1d1d1;
     201        padding: 2px 4px;
     202}
     203
     204abbr[title] {
     205        border-bottom: 1px dotted #d1d1d1;
     206        cursor: help;
     207}
     208
     209mark,
     210ins {
     211        background: #007acc;
     212        color: #fff;
     213        padding: 2px 4px;
     214        text-decoration: none;
     215}
     216
     217sup,
     218sub {
     219        font-size: 75%;
     220        height: 0;
     221        line-height: 0;
     222        position: relative;
     223        vertical-align: baseline;
     224}
     225
     226sub {
     227        top: -6px;
     228}
     229
     230sup {
     231        bottom: -3px;
     232}
     233
     234small {
     235        font-size: 80%;
     236}
     237
     238big {
     239        font-size: 125%;
     240}
     241
     242
     243/**
     244 * 3.0 - Elements
     245 */
     246
     247hr {
     248        background-color: #d1d1d1;
     249        border: 0;
     250        height: 1px;
     251        margin-bottom: 28px;
     252}
     253
     254ul,
     255ol {
     256        margin: 0 0 28px 0;
     257        padding: 0;
     258}
     259
     260ul {
     261        list-style: disc;
     262}
     263
     264ol {
     265        list-style: decimal;
     266}
     267
     268li > ul,
     269li > ol {
     270        margin-bottom: 0;
     271}
     272
     273li > ul,
     274blockquote > ul {
     275        margin-left: 20px;
     276}
     277
     278li > ol,
     279blockquote > ol {
     280        margin-left: 24px;
     281}
     282
     283dl {
     284        margin: 0 0 28px;
     285}
     286
     287dt {
     288        font-weight: bold;
     289}
     290
     291dd {
     292        margin: 0 0 28px;
     293}
     294
     295table,
     296th,
     297td,
     298.mce-item-table,
     299.mce-item-table th,
     300.mce-item-table td {
     301        border: 1px solid #d1d1d1;
     302}
     303
     304table a {
     305        color: #007acc;
     306}
     307
     308table,
     309.mce-item-table {
     310        border-collapse: separate;
     311        border-spacing: 0;
     312        border-width: 1px 0 0 1px;
     313        margin: 0 0 28px;
     314        width: 100%;
     315}
     316
     317table th,
     318.mce-item-table th,
     319table caption {
     320        border-width: 0 1px 1px 0;
     321        font-size: 16px;
     322        font-weight: 700;
     323        padding: 7px;
     324        text-align: left;
     325        vertical-align: baseline;
     326}
     327
     328table td,
     329.mce-item-table td {
     330        border-width: 0 1px 1px 0;
     331        font-size: 16px;
     332        padding: 7px;
     333        vertical-align: baseline;
     334}
     335
     336img {
     337        border: 0;
     338        height: auto;
     339        max-width: 100%;
     340        vertical-align: middle;
     341}
     342
     343a img {
     344        display: block;
     345}
     346
     347figure {
     348        margin: 0;
     349}
     350
     351del {
     352        opacity: 0.8;
     353}
     354
     355a {
     356        box-shadow: 0 1px 0 0 currentColor;
     357        color: #007acc;
     358        text-decoration: none;
     359}
     360
     361fieldset {
     362        border: 1px solid #d1d1d1;
     363        margin: 0 0 28px;
     364        padding: 14px;
     365}
     366
     367
     368/**
     369 * 4.0 - Alignment
     370 */
     371
     372.alignleft {
     373        float: left;
     374        margin: 6px 28px 28px 0;
     375}
     376
     377.alignright {
     378        float: right;
     379        margin: 6px 0 28px 28px;
     380}
     381
     382.aligncenter {
     383        clear: both;
     384        display: block;
     385        margin: 0 auto 28px;
     386}
     387
     388
     389/**
     390 * 5.0 - Caption
     391 */
     392
     393.wp-caption {
     394        background: transparent;
     395        border: none;
     396        margin-bottom: 28px;
     397        max-width: 100%;
     398        padding: 0;
     399        text-align: inherit;
     400}
     401
     402.wp-caption-text,
     403.wp-caption-dd {
     404        color: #686868;
     405        font-size: 13px;
     406        font-style: italic;
     407        line-height: 1.6153846154;
     408        padding-top: 7px;
     409}
     410
     411
     412/**
     413 * 6.0 - Galleries
     414 */
     415
     416.mce-content-body .wpview-wrap {
     417        margin-bottom: 28px;
     418}
     419
     420.gallery {
     421        margin: 0 -1.1666667%;
     422        padding: 0;
     423}
     424
     425.gallery .gallery-item {
     426        display: inline-block;
     427        max-width: 33.33%;
     428        padding: 0 1.1400652% 2.2801304%;
     429        text-align: center;
     430        vertical-align: top;
     431        width: 100%;
     432}
     433
     434.gallery-columns-1 .gallery-item {
     435        max-width: 100%;
     436}
     437
     438.gallery-columns-2 .gallery-item {
     439        max-width: 50%;
     440}
     441
     442.gallery-columns-4 .gallery-item {
     443        max-width: 25%;
     444}
     445
     446.gallery-columns-5 .gallery-item {
     447        max-width: 20%;
     448}
     449
     450.gallery-columns-6 .gallery-item {
     451        max-width: 16.66%;
     452}
     453
     454.gallery-columns-7 .gallery-item {
     455        max-width: 14.28%;
     456}
     457
     458.gallery-columns-8 .gallery-item {
     459        max-width: 12.5%;
     460}
     461
     462.gallery-columns-9 .gallery-item {
     463        max-width: 11.11%;
     464}
     465
     466.gallery .gallery-caption {
     467        font-size: 13px;
     468        margin: 0;
     469}
     470
     471.gallery-columns-6 .gallery-caption,
     472.gallery-columns-7 .gallery-caption,
     473.gallery-columns-8 .gallery-caption,
     474.gallery-columns-9 .gallery-caption {
     475        display: none;
     476}
     477
     478
     479/**
     480 * 7.0 - Audio / Video
     481 */
     482
     483.wp-audio-shortcode a,
     484.wp-playlist a {
     485        box-shadow: none;
     486}
     487
     488.mce-content-body .wp-audio-playlist {
     489        margin: 0;
     490        padding-bottom: 0;
     491}
     492
     493.mce-content-body .wp-playlist-tracks {
     494        margin-top: 0;
     495}
     496
     497.mce-content-body  .wp-playlist-item {
     498        padding: 10px 0;
     499}
     500
     501.mce-content-body .wp-playlist-item-length {
     502        top: 10px;
     503}
     504
     505
     506/**
     507 * 8.0 - RTL
     508 */
     509
     510.rtl blockquote {
     511        border: 0 solid #1a1a1a;
     512        border-right-width: 4px;
     513}
     514
     515.rtl blockquote.alignleft,
     516.rtl blockquote.alignright {
     517        border: 0 solid #1a1a1a;
     518        border-top-width: 4px;
     519}
     520
     521.rtl blockquote:not(.alignleft):not(.alignright) {
     522        margin-right: -28px;
     523        padding: 0 24px 0 0;
     524}
     525
     526.rtl blockquote blockquote:not(.alignleft):not(.alignright) {
     527        margin-right: 0;
     528        margin-left: auto;
     529}
     530
     531.rtl li > ul,
     532.rtl blockquote > ul {
     533        margin-right: 20px;
     534        margin-left: auto;
     535}
     536
     537.rtl li > ol,
     538.rtl blockquote > ol {
     539        margin-right: 24px;
     540        margin-left: auto;
     541}
     542
     543.rtl table th,
     544.rtl .mce-item-table th,
     545.rtl table caption {
     546        text-align: right;
     547}
  • src/wp-content/themes/twentysixteen/css/ie.css

     
     1/*
     2Theme Name: Twenty Sixteen
     3Description: Global Styles for older IE versions (previous to IE10).
     4*/
     5
     6.site-header-main:before,
     7.site-header-main:after,
     8.site-footer:before,
     9.site-footer:after {
     10        content: "";
     11        display: table;
     12}
     13
     14.site-header-main:after,
     15.site-footer:after {
     16        clear: both;
     17}
     18
     19@media screen and (min-width: 56.875em) {
     20        .site-branding,
     21        .site-info {
     22                float: left;
     23        }
     24
     25        .site-header-menu,
     26        .site-footer .social-navigation {
     27                float: right;
     28        }
     29
     30        .site-footer .social-navigation {
     31                margin-left: 7px;
     32        }
     33
     34        .rtl .site-branding,
     35        .rtl .site-info {
     36                float: right;
     37        }
     38
     39        .rtl .site-header-menu,
     40        .rtl .site-footer .social-navigation {
     41                float: left;
     42        }
     43
     44        .rtl .site-footer .social-navigation {
     45                margin-right: 7px;
     46                margin-left: 0;
     47        }
     48}
  • src/wp-content/themes/twentysixteen/css/ie7.css

     
     1/*
     2Theme Name: Twenty Sixteen
     3Description: IE7 specific style.
     4*/
     5
     6.site-inner {
     7        max-width: 656px;
     8}
     9
     10.post-navigation,
     11.pagination,
     12.image-navigation,
     13.entry-header,
     14.entry-summary,
     15.entry-content,
     16.entry-footer,
     17.page-header,
     18.page-content,
     19.post-thumbnail,
     20.content-bottom-widgets,
     21.comments-area {
     22        margin-right: 28px;
     23        margin-left: 28px;
     24        max-width: 100%;
     25}
     26
     27.site-header,
     28.sidebar,
     29.site-footer,
     30.widecolumn {
     31        padding-right: 28px;
     32        padding-left: 28px;
     33}
     34
     35.search-submit {
     36        height: auto;
     37        margin-top: 28px;
     38        padding: 15px 0 8px;
     39        position: relative;
     40        width: auto;
     41}
     42
     43.search-submit .screen-reader-text {
     44        height: auto;
     45        position: relative !important;
     46        width: auto;
     47}
     48
     49.image-navigation .nav-previous,
     50.image-navigation .nav-next,
     51.comment-navigation .nav-previous,
     52.comment-navigation .nav-next {
     53        *display: inline;
     54        zoom: 1;
     55}
     56
     57.image-navigation .nav-previous + .nav-next,
     58.comment-navigation .nav-previous + .nav-next {
     59        margin-left: 14px;
     60}
     61
     62.pagination .nav-links {
     63        padding: 0;
     64}
     65
     66.pagination .page-numbers {
     67        line-height: 1;
     68        margin: -4px 14px 0;
     69        padding: 18px 0;
     70}
     71
     72.pagination .prev,
     73.pagination .next {
     74        display: inline-block;
     75        font-size: 16px;
     76        font-weight: 700;
     77        height: auto;
     78        left: 0;
     79        line-height: 1;
     80        margin: 0;
     81        padding: 18px 14px;
     82        position: relative;
     83        right: 0;
     84        text-transform: none;
     85        width: auto;
     86}
     87
     88.dropdown-toggle {
     89        display: none;
     90}
     91
     92.main-navigation ul ul {
     93        display: block;
     94}
     95
     96.social-navigation {
     97        margin-top: 1.75em;
     98}
     99
     100.social-navigation a {
     101        height: auto;
     102        padding: 3px 7px;
     103        width: auto;
     104}
     105
     106.social-navigation .screen-reader-text {
     107        height: auto;
     108        position: relative !important;
     109        width: auto;
     110}
     111
     112.site-header-main {
     113        overflow : hidden;
     114        zoom : 1;
     115}
     116
     117.entry-footer > span {
     118        margin-right: 14px;
     119}
     120
     121.site-info .site-title {
     122        font-size: 13px;
     123        margin-right: 14px;
     124}
     125
     126.gallery-item {
     127        max-width: 30%;
     128}
     129
     130.gallery-columns-1 .gallery-item {
     131        max-width: 100%;
     132}
     133
     134.gallery-columns-2 .gallery-item {
     135        max-width: 46%;
     136}
     137
     138.gallery-columns-4 .gallery-item {
     139        max-width: 22%;
     140}
     141
     142.gallery-columns-5 .gallery-item {
     143        max-width: 17%;
     144}
     145
     146.gallery-columns-6 .gallery-item {
     147        max-width: 13.5%;
     148}
     149
     150.gallery-columns-7 .gallery-item {
     151        max-width: 11%;
     152}
     153
     154.gallery-columns-8 .gallery-item {
     155        max-width: 9.5%;
     156}
     157
     158.gallery-columns-9 .gallery-item {
     159        max-width: 8%;
     160}
     161
     162.rtl .image-navigation .nav-previous + .nav-next,
     163.rtl .comment-navigation .nav-previous + .nav-next {
     164        margin-right: 14px;
     165        margin-left: 0;
     166}
     167
     168.rtl .entry-footer > span {
     169        margin-right: 14px;
     170        margin-left: 0;
     171}
     172
     173.rtl .site-info .site-title {
     174        margin-right: 0;
     175        margin-left: 14px;
     176}
  • src/wp-content/themes/twentysixteen/css/ie8.css

     
     1/*
     2Theme Name: Twenty Sixteen
     3Description: IE8 specific style.
     4*/
     5
     6code {
     7        background-color: transparent;
     8        padding: 0;
     9}
     10
     11.entry-content a,
     12.entry-summary a,
     13.taxonomy-description a,
     14.logged-in-as a,
     15.comment-content a,
     16.pingback .comment-body > a,
     17.textwidget a,
     18.entry-footer a:hover,
     19.site-info a:hover {
     20        text-decoration: underline;
     21}
     22
     23.entry-content a:hover,
     24.entry-content a:focus,
     25.entry-summary a:hover,
     26.entry-summary a:focus,
     27.taxonomy-description a:hover,
     28.taxonomy-description a:focus,
     29.logged-in-as a:hover,
     30.logged-in-as a:focus,
     31.comment-content a:hover,
     32.comment-content a:focus,
     33.pingback .comment-body > a:hover,
     34.pingback .comment-body > a:focus,
     35.textwidget a:hover,
     36.textwidget a:focus,
     37.entry-content .wp-audio-shortcode a,
     38.entry-content .wp-playlist a,
     39.page-links a {
     40        text-decoration: none;
     41}
     42
     43.site {
     44        margin: 21px;
     45}
     46
     47.site-inner {
     48        max-width: 710px;
     49}
     50
     51.site-header {
     52        padding-top: 3.9375em;
     53        padding-bottom: 3.9375em;
     54}
     55
     56.site-branding {
     57        float: left;
     58        margin-top: 1.3125em;
     59        margin-bottom: 1.3125em;
     60}
     61
     62.site-title {
     63        font-size: 28px;
     64        line-height: 1.25;
     65}
     66
     67.site-description {
     68        display: block;
     69}
     70
     71.menu-toggle {
     72        float: right;
     73        font-size: 16px;
     74        margin: 1.3125em 0;
     75        padding: 0.8125em 0.875em 0.6875em;
     76}
     77
     78.site-header-menu {
     79        clear: both;
     80        margin: 0;
     81        padding: 1.3125em 0;
     82}
     83
     84.site-header .main-navigation + .social-navigation {
     85        margin-top: 2.625em;
     86}
     87
     88.header-image {
     89        margin: 1.3125em 0;
     90}
     91
     92.site-main {
     93        margin-bottom: 5.25em;
     94}
     95
     96.post-navigation {
     97        margin-bottom: 5.25em;
     98}
     99
     100.post-navigation .post-title {
     101        font-size: 28px;
     102        line-height: 1.25;
     103}
     104
     105.pagination {
     106        margin: 0 7.6923% 4.421052632em;
     107}
     108
     109.pagination .nav-links:before,
     110.pagination .nav-links:after {
     111        display: none;
     112}
     113
     114/* restore screen-reader-text */
     115.pagination .current .screen-reader-text {
     116        position: absolute !important;
     117}
     118
     119.pagination .page-numbers {
     120        display: inline-block;
     121        font-weight: 400;
     122}
     123
     124.image-navigation .nav-previous,
     125.image-navigation .nav-next,
     126.comment-navigation .nav-previous,
     127.comment-navigation .nav-next {
     128        display: inline-block;
     129}
     130
     131.image-navigation .nav-previous + .nav-next:before,
     132.comment-navigation .nav-previous + .nav-next:before {
     133        content: "\002f";
     134        display: inline-block;
     135        filter: alpha(opacity=70);
     136        padding: 0 0.538461538em;
     137}
     138
     139.site-main > article {
     140        margin-bottom: 5.25em;
     141}
     142
     143.entry-title {
     144        font-size: 33px;
     145        line-height: 1.2727272727;
     146        margin-bottom: 0.8484848485em;
     147}
     148
     149.entry-content blockquote.alignleft,
     150.entry-content blockquote.alignright {
     151        border-width: 4px 0 0 0;
     152        padding: 0.9473684211em 0 0;
     153        width: 50%;
     154}
     155
     156.entry-footer > span:after {
     157        content: "\002f";
     158        display: inline-block;
     159        filter: alpha(opacity=70);
     160        padding: 0 0.538461538em;
     161}
     162
     163.updated {
     164        display: none;
     165}
     166
     167.updated.published {
     168        display: inline;
     169}
     170
     171.comment-author {
     172        margin-bottom: 0;
     173}
     174
     175.comment-author .avatar {
     176        height: 42px;
     177        position: relative;
     178        top: 0.25em;
     179        width: 42px;
     180}
     181
     182.comment-list .children > li {
     183        padding-left: 1.75em;
     184}
     185
     186.comment-list + .comment-respond,
     187.comment-navigation + .comment-respond {
     188        padding-top: 3.5em;
     189}
     190
     191.comment-reply-link {
     192        margin-top: 0;
     193}
     194
     195.comments-area,
     196.widget,
     197.content-bottom-widgets .widget-area {
     198        margin-bottom: 5.25em;
     199}
     200
     201.sidebar,
     202.widecolumn {
     203        margin-bottom: 5.25em;
     204}
     205
     206.site-footer .main-navigation,
     207.site-footer .social-navigation {
     208        display: none;
     209}
     210
     211.rtl .site-branding {
     212        float: right;
     213}
     214
     215.rtl .menu-toggle {
     216        float: left;
     217}
     218
     219.rtl .comment-list .children > li {
     220        padding-right: 1.75em;
     221        padding-left: 0;
     222}
  • src/wp-content/themes/twentysixteen/footer.php

     
     1<?php
     2/**
     3 * The template for displaying the footer
     4 *
     5 * Contains the closing of the #content div and all content after
     6 *
     7 * @package WordPress
     8 * @subpackage Twenty_Sixteen
     9 * @since Twenty Sixteen 1.0
     10 */
     11?>
     12
     13                </div><!-- .site-content -->
     14
     15                <footer id="colophon" class="site-footer" role="contentinfo">
     16                        <?php if ( has_nav_menu( 'primary' ) ) : ?>
     17                                <nav class="main-navigation" role="navigation" aria-label="<?php esc_attr_e( 'Footer Primary Menu', 'twentysixteen' ); ?>">
     18                                        <?php
     19                                                wp_nav_menu( array(
     20                                                        'theme_location' => 'primary',
     21                                                        'menu_class'     => 'primary-menu',
     22                                                 ) );
     23                                        ?>
     24                                </nav><!-- .main-navigation -->
     25                        <?php endif; ?>
     26
     27                        <?php if ( has_nav_menu( 'social' ) ) : ?>
     28                                <nav class="social-navigation" role="navigation" aria-label="<?php esc_attr_e( 'Footer Social Links Menu', 'twentysixteen' ); ?>">
     29                                        <?php
     30                                                wp_nav_menu( array(
     31                                                        'theme_location' => 'social',
     32                                                        'menu_class'     => 'social-links-menu',
     33                                                        'depth'          => 1,
     34                                                        'link_before'    => '<span class="screen-reader-text">',
     35                                                        'link_after'     => '</span>',
     36                                                ) );
     37                                        ?>
     38                                </nav><!-- .social-navigation -->
     39                        <?php endif; ?>
     40
     41                        <div class="site-info">
     42                                <?php
     43                                        /**
     44                                         * Fires before the twentysixteen footer text for footer customization.
     45                                         *
     46                                         * @since Twenty Sixteen 1.0
     47                                         */
     48                                        do_action( 'twentysixteen_credits' );
     49                                ?>
     50                                <span class="site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></span>
     51                                <a href="<?php echo esc_url( __( 'https://wordpress.org/', 'twentysixteen' ) ); ?>"><?php printf( __( 'Proudly powered by %s', 'twentysixteen' ), 'WordPress' ); ?></a>
     52                        </div><!-- .site-info -->
     53                </footer><!-- .site-footer -->
     54        </div><!-- .site-inner -->
     55</div><!-- .site -->
     56
     57<?php wp_footer(); ?>
     58</body>
     59</html>
  • src/wp-content/themes/twentysixteen/functions.php

     
     1<?php
     2/**
     3 * Twenty Sixteen functions and definitions
     4 *
     5 * Set up the theme and provides some helper functions, which are used in the
     6 * theme as custom template tags. Others are attached to action and filter
     7 * hooks in WordPress to change core functionality.
     8 *
     9 * When using a child theme you can override certain functions (those wrapped
     10 * in a function_exists() call) by defining them first in your child theme's
     11 * functions.php file. The child theme's functions.php file is included before
     12 * the parent theme's file, so the child theme functions would be used.
     13 *
     14 * @link https://codex.wordpress.org/Theme_Development
     15 * @link https://codex.wordpress.org/Child_Themes
     16 *
     17 * Functions that are not pluggable (not wrapped in function_exists()) are
     18 * instead attached to a filter or action hook.
     19 *
     20 * For more information on hooks, actions, and filters,
     21 * {@link https://codex.wordpress.org/Plugin_API}
     22 *
     23 * @package WordPress
     24 * @subpackage Twenty_Sixteen
     25 * @since Twenty Sixteen 1.0
     26 */
     27
     28/**
     29 * Twenty Sixteen only works in WordPress 4.4 or later.
     30 */
     31if ( version_compare( $GLOBALS['wp_version'], '4.4-alpha', '<' ) ) {
     32        require get_template_directory() . '/inc/back-compat.php';
     33}
     34
     35if ( ! function_exists( 'twentysixteen_setup' ) ) :
     36/**
     37 * Sets up theme defaults and registers support for various WordPress features.
     38 *
     39 * Note that this function is hooked into the after_setup_theme hook, which
     40 * runs before the init hook. The init hook is too late for some features, such
     41 * as indicating support for post thumbnails.
     42 *
     43 * Create your own twentysixteen_setup() function to override in a child theme.
     44 *
     45 * @since Twenty Sixteen 1.0
     46 */
     47function twentysixteen_setup() {
     48        /*
     49         * Make theme available for translation.
     50         * Translations can be filed at WordPress.org. See: https://translate.wordpress.org/projects/wp-themes/twentysixteen
     51         * If you're building a theme based on Twenty Sixteen, use a find and replace
     52         * to change 'twentysixteen' to the name of your theme in all the template files
     53         */
     54        load_theme_textdomain( 'twentysixteen' );
     55
     56        // Add default posts and comments RSS feed links to head.
     57        add_theme_support( 'automatic-feed-links' );
     58
     59        /*
     60         * Let WordPress manage the document title.
     61         * By adding theme support, we declare that this theme does not use a
     62         * hard-coded <title> tag in the document head, and expect WordPress to
     63         * provide it for us.
     64         */
     65        add_theme_support( 'title-tag' );
     66
     67        /*
     68         * Enable support for custom logo.
     69         *
     70         *  @since Twenty Sixteen 1.2
     71         */
     72        add_theme_support( 'custom-logo', array(
     73                'height'      => 240,
     74                'width'       => 240,
     75                'flex-height' => true,
     76        ) );
     77
     78        /*
     79         * Enable support for Post Thumbnails on posts and pages.
     80         *
     81         * @link http://codex.wordpress.org/Function_Reference/add_theme_support#Post_Thumbnails
     82         */
     83        add_theme_support( 'post-thumbnails' );
     84        set_post_thumbnail_size( 1200, 9999 );
     85
     86        // This theme uses wp_nav_menu() in two locations.
     87        register_nav_menus( array(
     88                'primary' => __( 'Primary Menu', 'twentysixteen' ),
     89                'social'  => __( 'Social Links Menu', 'twentysixteen' ),
     90        ) );
     91
     92        /*
     93         * Switch default core markup for search form, comment form, and comments
     94         * to output valid HTML5.
     95         */
     96        add_theme_support( 'html5', array(
     97                'search-form',
     98                'comment-form',
     99                'comment-list',
     100                'gallery',
     101                'caption',
     102        ) );
     103
     104        /*
     105         * Enable support for Post Formats.
     106         *
     107         * See: https://codex.wordpress.org/Post_Formats
     108         */
     109        add_theme_support( 'post-formats', array(
     110                'aside',
     111                'image',
     112                'video',
     113                'quote',
     114                'link',
     115                'gallery',
     116                'status',
     117                'audio',
     118                'chat',
     119        ) );
     120
     121        /*
     122         * This theme styles the visual editor to resemble the theme style,
     123         * specifically font, colors, icons, and column width.
     124         */
     125        add_editor_style( array( 'css/editor-style.css', twentysixteen_fonts_url() ) );
     126
     127        // Indicate widget sidebars can use selective refresh in the Customizer.
     128        add_theme_support( 'customize-selective-refresh-widgets' );
     129}
     130endif; // twentysixteen_setup
     131add_action( 'after_setup_theme', 'twentysixteen_setup' );
     132
     133/**
     134 * Sets the content width in pixels, based on the theme's design and stylesheet.
     135 *
     136 * Priority 0 to make it available to lower priority callbacks.
     137 *
     138 * @global int $content_width
     139 *
     140 * @since Twenty Sixteen 1.0
     141 */
     142function twentysixteen_content_width() {
     143        $GLOBALS['content_width'] = apply_filters( 'twentysixteen_content_width', 840 );
     144}
     145add_action( 'after_setup_theme', 'twentysixteen_content_width', 0 );
     146
     147/**
     148 * Registers a widget area.
     149 *
     150 * @link https://developer.wordpress.org/reference/functions/register_sidebar/
     151 *
     152 * @since Twenty Sixteen 1.0
     153 */
     154function twentysixteen_widgets_init() {
     155        register_sidebar( array(
     156                'name'          => __( 'Sidebar', 'twentysixteen' ),
     157                'id'            => 'sidebar-1',
     158                'description'   => __( 'Add widgets here to appear in your sidebar.', 'twentysixteen' ),
     159                'before_widget' => '<section id="%1$s" class="widget %2$s">',
     160                'after_widget'  => '</section>',
     161                'before_title'  => '<h2 class="widget-title">',
     162                'after_title'   => '</h2>',
     163        ) );
     164
     165        register_sidebar( array(
     166                'name'          => __( 'Content Bottom 1', 'twentysixteen' ),
     167                'id'            => 'sidebar-2',
     168                'description'   => __( 'Appears at the bottom of the content on posts and pages.', 'twentysixteen' ),
     169                'before_widget' => '<section id="%1$s" class="widget %2$s">',
     170                'after_widget'  => '</section>',
     171                'before_title'  => '<h2 class="widget-title">',
     172                'after_title'   => '</h2>',
     173        ) );
     174
     175        register_sidebar( array(
     176                'name'          => __( 'Content Bottom 2', 'twentysixteen' ),
     177                'id'            => 'sidebar-3',
     178                'description'   => __( 'Appears at the bottom of the content on posts and pages.', 'twentysixteen' ),
     179                'before_widget' => '<section id="%1$s" class="widget %2$s">',
     180                'after_widget'  => '</section>',
     181                'before_title'  => '<h2 class="widget-title">',
     182                'after_title'   => '</h2>',
     183        ) );
     184}
     185add_action( 'widgets_init', 'twentysixteen_widgets_init' );
     186
     187if ( ! function_exists( 'twentysixteen_fonts_url' ) ) :
     188/**
     189 * Register Google fonts for Twenty Sixteen.
     190 *
     191 * Create your own twentysixteen_fonts_url() function to override in a child theme.
     192 *
     193 * @since Twenty Sixteen 1.0
     194 *
     195 * @return string Google fonts URL for the theme.
     196 */
     197function twentysixteen_fonts_url() {
     198        $fonts_url = '';
     199        $fonts     = array();
     200        $subsets   = 'latin,latin-ext';
     201
     202        /* translators: If there are characters in your language that are not supported by Merriweather, translate this to 'off'. Do not translate into your own language. */
     203        if ( 'off' !== _x( 'on', 'Merriweather font: on or off', 'twentysixteen' ) ) {
     204                $fonts[] = 'Merriweather:400,700,900,400italic,700italic,900italic';
     205        }
     206
     207        /* translators: If there are characters in your language that are not supported by Montserrat, translate this to 'off'. Do not translate into your own language. */
     208        if ( 'off' !== _x( 'on', 'Montserrat font: on or off', 'twentysixteen' ) ) {
     209                $fonts[] = 'Montserrat:400,700';
     210        }
     211
     212        /* translators: If there are characters in your language that are not supported by Inconsolata, translate this to 'off'. Do not translate into your own language. */
     213        if ( 'off' !== _x( 'on', 'Inconsolata font: on or off', 'twentysixteen' ) ) {
     214                $fonts[] = 'Inconsolata:400';
     215        }
     216
     217        if ( $fonts ) {
     218                $fonts_url = add_query_arg( array(
     219                        'family' => urlencode( implode( '|', $fonts ) ),
     220                        'subset' => urlencode( $subsets ),
     221                ), 'https://fonts.googleapis.com/css' );
     222        }
     223
     224        return $fonts_url;
     225}
     226endif;
     227
     228/**
     229 * Handles JavaScript detection.
     230 *
     231 * Adds a `js` class to the root `<html>` element when JavaScript is detected.
     232 *
     233 * @since Twenty Sixteen 1.0
     234 */
     235function twentysixteen_javascript_detection() {
     236        echo "<script>(function(html){html.className = html.className.replace(/\bno-js\b/,'js')})(document.documentElement);</script>\n";
     237}
     238add_action( 'wp_head', 'twentysixteen_javascript_detection', 0 );
     239
     240/**
     241 * Enqueues scripts and styles.
     242 *
     243 * @since Twenty Sixteen 1.0
     244 */
     245function twentysixteen_scripts() {
     246        // Add custom fonts, used in the main stylesheet.
     247        wp_enqueue_style( 'twentysixteen-fonts', twentysixteen_fonts_url(), array(), null );
     248
     249        // Add Genericons, used in the main stylesheet.
     250        wp_enqueue_style( 'genericons', get_template_directory_uri() . '/genericons/genericons.css', array(), '3.4.1' );
     251
     252        // Theme stylesheet.
     253        wp_enqueue_style( 'twentysixteen-style', get_stylesheet_uri() );
     254
     255        // Load the Internet Explorer specific stylesheet.
     256        wp_enqueue_style( 'twentysixteen-ie', get_template_directory_uri() . '/css/ie.css', array( 'twentysixteen-style' ), '20160816' );
     257        wp_style_add_data( 'twentysixteen-ie', 'conditional', 'lt IE 10' );
     258
     259        // Load the Internet Explorer 8 specific stylesheet.
     260        wp_enqueue_style( 'twentysixteen-ie8', get_template_directory_uri() . '/css/ie8.css', array( 'twentysixteen-style' ), '20160816' );
     261        wp_style_add_data( 'twentysixteen-ie8', 'conditional', 'lt IE 9' );
     262
     263        // Load the Internet Explorer 7 specific stylesheet.
     264        wp_enqueue_style( 'twentysixteen-ie7', get_template_directory_uri() . '/css/ie7.css', array( 'twentysixteen-style' ), '20160816' );
     265        wp_style_add_data( 'twentysixteen-ie7', 'conditional', 'lt IE 8' );
     266
     267        // Load the html5 shiv.
     268        wp_enqueue_script( 'twentysixteen-html5', get_template_directory_uri() . '/js/html5.js', array(), '3.7.3' );
     269        wp_script_add_data( 'twentysixteen-html5', 'conditional', 'lt IE 9' );
     270
     271        wp_enqueue_script( 'twentysixteen-skip-link-focus-fix', get_template_directory_uri() . '/js/skip-link-focus-fix.js', array(), '20160816', true );
     272
     273        if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) {
     274                wp_enqueue_script( 'comment-reply' );
     275        }
     276
     277        if ( is_singular() && wp_attachment_is_image() ) {
     278                wp_enqueue_script( 'twentysixteen-keyboard-image-navigation', get_template_directory_uri() . '/js/keyboard-image-navigation.js', array( 'jquery' ), '20160816' );
     279        }
     280
     281        wp_enqueue_script( 'twentysixteen-script', get_template_directory_uri() . '/js/functions.js', array( 'jquery' ), '20160816', true );
     282
     283        wp_localize_script( 'twentysixteen-script', 'screenReaderText', array(
     284                'expand'   => __( 'expand child menu', 'twentysixteen' ),
     285                'collapse' => __( 'collapse child menu', 'twentysixteen' ),
     286        ) );
     287}
     288add_action( 'wp_enqueue_scripts', 'twentysixteen_scripts' );
     289
     290/**
     291 * Adds custom classes to the array of body classes.
     292 *
     293 * @since Twenty Sixteen 1.0
     294 *
     295 * @param array $classes Classes for the body element.
     296 * @return array (Maybe) filtered body classes.
     297 */
     298function twentysixteen_body_classes( $classes ) {
     299        // Adds a class of custom-background-image to sites with a custom background image.
     300        if ( get_background_image() ) {
     301                $classes[] = 'custom-background-image';
     302        }
     303
     304        // Adds a class of group-blog to sites with more than 1 published author.
     305        if ( is_multi_author() ) {
     306                $classes[] = 'group-blog';
     307        }
     308
     309        // Adds a class of no-sidebar to sites without active sidebar.
     310        if ( ! is_active_sidebar( 'sidebar-1' ) ) {
     311                $classes[] = 'no-sidebar';
     312        }
     313
     314        // Adds a class of hfeed to non-singular pages.
     315        if ( ! is_singular() ) {
     316                $classes[] = 'hfeed';
     317        }
     318
     319        return $classes;
     320}
     321add_filter( 'body_class', 'twentysixteen_body_classes' );
     322
     323/**
     324 * Converts a HEX value to RGB.
     325 *
     326 * @since Twenty Sixteen 1.0
     327 *
     328 * @param string $color The original color, in 3- or 6-digit hexadecimal form.
     329 * @return array Array containing RGB (red, green, and blue) values for the given
     330 *               HEX code, empty array otherwise.
     331 */
     332function twentysixteen_hex2rgb( $color ) {
     333        $color = trim( $color, '#' );
     334
     335        if ( strlen( $color ) === 3 ) {
     336                $r = hexdec( substr( $color, 0, 1 ).substr( $color, 0, 1 ) );
     337                $g = hexdec( substr( $color, 1, 1 ).substr( $color, 1, 1 ) );
     338                $b = hexdec( substr( $color, 2, 1 ).substr( $color, 2, 1 ) );
     339        } else if ( strlen( $color ) === 6 ) {
     340                $r = hexdec( substr( $color, 0, 2 ) );
     341                $g = hexdec( substr( $color, 2, 2 ) );
     342                $b = hexdec( substr( $color, 4, 2 ) );
     343        } else {
     344                return array();
     345        }
     346
     347        return array( 'red' => $r, 'green' => $g, 'blue' => $b );
     348}
     349
     350/**
     351 * Custom template tags for this theme.
     352 */
     353require get_template_directory() . '/inc/template-tags.php';
     354
     355/**
     356 * Customizer additions.
     357 */
     358require get_template_directory() . '/inc/customizer.php';
     359
     360/**
     361 * Add custom image sizes attribute to enhance responsive image functionality
     362 * for content images
     363 *
     364 * @since Twenty Sixteen 1.0
     365 *
     366 * @param string $sizes A source size value for use in a 'sizes' attribute.
     367 * @param array  $size  Image size. Accepts an array of width and height
     368 *                      values in pixels (in that order).
     369 * @return string A source size value for use in a content image 'sizes' attribute.
     370 */
     371function twentysixteen_content_image_sizes_attr( $sizes, $size ) {
     372        $width = $size[0];
     373
     374        840 <= $width && $sizes = '(max-width: 709px) 85vw, (max-width: 909px) 67vw, (max-width: 1362px) 62vw, 840px';
     375
     376        if ( 'page' === get_post_type() ) {
     377                840 > $width && $sizes = '(max-width: ' . $width . 'px) 85vw, ' . $width . 'px';
     378        } else {
     379                840 > $width && 600 <= $width && $sizes = '(max-width: 709px) 85vw, (max-width: 909px) 67vw, (max-width: 984px) 61vw, (max-width: 1362px) 45vw, 600px';
     380                600 > $width && $sizes = '(max-width: ' . $width . 'px) 85vw, ' . $width . 'px';
     381        }
     382
     383        return $sizes;
     384}
     385add_filter( 'wp_calculate_image_sizes', 'twentysixteen_content_image_sizes_attr', 10 , 2 );
     386
     387/**
     388 * Add custom image sizes attribute to enhance responsive image functionality
     389 * for post thumbnails
     390 *
     391 * @since Twenty Sixteen 1.0
     392 *
     393 * @param array $attr Attributes for the image markup.
     394 * @param int   $attachment Image attachment ID.
     395 * @param array $size Registered image size or flat array of height and width dimensions.
     396 * @return string A source size value for use in a post thumbnail 'sizes' attribute.
     397 */
     398function twentysixteen_post_thumbnail_sizes_attr( $attr, $attachment, $size ) {
     399        if ( 'post-thumbnail' === $size ) {
     400                is_active_sidebar( 'sidebar-1' ) && $attr['sizes'] = '(max-width: 709px) 85vw, (max-width: 909px) 67vw, (max-width: 984px) 60vw, (max-width: 1362px) 62vw, 840px';
     401                ! is_active_sidebar( 'sidebar-1' ) && $attr['sizes'] = '(max-width: 709px) 85vw, (max-width: 909px) 67vw, (max-width: 1362px) 88vw, 1200px';
     402        }
     403        return $attr;
     404}
     405add_filter( 'wp_get_attachment_image_attributes', 'twentysixteen_post_thumbnail_sizes_attr', 10 , 3 );
     406
     407/**
     408 * Modifies tag cloud widget arguments to have all tags in the widget same font size.
     409 *
     410 * @since Twenty Sixteen 1.1
     411 *
     412 * @param array $args Arguments for tag cloud widget.
     413 * @return array A new modified arguments.
     414 */
     415function twentysixteen_widget_tag_cloud_args( $args ) {
     416        $args['largest'] = 1;
     417        $args['smallest'] = 1;
     418        $args['unit'] = 'em';
     419        return $args;
     420}
     421add_filter( 'widget_tag_cloud_args', 'twentysixteen_widget_tag_cloud_args' );
  • src/wp-content/themes/twentysixteen/genericons/COPYING.txt

     
     1Genericons 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.
     2
     3The fonts are distributed 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.
     4
     5You 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.
     6
     7As a special exception, if you create a document which uses this font, and embed this font or unaltered portions of this font into the document, this font does not by itself cause the resulting document to be covered by the GNU General Public License. This exception does not however invalidate any other reasons why the document might be covered by the GNU General Public License. If you modify this font, you may extend this exception to your version of the font, but you are not obligated to do so. If you do not wish to do so, delete this exception statement from your version.
     8
     9This license does not convey any intellectual property rights to third party trademarks that may be included in the icon font; such marks remain subject to all rights and guidelines of use of their owner.
     10 No newline at end of file
  • src/wp-content/themes/twentysixteen/genericons/Genericons.eot

    Cannot display: file marked as a binary type.
    svn:mime-type = application/octet-stream
  • src/wp-content/themes/twentysixteen/genericons/Genericons.svg

    Property changes on: src/wp-content/themes/twentysixteen/genericons/Genericons.eot
    ___________________________________________________________________
    Added: svn:mime-type
    ## -0,0 +1 ##
    +application/octet-stream
    \ No newline at end of property
     
     1<?xml version="1.0" standalone="no"?>
     2<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
     3<!--
     42015-9-18: Created with FontForge (http://fontforge.org)
     5-->
     6<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1">
     7<metadata>
     8Created by FontForge 20150618 at Fri Sep 18 10:24:13 2015
     9 By Joen Asmussen
     10Copyright (c) 2015, Joen Asmussen
     11</metadata>
     12<defs>
     13<font id="Genericons" horiz-adv-x="2048" >
     14  <font-face
     15    font-family="Genericons"
     16    font-weight="400"
     17    font-stretch="normal"
     18    units-per-em="2048"
     19    panose-1="2 0 5 3 0 0 0 0 0 0"
     20    ascent="2048"
     21    descent="0"
     22    bbox="-0.0140489 0 2048.01 2048"
     23    underline-thickness="102.4"
     24    underline-position="-204.8"
     25    unicode-range="U+0020-F517"
     26  />
     27    <missing-glyph />
     28    <glyph glyph-name="space" unicode=" " horiz-adv-x="200"
     29 />
     30    <glyph glyph-name="uniF413" unicode="&#xf413;"
     31d="M256 1280c565.504 0 1024 -458.496 1024 -1024h-256c0 423.552 -344.448 768 -768 768v256zM256 1792c848.256 0 1536 -687.744 1536 -1536h-256c0 705.792 -574.208 1280 -1280 1280v256zM448 640c106.112 0 192 -86.0156 192 -192s-85.8877 -192 -192 -192
     32s-192 86.0156 -192 192s85.8877 192 192 192z" />
     33    <glyph glyph-name="uniF462" unicode="&#xf462;"
     34d="M618.502 1337l-213.004 142.004l-303.335 -455.002l303.335 -455.002l213.004 142.004l-208.665 312.998zM1642.5 1479l-213.004 -142.004l208.665 -312.998l-208.665 -312.998l213.004 -142.004l303.335 455.002zM771.821 543.045l248.357 -62.0898l256 1024
     35l-248.357 62.0898z" />
     36    <glyph glyph-name="uniF457" unicode="&#xf457;"
     37d="M1024 1792c424.064 0 768 -343.936 768 -768s-343.936 -768 -768 -768c-424.192 0 -768 343.936 -768 768s343.808 768 768 768zM1024 512c70.6562 0 128 57.4717 128 128s-57.3438 128 -128 128c-70.7842 0 -128 -57.4717 -128 -128s57.2158 -128 128 -128z
     38M1342.72 1155.84c24.832 38.9121 37.248 85.1201 37.1201 138.752c0 74.4961 -27.6475 133.504 -83.7119 176.641c-55.9355 43.2637 -133.632 64.7676 -231.936 64.7676c-119.809 0 -234.496 -31.2324 -344.32 -93.9521l91.9043 -180.096
     39c89.2158 47.2314 167.168 70.9121 233.983 70.9121c26.752 0 48.5127 -5.37598 65.2803 -16.2559c17.2803 -10.752 25.4717 -25.4727 25.4717 -44.0322c0 -23.2959 -8.06348 -44.0322 -23.5518 -62.208c-16 -18.0479 -41.4717 -38.4004 -77.1836 -60.9277
     40c-45.1846 -28.1602 -76.416 -57.0889 -94.3359 -87.04c-17.5361 -29.6963 -26.3682 -66.4326 -26.3682 -109.44v-56.96h203.647v34.0479c0 18.6885 5.50391 35.2002 17.2803 48.8965c12.0322 14.0801 40.96 36.0957 86.9121 66.0479
     41c55.04 34.8154 94.5918 71.6797 119.808 110.848z" />
     42    <glyph glyph-name="uniF403" unicode="&#xf403;"
     43d="M1541.38 1530.62l506.624 -506.624l-506.624 -506.624c-131.456 -134.272 -314.752 -217.728 -517.376 -217.728c-202.752 0 -386.048 83.4551 -517.504 217.983l-506.496 506.368v0l506.496 506.496c131.456 134.4 314.624 217.984 517.504 217.984
     44c202.752 0 385.92 -83.584 517.376 -217.856zM1404.42 651.776l372.096 372.224l-370.943 370.944c-102.528 104.704 -237.568 161.536 -381.568 161.536c-144.128 0 -279.168 -56.9609 -380.288 -160.385l-372.096 -372.096l370.688 -370.56
     45c102.528 -104.96 237.696 -161.792 381.824 -161.792c144 0 279.168 56.832 380.288 160.128zM1408 1024zM640 1024c0 212.096 172.032 384 384 384s384 -171.904 384 -384c0 -211.968 -172.032 -384 -384 -384s-384 172.032 -384 384zM768 1152
     46c0 -70.6562 57.2158 -128 128 -128c70.6562 0 128 57.3438 128 128s-57.3438 128 -128 128c-70.7842 0 -128 -57.3438 -128 -128z" />
     47    <glyph glyph-name="uniF505" unicode="&#xf505;"
     48d="M256 1408v256h256v-256h-256zM768 1664h1024v-256h-1024v256zM256 896v256h256v-256h-256zM1408 1152v-256h-640v256h640zM256 384v256h256v-256h-256zM768 384v256h896v-256h-896z" />
     49    <glyph glyph-name="uniF50F" unicode="&#xf50f;"
     50d="M1920 1024l-384 -384v256h-384v-384h256l-384 -384l-384 384h256v384h-384v-256l-384 384l384 384v-256h384v384h-256l384 384l384 -384h-256v-384h384v256z" />
     51    <glyph glyph-name="uniF307" unicode="&#xf307;"
     52d="M768 640v128h128v-128h-128zM768 896v128h128v-128h-128zM768 1152v128h128v-128h-128zM512 640v128h128v-128h-128zM512 896v128h128v-128h-128zM1280 896v128h128v-128h-128zM1024 1152v128h128v-128h-128zM1280 1152v128h128v-128h-128zM1408 1664h256v-1280h-1408
     53v1280h256v128h128v-128h640v128h128v-128zM1536 640v640c0 70.7842 -57.2158 128 -128 128h-896c-70.6562 0 -128 -57.2158 -128 -128v-640c0 -70.7842 57.3438 -128 128 -128h896c70.7842 0 128 57.2158 128 128zM1024 896v128h128v-128h-128zM1024 640v128h128v-128h-128z
     54" />
     55    <glyph glyph-name="uniF460" unicode="&#xf460;"
     56d="M1664 1280h128l-256 -768h-768l256 768h128l86.2725 256h339.455zM1300.86 1280h214.271l-43.1357 128h-128zM809.728 1536l86.2725 -256l-256 -768h-128l-256 768h128l86.2725 256h339.455zM532.864 1280h214.271l-43.1357 128h-128z" />
     57    <glyph glyph-name="uniF430" unicode="&#xf430;"
     58d="M1024 1453.31l86.6562 -86.6553l-342.656 -342.656h896v-128h-896l342.656 -342.656l-86.6562 -86.6553l-493.312 493.312z" />
     59    <glyph glyph-name="uniF515" unicode="&#xf515;"
     60d="M1024 1920c499.2 0 896 -396.8 896 -896s-396.8 -896 -896 -896s-896 396.8 -896 896s396.8 896 896 896zM1382.4 601.6c38.3994 0 64 25.6006 64 51.2002c0 38.4004 -12.8008 51.2002 -38.4004 64c-153.6 89.6006 -332.8 140.8 -524.8 140.8
     61c-115.2 0 -217.601 -25.5996 -320 -51.1992c-25.6006 -12.8008 -51.2002 -25.6006 -51.2002 -64c0 -25.6006 12.7998 -51.2002 51.2002 -51.2002c0 0 25.5996 12.7998 38.3994 12.7998c89.6006 12.7998 192 25.5996 281.601 25.5996
     62c166.399 0 332.8 -38.3994 460.8 -115.199c12.7998 -12.8008 25.5996 -12.8008 38.4004 -12.8008zM1484.8 832c38.4004 0 64 38.4004 64 76.7998c0 38.4004 -12.7998 64 -38.3994 76.7998c-179.2 102.4 -409.601 166.4 -640 166.4c-153.601 0 -256 -25.5996 -358.4 -51.2002
     63c-38.4004 -12.7998 -51.2002 -38.3994 -51.2002 -76.7998s38.4004 -76.7998 76.7998 -89.5996c12.8008 0 25.6006 12.7998 38.4004 12.7998c76.7998 25.5996 179.2 38.3994 294.4 38.3994c217.6 0 422.399 -51.1992 563.199 -140.8
     64c25.6006 0 25.6006 -12.7998 51.2002 -12.7998zM1600 1113.6c38.4004 0 76.7998 38.4004 76.7998 89.6006c0 38.3994 -25.5996 64 -51.2002 76.7998c-204.8 128 -473.6 179.2 -742.399 179.2c-153.601 0 -294.4 -12.7998 -422.4 -51.2002
     65c-38.3994 -12.7998 -64 -38.4004 -64 -89.5996c0 -51.2002 38.4004 -89.6006 89.6006 -89.6006c25.5996 0 38.3994 12.7998 51.1992 12.7998c115.2 25.6006 230.4 38.4004 358.4 38.4004c243.2 0 486.4 -51.2002 652.8 -153.6
     66c25.6006 -12.8008 38.4004 -12.8008 51.2002 -12.8008z" />
     67    <glyph glyph-name="uniF448" unicode="&#xf448;"
     68d="M512 384v1280h384v-1280h-384zM1152 1664h384v-1280h-384v1280z" />
     69    <glyph glyph-name="uniF453" unicode="&#xf453;"
     70d="M1536 2048c141.312 0 256 -114.688 256 -256v-1536c0 -141.312 -114.688 -256 -256 -256h-1024c-141.312 0 -256 114.688 -256 256v1536c0 141.312 114.688 256 256 256h1024zM1024 128c70.7842 0 128 57.2158 128 128s-57.2158 128 -128 128
     71c-70.6562 0 -128 -57.2158 -128 -128s57.3438 -128 128 -128zM1536 512v1280h-1024v-1280h1024z" />
     72    <glyph glyph-name="uniF419" unicode="&#xf419;"
     73d="M0 256v256h2048v-256h-2048zM0 1792h2048v-256h-2048v256zM0 896v256h2048v-256h-2048z" />
     74    <glyph glyph-name="uniF423" unicode="&#xf423;"
     75d="M567.936 1440.9l-267.136 -480.896h403.2v-384h-128v256h-492.8l372.864 671.104zM1644.8 960h403.2v-384h-128v256h-492.8l372.864 671.104l112 -62.207zM1088 1344c176.768 0 320 -143.232 320 -320s-143.232 -320 -320 -320s-320 143.232 -320 320
     76s143.232 320 320 320zM1088 832c105.856 0 192 86.1436 192 192s-86.1436 192 -192 192s-192 -86.1436 -192 -192s86.1436 -192 192 -192z" />
     77    <glyph glyph-name="uniF512" unicode="&#xf512;"
     78d="M1920 1280l-555.136 -387.968l212.863 -636.032l-553.728 394.496l-553.728 -394.496l212.991 636.032l-555.264 387.968h685.312l210.688 640l210.688 -640h685.312z" />
     79    <glyph glyph-name="uniF417" unicode="&#xf417;"
     80d="M960 1792c318.08 0 576 -257.92 576 -576c0 -159.232 -64.6396 -303.36 -169.088 -407.68l-406.912 -407.04l-406.912 407.04c-104.448 104.319 -169.088 248.447 -169.088 407.68c0 318.08 257.92 576 576 576zM960 896c176.64 0 320 143.36 320 320
     81s-143.36 320 -320 320c-176.768 0 -320 -143.36 -320 -320s143.232 -320 320 -320z" />
     82    <glyph glyph-name="uniF410" unicode="&#xf410;"
     83d="M256 1536h1536v-128l-768 -384l-768 384v128zM256 1216l768 -384l768 384v-704h-1536v704z" />
     84    <glyph glyph-name="uniF449" unicode="&#xf449;"
     85d="M512 512v1024h1024v-1024h-1024z" />
     86    <glyph glyph-name="uniF467" unicode="&#xf467;"
     87d="M1280 1280c282.752 0 512 -229.248 512 -512v-299.904l-150.016 149.889c-99.9688 99.9678 -231.04 150.016 -361.984 150.016h-256v-384l-640 640l640 640v-384h256z" />
     88    <glyph glyph-name="uniF224" unicode="&#xf224;"
     89d="M1536 1792c141.312 0 256 -114.688 256 -256v-384c0 -424.064 -343.936 -768 -768 -768s-768 343.936 -768 768v384c0 141.312 114.688 256 256 256h1024zM1498.5 1189.5c50.0479 50.0479 50.0479 131.072 0 180.992c-50.0479 50.0479 -130.944 50.0479 -180.992 0
     90l-293.504 -293.504l-293.504 293.504c-50.0479 50.0479 -131.072 50.0479 -180.992 0c-50.0479 -49.9199 -50.0479 -130.944 0 -180.992l361.984 -361.984l4.22363 4.22461c22.4004 -37.376 61.5684 -63.7441 108.288 -63.7441s85.8877 26.3682 108.288 63.7441
     91l4.22363 -4.22461z" />
     92    <glyph glyph-name="uniF203" unicode="&#xf203;"
     93d="M1664 1920c141.312 0 256 -114.688 256 -256v-1280c0 -141.312 -114.688 -256 -256 -256h-281.856v711.168h269.44l12.416 259.456h-281.984v192.384v0.255859v12.0322c0 71.2959 15.2324 114.432 108.544 114.432c86.6562 0 166.017 -0.639648 166.017 -0.639648
     94l5.8877 242.304s-77.6963 9.98438 -182.528 9.98438c-259.584 0 -372.096 -159.872 -372.096 -333.952v-236.8h-254.336v-259.328h254.336v-711.296h-723.84c-141.312 0 -256 114.688 -256 256v1280c0 141.312 114.688 256 256 256h1280z" />
     95    <glyph glyph-name="uniF502" unicode="&#xf502;"
     96d="M128 2048h1920l-960 -960z" />
     97    <glyph glyph-name="uniF412" unicode="&#xf412;"
     98d="M1920 832l-640 -640v448h-1024v704l384 384v-704h640v448z" />
     99    <glyph glyph-name="uniF440" unicode="&#xf440;"
     100d="M1152 640v-256h256l-384 -384l-384 384h256v256h256zM1664 1024c141.312 0 256 -114.688 256 -256s-114.688 -256 -256 -256h-384v256h-512v-256h-384c-141.312 0 -256 114.688 -256 256s114.688 256 256 256h6.40039c-4.09668 20.7363 -6.40039 42.1123 -6.40039 64
     101c0 176.768 143.232 320 320 320c89.3438 0 169.984 -36.7363 227.968 -95.8721c60.7998 131.84 193.408 223.872 348.032 223.872c211.968 0 384 -171.904 384 -384c0 -45.1836 -9.21582 -87.8076 -23.5518 -128h23.5518z" />
     102    <glyph glyph-name="uniF305" unicode="&#xf305;"
     103d="M1408 1664h256v-1280h-1408v1280h256v128h128v-128h640v128h128v-128zM1536 640v640c0 70.7842 -57.2158 128 -128 128h-896c-70.6562 0 -128 -57.2158 -128 -128v-640c0 -70.7842 57.3438 -128 128 -128h896c70.7842 0 128 57.2158 128 128zM960 1280
     104c35.3281 0 64 -28.6719 64 -64v-512c0 -35.3281 -28.6719 -64 -64 -64s-64 28.6719 -64 64v448h-64c-35.3281 0 -64 28.6719 -64 64s28.6719 64 64 64h128z" />
     105    <glyph glyph-name="uniF443" unicode="&#xf443;"
     106d="M1152 1664l384 -384v-121.472v-6.52832v-768h-1024v1280h512h128zM1408 512v640h-256h-128v128v256h-384v-1024h768z" />
     107    <glyph glyph-name="uniF411" unicode="&#xf411;"
     108d="M1280 1728l448 -448l-896 -896h-448v448zM1280 1536l-594.688 -594.688l96 -96l594.688 594.688zM768 512l128 128l-96 96v0l-64 64v0l-96 96l-128 -128zM845.312 781.312l96 -96l594.688 594.688l-96 96z" />
     109    <glyph glyph-name="uniF402" unicode="&#xf402;"
     110d="M896 1536v-256h256v-128h-256v-256h-128v256h-256v128h256v256h128zM1297.15 878.848l494.848 -494.848l-128 -128l-494.848 494.848c-94.8486 -68.9912 -210.816 -110.848 -337.152 -110.848c-318.08 0 -576 257.92 -576 576s257.92 576 576 576s576 -257.92 576 -576
     111c0 -126.336 -41.8564 -242.304 -110.848 -337.152zM832 768c247.552 0 448 200.576 448 448s-200.448 448 -448 448c-247.424 0 -448 -200.576 -448 -448s200.576 -448 448 -448z" />
     112    <glyph glyph-name="uniF420" unicode="&#xf420;"
     113d="M483.2 1564.8l-227.2 227.2h640v-640l-232.32 232.32c-93.0557 -92.1602 -151.68 -218.88 -151.68 -360.32c0 -238.208 163.584 -436.736 384 -493.824v-262.656c-363.008 61.0566 -640 376.064 -640 756.48c0 212.096 88.0645 402.048 227.2 540.8zM1792 1024
     114c0 -212.096 -88.0645 -401.92 -227.2 -540.8l227.2 -227.2h-640v640l18.5596 -18.5596l213.761 -213.761c93.0557 92.1602 151.68 218.88 151.68 360.32c0 238.208 -163.584 436.736 -384 493.824v262.656c363.008 -61.0566 640 -376.064 640 -756.48z" />
     115    <glyph glyph-name="uniF425" unicode="&#xf425;"
     116d="M704 1024c35.3281 0 64 -28.6719 64 -64s-28.6719 -64 -64 -64s-64 28.6719 -64 64s28.6719 64 64 64zM704 1280c35.3281 0 64 -28.6719 64 -64s-28.6719 -64 -64 -64s-64 28.6719 -64 64s28.6719 64 64 64zM704 768c35.3281 0 64 -28.6719 64 -64s-28.6719 -64 -64 -64
     117s-64 28.6719 -64 64s28.6719 64 64 64zM896 896v128h384v-128h-384zM896 640v128h384v-128h-384zM1280 1664h256v-1280h-1152v1280h256c0 70.7842 57.3438 128 128 128h384c70.7842 0 128 -57.2158 128 -128zM832 1664c-35.3281 0 -64 -28.6719 -64 -64s28.6719 -64 64 -64
     118h256c35.3281 0 64 28.6719 64 64s-28.6719 64 -64 64h-256zM1408 512v1024h-128v-128h-640v128h-128v-1024h896zM896 1152v128h384v-128h-384z" />
     119    <glyph glyph-name="uniF508" unicode="&#xf508;"
     120d="M1450.5 1395.2c45.6963 -69.376 124.288 -115.2 213.504 -115.2c5.50391 0 10.4961 1.28027 15.8721 1.66406l-399.872 -799.872l-256 512l-256 -512l-128 256l-256 -512l-299.776 599.424l228.992 114.561l70.7842 -141.568l256 512l128 -256l256 512l256 -512z
     121M1664 1728c106.112 0 192 -86.0156 192 -192s-85.8877 -192 -192 -192s-192 86.0156 -192 192s85.8877 192 192 192z" />
     122    <glyph glyph-name="uniF507" unicode="&#xf507;"
     123d="M1792 604.544c76.2881 -44.416 128 -126.08 128 -220.544c0 -141.312 -114.688 -256 -256 -256s-256 114.688 -256 256c0 94.5918 51.7119 176.128 128 220.544v163.456c0 70.7842 -57.2158 128 -128 128h-256v-291.456c76.2881 -44.416 128 -126.08 128 -220.544
     124c0 -141.312 -114.688 -256 -256 -256s-256 114.688 -256 256c0 94.4639 51.8398 176.128 128 220.544v291.456h-256c-70.6562 0 -128 -57.2158 -128 -128v-163.456c76.1602 -44.416 128 -126.08 128 -220.544c0 -141.312 -114.688 -256 -256 -256s-256 114.688 -256 256
     125c0 94.4639 51.8398 176.128 128 220.544v163.456c0 212.096 171.904 384 384 384h256v291.456c-76.1602 44.416 -128 126.08 -128 220.544c0 141.312 114.688 256 256 256s256 -114.688 256 -256c0 -94.4639 -51.7119 -176.128 -128 -220.544v-291.456h256
     126c211.968 0 384 -171.904 384 -384v-163.456zM1024 1792c-70.6562 0 -128 -57.3438 -128 -128s57.3438 -128 128 -128s128 57.3438 128 128s-57.3438 128 -128 128zM384 256c70.6562 0 128 57.2158 128 128s-57.3438 128 -128 128s-128 -57.2158 -128 -128
     127s57.3438 -128 128 -128zM1024 256c70.6562 0 128 57.2158 128 128s-57.3438 128 -128 128s-128 -57.2158 -128 -128s57.3438 -128 128 -128zM1664 256c70.7842 0 128 57.2158 128 128s-57.2158 128 -128 128s-128 -57.2158 -128 -128s57.2158 -128 128 -128z" />
     128    <glyph glyph-name="uniF306" unicode="&#xf306;"
     129d="M1151.87 1219.46c0.12793 -0.511719 0.12793 -0.896484 0.12793 -1.4082v-1.79199v-0.255859c0 -5.12012 -0.639648 -10.3682 -1.91992 -15.4883l-128 -512c-8.57617 -34.1758 -43.2637 -55.04 -77.5684 -46.5918c-34.3037 8.57617 -55.168 43.2637 -46.5918 77.5684
     130l108.16 432.512h-174.08c-35.3281 0 -64 28.6719 -64 64s28.6719 64 64 64h256h1.53613h1.28027c1.02344 -0.12793 1.91992 -0.12793 2.81543 -0.255859h0.255859c30.3359 -2.68848 54.5283 -26.624 57.8564 -56.96v0c0 -0.768555 0.12793 -1.4082 0.12793 -2.04785
     131v-1.28027zM1408 1664h256v-1280h-1408v1280h256v128h128v-128h640v128h128v-128zM1536 640v640c0 70.7842 -57.2158 128 -128 128h-896c-70.6562 0 -128 -57.2158 -128 -128v-640c0 -70.7842 57.3438 -128 128 -128h896c70.7842 0 128 57.2158 128 128z" />
     132    <glyph glyph-name="uniF406" unicode="&#xf406;"
     133d="M2048 1920l-832 -832l832 -832l-128 -128l-832 832l-832 -832l-128 128l832 832l-832 832l128 128l832 -832l832 832z" />
     134    <glyph glyph-name="uniF215" unicode="&#xf215;"
     135d="M1664 1920c141.312 0 256 -114.688 256 -256v-1280c0 -141.312 -114.688 -256 -256 -256h-1280c-141.312 0 -256 114.688 -256 256v1280c0 141.312 114.688 256 256 256h1280zM1024 1408c-212.096 0 -384 -171.904 -384 -384c0 -211.968 171.904 -384 384 -384
     136c211.968 0 384 172.032 384 384c0 212.096 -172.032 384 -384 384zM1792 384v768h-274.176c10.624 -41.0879 18.1758 -83.4561 18.1758 -128c0 -282.752 -229.248 -512 -512 -512s-512 229.248 -512 512c0 44.5439 7.42383 86.9121 18.1758 128h-274.176v-768
     137c0 -70.7842 57.3438 -128 128 -128h1280c70.7842 0 128 57.2158 128 128zM1792 1536v128c0 70.6562 -57.2158 128 -128 128h-128c-70.7842 0 -128 -57.3438 -128 -128v-128c0 -70.6562 57.2158 -128 128 -128h128c70.7842 0 128 57.3438 128 128z" />
     138    <glyph glyph-name="uniF202" unicode="&#xf202;"
     139d="M1920 1583.74c-49.2803 -73.7285 -111.744 -138.368 -183.552 -190.208c0.767578 -15.7441 1.2793 -31.6162 1.2793 -47.4883c0 -485.76 -369.92 -1046.02 -1046.27 -1046.02c-207.616 0 -400.768 60.7998 -563.456 165.248
     140c28.7998 -3.45605 58.1123 -5.24805 87.8076 -5.24805c172.032 0 330.752 58.752 456.448 157.439c-160.768 2.81641 -296.576 108.929 -343.424 255.104c22.5283 -3.96777 45.4404 -6.52832 69.248 -6.52832c33.5361 0 65.9199 4.48047 96.7676 12.7998
     141c-168.319 33.792 -294.912 182.272 -294.912 360.448v4.73633c49.6641 -27.5205 106.368 -44.0322 166.528 -45.9521c-98.6875 65.9199 -163.456 178.432 -163.456 305.92c0 67.3281 18.1758 130.688 49.792 184.96c181.376 -222.464 452.353 -368.768 757.889 -384.128
     142c-6.27246 26.8799 -9.60059 54.9121 -9.60059 83.7119c0 203.008 164.608 367.616 367.616 367.616c105.855 0 201.472 -44.6719 268.544 -116.096c83.584 16.5117 162.304 47.1035 233.216 89.2158c-27.3916 -85.8887 -85.7598 -157.952 -161.536 -203.393
     143c74.3682 8.83203 145.152 28.5439 211.072 57.8564z" />
     144    <glyph glyph-name="uniF222" unicode="&#xf222;"
     145d="M1223.94 775.936c20.0967 20.0967 52.0967 19.9688 72.0645 0c19.9678 -19.9678 19.9678 -52.9912 0 -72.96c-56.96 -56.96 -145.92 -86.0156 -270.976 -86.0156c-126.977 0 -216.064 29.0557 -273.024 86.0156c-19.9678 19.9688 -19.9678 52.9922 0 72.96
     146c19.9678 19.9688 51.9678 19.9688 71.9355 0c38.0166 -38.0156 103.04 -56.0635 199.04 -56.0635c97.9209 0 162.944 18.0479 200.96 56.0635zM894.976 982.016c0 -61.0557 -49.9199 -112 -112 -112c-60.9277 0 -110.976 50.9443 -110.976 112
     147c0 61.9521 49.9199 112 110.976 112c61.9521 0 112 -50.0479 112 -112zM1265.02 1094.02c61.9512 0 112 -50.0479 112 -112c0 -61.0557 -50.0488 -112 -112 -112c-61.9521 0 -112 50.9443 -112 112c0 61.9521 50.0479 112 112 112zM1698.05 1089.02
     148c24.96 17.9199 43.0078 45.9512 43.1357 78.9756c0 54.0156 -44.0312 98.0479 -98.0479 98.0479c-32 0 -57.9834 -16 -76.0322 -39.04c53.8887 -39.9355 98.9443 -87.04 130.944 -137.983zM1021.06 500.992c347.904 0 631.937 177.023 632.064 393.983
     149c0 219.009 -284.032 396.032 -632.064 396.032c-349.056 0 -632.96 -177.023 -632.96 -395.008s283.904 -395.008 632.96 -395.008zM306.944 1168c0 -30.9756 16 -57.9844 39.9355 -74.8799c32 50.9443 76.9277 97.0234 131.968 136.96
     150c-17.9199 22.0156 -43.0078 35.9678 -72.96 35.9678c-54.9121 0 -98.9434 -44.0322 -98.9434 -98.0479zM1600 1805.06c-41.9844 0 -77.0557 -35.0713 -77.0557 -77.0557s35.0713 -77.0557 77.0557 -77.0557s77.0557 34.9434 77.0557 77.0557
     151s-35.0713 77.0557 -77.0557 77.0557zM1842.94 1168c0 -75.0078 -41.9844 -137.984 -101.889 -173.056c8.95996 -32 13.9521 -64.8965 13.9521 -98.9443c0 -274.944 -329.088 -498.048 -734.08 -498.048s-734.976 222.976 -734.976 497.023
     152c0 35.9688 6.01562 70.0166 16.1279 104.064c-57.9844 34.9443 -97.0244 97.0244 -97.0244 168.96c0 110.976 89.9844 200.96 200.96 200.96c66.0488 0 124.032 -32.8955 160 -82.9443c114.944 60.9287 257.024 99.9688 411.904 105.984l92.0322 456.96
     153c3.07227 14.0801 11.0078 25.9844 23.04 33.0244c12.0322 8.06348 25.9834 9.9834 39.04 7.04004l312.96 -72.0645c30.9756 52.9922 88.96 89.9844 155.008 89.9844c98.9443 0 179.072 -80 179.072 -178.944s-80 -178.944 -178.944 -178.944
     154c-95.1035 0 -172.032 73.9844 -178.048 167.937l-262.016 60.0322l-77.0566 -386.049c148.992 -7.93555 285.952 -46.9756 397.057 -108.031c35.9678 51.9678 94.9756 86.0156 162.943 86.0156c109.952 0 199.937 -89.9844 199.937 -200.96z" />
     155    <glyph glyph-name="uniF214" unicode="&#xf214;"
     156d="M1091.2 1920v-452.992h425.216v-281.216h-425.216v-459.52c0 -103.937 5.50391 -170.624 16.6396 -200.192c10.8799 -29.3125 31.4883 -52.8643 61.3125 -70.5283c39.6797 -23.8076 84.8633 -35.7119 135.936 -35.7119c90.624 0 180.864 29.4404 270.72 88.4482v-282.624
     157c-76.6719 -35.9678 -146.048 -61.3125 -208 -75.9043c-61.9512 -14.4639 -129.023 -21.7598 -201.216 -21.7598c-81.9199 0 -154.368 10.3682 -217.344 30.9756c-62.9756 20.6084 -116.608 50.3047 -161.024 88.4482c-44.5439 38.2725 -75.2637 78.9766 -92.416 122.112
     158c-17.1514 43.1357 -25.7275 105.6 -25.7275 187.52v628.736h-198.016v253.568c70.3994 22.9121 130.688 55.6797 180.863 98.4316c50.3047 42.624 90.4961 93.8242 120.832 153.856c30.3359 59.7754 51.2002 135.808 62.7207 228.352h254.72z" />
     159    <glyph glyph-name="uniF104" unicode="&#xf104;"
     160d="M512 1664l1152 -640l-1152 -640v1280z" />
     161    <glyph glyph-name="uniF50B" unicode="&#xf50b;"
     162d="M1408 1152l-384 -384l-384 384h256v512h256v-512h256zM384 640h1280v-256h-1280v256z" />
     163    <glyph glyph-name="uniF409" unicode="&#xf409;"
     164d="M1024 1664l640 -512l-128 -128v-512h-1024v512l-128 128zM1152 576v448h-256v-448h256z" />
     165    <glyph glyph-name="uniF458" unicode="&#xf458;"
     166d="M1920 1024l-1024 -640v480l-768 -480v1280l768 -480v480z" />
     167    <glyph glyph-name="uniF218" unicode="&#xf218;"
     168d="M729.6 1152h550.4s12.7998 -38.4004 12.7998 -89.5996c0 -332.801 -230.399 -563.2 -563.2 -563.2c-320 0 -588.8 268.8 -588.8 588.8s281.601 588.8 588.8 588.8c153.601 0 294.4 -51.2002 384 -153.6l-153.6 -153.601c-38.4004 25.6006 -102.4 76.8008 -230.4 76.8008
     169c-204.8 0 -371.199 -166.4 -371.199 -371.2s166.399 -371.2 371.199 -371.2c230.4 0 320 166.4 332.801 243.2h-332.801v204.8zM1664 1152h128v-128h-128v-128h-128v128h-128v128h128v128h128v-128z" />
     170    <glyph glyph-name="uniF513" unicode="&#xf513;"
     171d="M1920 1280l-555.136 -387.968l212.863 -636.032l-553.728 394.496l-553.728 -394.496l212.991 636.032l-555.264 387.968h685.312l210.688 640l210.688 -640h685.312zM1024 807.68l307.584 -219.136l-118.4 353.536l300.288 209.92h-371.456l-118.016 358.528v-702.849z
     172" />
     173    <glyph glyph-name="uniF301" unicode="&#xf301;"
     174d="M704 1152h960l-256 -640h-1024v1024h384l64 -128h448v-128h-640l-128 -256h128z" />
     175    <glyph glyph-name="uniF474" unicode="&#xf474;"
     176d="M128 1408v384h384zM640 768v512h768v-512h-768zM1536 1792h384v-384zM128 640l384 -384h-384v384zM1536 256l384 384v-384h-384zM1536 1408l256 384l128 -128zM1536 640l384 -256l-128 -128zM128 384l384 256l-256 -384zM128 1664l128 128l256 -384z" />
     177    <glyph glyph-name="uniF438" unicode="&#xf438;"
     178d="M1280 1792c141.312 0 256 -114.688 256 -256v-1024c0 -141.312 -114.688 -256 -256 -256h-512c-141.312 0 -256 114.688 -256 256v384h128v-128h768v768h-768v-128h-128v128c0 141.312 114.688 256 256 256h512zM1024 384c70.7842 0 128 57.2158 128 128
     179s-57.2158 128 -128 128c-70.6562 0 -128 -57.2158 -128 -128s57.3438 -128 128 -128zM768 896v128h-512v256h512v128l384 -256z" />
     180    <glyph glyph-name="uniF451" unicode="&#xf451;"
     181d="M256 384v1280l1024 -640zM1408 1664h384v-1280h-384v1280z" />
     182    <glyph glyph-name="uniF404" unicode="&#xf404;"
     183d="M1024 640c-19.8398 0 -39.04 2.43164 -57.8564 5.63184l436.225 436.225c3.2002 -18.8164 5.63184 -38.0166 5.63184 -57.8564c0 -211.968 -172.032 -384 -384 -384zM1696.26 1375.74l351.744 -351.744l-506.624 -506.624
     184c-131.456 -134.272 -314.752 -217.728 -517.376 -217.728c-117.248 0 -226.944 29.3115 -324.864 79.1035l147.072 146.944c56.7041 -20.6084 115.968 -34.0479 177.92 -34.0479c144 0 279.168 56.832 380.288 160.128l372.096 372.224l-216.063 215.936zM1606.02 1722.11
     185l128.641 -129.024l-1279.87 -1279.87l-128.896 128.769l128 128.128l-453.888 453.888v0l506.496 506.496c131.456 134.4 314.624 217.984 517.504 217.984c170.368 0 324.48 -61.8242 448 -160.385zM896 1024c70.6562 0 128 57.3438 128 128s-57.3438 128 -128 128
     186c-70.7842 0 -128 -57.3438 -128 -128s57.2158 -128 128 -128zM1229.18 1345.28l105.729 105.728c-90.752 66.8164 -197.12 105.473 -310.912 105.473c-144.128 0 -279.168 -56.9609 -380.288 -160.385l-372.096 -372.096l318.208 -318.336l113.023 113.024
     187c-38.6553 59.5195 -62.8477 129.023 -62.8477 205.312c0 212.096 172.032 384 384 384c76.2881 0 145.792 -24.1924 205.184 -62.7197z" />
     188    <glyph glyph-name="uniF209" unicode="&#xf209;"
     189d="M1073.15 2048c481.664 0 798.976 -348.672 798.976 -722.944c0 -495.104 -275.328 -865.151 -680.96 -865.151c-136.32 0 -264.448 73.7275 -308.352 157.439c0 0 -73.2168 -290.943 -88.832 -347.136c-26.8809 -97.2803 -79.2324 -194.56 -127.104 -270.208
     190l-148.992 54.0156c-3.58398 88.3203 -0.639648 194.049 22.0166 289.92c24.1914 102.4 162.304 687.744 162.304 687.744s-40.3203 80.6406 -40.3203 199.809c0 187.008 108.544 326.784 243.456 326.784c114.816 0 170.24 -86.1445 170.24 -189.44
     191c0 -115.328 -73.7275 -288 -111.488 -448c-31.6152 -133.632 67.2002 -242.816 199.168 -242.816c239.232 0 400.128 307.072 400.128 670.977c0 276.607 -186.367 483.712 -525.184 483.712c-382.72 0 -621.312 -285.568 -621.312 -604.544
     192c0 -110.08 32.5117 -187.521 83.1992 -247.424c23.5527 -27.7764 26.624 -38.9121 18.3047 -70.6562c-6.0166 -23.04 -19.9688 -78.9766 -25.7285 -101.248c-8.44824 -32 -34.3037 -43.2637 -63.2314 -31.3604c-176.257 71.6807 -258.433 264.96 -258.433 482.048
     193c0 358.656 302.336 788.48 902.145 788.48z" />
     194    <glyph glyph-name="uniF217" unicode="&#xf217;"
     195d="M1024 1920c494.08 0 896 -402.048 896 -896c0 -494.08 -401.92 -896 -896 -896c-493.952 0 -896 401.92 -896 896c0 493.952 402.048 896 896 896zM1112.83 1769.47c-211.2 10.4961 -420.864 -73.4717 -564.608 -220.16
     196c-146.432 -144.256 -216.063 -354.176 -189.695 -551.68c23.4238 -197.248 142.592 -378.496 307.584 -476.032c160.768 -96 365.312 -104.191 530.943 -29.0557c-47.1035 -13.0557 -96.6396 -20.3516 -147.712 -20.3516c-303.487 0 -550.399 246.911 -550.399 550.399
     197c0 143.872 55.6797 274.944 146.304 373.12c1.02441 1.02441 1.91992 1.91992 2.81641 2.94434c4.60742 4.73535 9.08789 9.47168 13.6953 14.208c0.512695 0.383789 0.896484 1.02344 1.4082 1.2793c128 148.353 317.056 242.177 528.256 242.177
     198c221.057 0 418.176 -102.912 546.048 -263.424c-20.8633 33.5352 -44.0312 65.6631 -69.376 95.6152c-137.983 168.832 -343.68 273.408 -555.264 280.96zM1415.04 1006.21c4.35156 -90.3682 -25.3438 -182.912 -80.7676 -257.152
     199c-55.5527 -73.8555 -135.169 -129.664 -225.28 -156.928c-74.8799 -22.7842 -156.544 -25.5996 -234.112 -7.04004c54.0166 -21.6318 112.896 -33.6641 174.464 -33.6641c259.968 0 471.296 211.456 471.296 471.296c0 0.768555 -0.12793 1.66406 -0.12793 2.68848
     200c-13.6953 142.336 -88.1914 276.352 -200.319 359.168c-137.345 104.576 -332.288 116.864 -479.232 38.0156c-73.2158 -38.5273 -136.832 -97.1514 -176.896 -166.912c-40.5762 -69.8877 -58.4961 -151.68 -52.2246 -230.912
     201c10.624 -158.976 124.8 -305.023 271.616 -345.216c146.432 -44.0322 313.344 19.584 391.936 142.849c82.5605 120.447 62.7207 293.119 -36.3516 391.68c-94.0801 104.192 -260.992 115.968 -367.872 36.8643c-54.0156 -38.6562 -92.5439 -94.3359 -105.344 -157.057
     202c-13.3125 -62.0801 -1.66406 -128.64 30.4639 -181.76c32.1279 -53.7598 83.7119 -93.5684 141.952 -108.032c58.2402 -15.1035 121.6 -4.86328 171.52 25.6006c50.5605 30.4639 87.5518 80.1279 97.9199 135.68c11.3926 55.2959 -1.66406 114.432 -34.3037 158.848
     203c-32.1279 45.5684 -82.8164 73.3447 -135.936 76.9287c-52.9922 4.0957 -105.856 -17.2803 -141.568 -54.2725c-36.6084 -35.9678 -52.0957 -89.0879 -44.6719 -137.855c7.55176 -48.6406 38.2715 -93.6963 80 -115.584c26.4961 -14.7207 57.4717 -19.8408 86.9121 -16.3848
     204c-62.0801 1.53613 -114.177 43.2646 -131.456 100.097c-0.512695 0.767578 -1.02441 1.66406 -1.4082 2.6875c-17.9199 41.4717 -13.0557 94.3359 16.1279 133.376c28.416 38.7842 77.5684 63.3604 128.768 60.7998c51.0723 -1.66406 101.376 -33.0234 128 -78.9756
     205c27.3926 -45.8242 32 -106.752 7.80859 -158.336c-24.0645 -51.7119 -73.7285 -90.2402 -131.584 -101.632c-57.4717 -12.416 -122.752 4.73535 -167.68 47.3594c-44.8008 40.96 -72.0645 104.192 -67.4561 168.32c3.83984 133.12 150.911 237.44 287.104 200.96
     206c138.368 -31.6162 226.944 -196.736 173.824 -338.304c-48.6406 -142.72 -224.769 -225.536 -373.888 -166.912c-74.1123 27.5195 -134.784 85.8877 -169.729 157.568c-34.9443 72.1914 -42.2402 158.592 -17.9199 237.695c47.8721 161.664 226.176 269.185 398.848 238.464
     207c175.36 -25.5996 313.217 -192.64 317.568 -374.016zM1024 207.488c319.232 0 595.968 184.319 730.112 451.712c37.248 84.7354 58.8799 175.744 58.8799 265.728c0 318.977 -247.04 554.368 -553.216 607.616c154.496 -64 279.296 -200.32 331.52 -362.496
     208c70.1445 -203.136 20.8643 -447.872 -133.12 -608.896c-148.224 -162.944 -384.384 -245.633 -608.128 -206.208c-226.048 35.584 -422.912 198.271 -517.504 407.936c-97.792 209.408 -90.3682 468.224 26.8799 674.432c116.736 206.337 329.344 354.433 566.272 395.009
     209c11.7754 2.17578 23.6797 3.96777 35.584 5.37598c-420.992 -32.1279 -753.664 -384.641 -753.664 -813.696c0 -450.304 366.208 -816.512 816.384 -816.512z" />
     210    <glyph glyph-name="uniF469" unicode="&#xf469;"
     211d="M256 1280h1536v-768h-256v384h-1024v-384h-256v768zM1408 1664v-256h-768v256h768zM1408 640c0 -98.3037 37.5039 -196.48 112.512 -271.488l112.513 -112.512h-768l-112.513 112.512c-75.0078 75.0078 -112.512 173.185 -112.512 271.488v128h768v-128z" />
     212    <glyph glyph-name="uniF476" unicode="&#xf476;"
     213d="M384 1248c123.776 0 224 -100.224 224 -224c0 -123.648 -100.224 -224 -224 -224s-224 100.352 -224 224c0 123.776 100.224 224 224 224zM1024 1248c123.648 0 224 -100.224 224 -224c0 -123.648 -100.352 -224 -224 -224c-123.776 0 -224 100.352 -224 224
     214c0 123.776 100.224 224 224 224zM1664 1248c123.648 0 224 -100.224 224 -224c0 -123.648 -100.352 -224 -224 -224s-224 100.352 -224 224c0 123.776 100.352 224 224 224z" />
     215    <glyph glyph-name="uniF211" unicode="&#xf211;"
     216d="M1472 1440c229.888 0 416 -186.24 416 -416s-186.112 -416 -416 -416s-416 186.24 -416 416s186.112 416 416 416zM576 1440c229.76 0 416 -186.24 416 -416s-186.24 -416 -416 -416s-416 186.24 -416 416s186.24 416 416 416z" />
     217    <glyph glyph-name="uniF456" unicode="&#xf456;"
     218d="M1024 1792c424.064 0 768 -343.936 768 -768s-343.936 -768 -768 -768c-424.192 0 -768 343.936 -768 768s343.808 768 768 768zM1024 512c70.7842 0 128 57.2158 128 128s-57.2158 128 -128 128c-70.6562 0 -128 -57.2158 -128 -128s57.3438 -128 128 -128zM1113.22 896
     219l51.584 640h-281.6l51.2002 -640h178.815z" />
     220    <glyph glyph-name="uniF471" unicode="&#xf471;"
     221d="M512 1664h358.656c163.328 0 281.855 -23.2959 355.712 -69.7598c73.7275 -46.4639 110.592 -120.448 110.592 -221.824c0 -68.8643 -16.1279 -125.312 -48.3838 -169.344c-32.3838 -44.1602 -75.2646 -70.6562 -128.769 -79.6162v-7.93652
     222c72.96 -16.2559 125.568 -46.7197 157.952 -91.3916c32.2559 -44.6719 48.5127 -104.063 48.5127 -178.048c0 -105.088 -38.0166 -187.008 -113.921 -245.888c-76.0312 -58.8809 -178.943 -88.1924 -309.248 -88.1924h-431.104v1152zM768 1207.81h130.176
     223c66.3047 0 114.176 10.2402 143.872 30.7207c29.5684 20.4795 44.5439 54.3994 44.5439 101.632c0 44.1602 -16.1279 75.7754 -48.5117 94.9756c-32.3838 19.0723 -83.4561 28.7998 -153.344 28.7998h-116.736v-256.128zM768 1013.89v-300.16h147.456
     224c67.2002 0 116.864 12.9287 148.864 38.6562c32.1279 25.7285 48.1279 65.1523 48.1279 118.145c0 95.6152 -68.3525 143.487 -204.929 143.487h-139.52v-0.12793z" />
     225    <glyph glyph-name="uniF433" unicode="&#xf433;"
     226d="M0 896l896 -896h-896v896z" />
     227    <glyph glyph-name="uniF447" unicode="&#xf447;"
     228d="M1408 512c70.7842 0 128 -57.2158 128 -128s-57.2158 -128 -128 -128s-128 57.2158 -128 128s57.2158 128 128 128zM640 512c70.6562 0 128 -57.2158 128 -128s-57.3438 -128 -128 -128s-128 57.2158 -128 128s57.3438 128 128 128zM1536 896h-896v-128h896v-128h-1024
     229v1024h-256v128h384v-256h1152z" />
     230    <glyph glyph-name="uniF511" unicode="&#xf511;"
     231d="M1024 1510.53l-118.016 -358.528h-371.328l300.288 -209.92l-118.272 -353.28l307.328 218.88l307.584 -219.136l-118.4 353.536l300.288 209.92h-371.456zM1024 1920v0l210.688 -640h685.312l-555.136 -387.968l212.863 -636.032l-553.728 394.496l-553.728 -394.496
     232l212.991 636.032l-555.264 387.968h685.312z" />
     233    <glyph glyph-name="uniF427" unicode="&#xf427;"
     234d="M1717.72 1436.21c99.7246 -99.7246 99.7246 -261.281 0 -361.006l-232.861 -232.989c-98.5723 -98.5723 -257.44 -99.3398 -357.421 -2.81543l-455.353 -455.354h-288.036v287.908l455.097 454.969l-0.767578 0.768555c-99.5967 99.5957 -99.5967 261.408 0 361.005
     235l232.989 232.989c99.5957 99.7246 261.408 99.7246 361.005 0zM1344.04 1104.01l160.02 160.021l-256.031 256.031l-160.021 -160.02z" />
     236    <glyph glyph-name="uniF219" unicode="&#xf219;"
     237d="M1438.08 1832.7c0 0 563.456 -229.376 370.176 -838.4c-267.264 -554.496 -784.64 -349.056 -784.64 -349.056v-277.504s-19.7119 -153.344 -202.88 -220.288c-183.296 -66.6885 -351.616 59.5195 -351.616 59.5195v279.809
     238c83.584 -85.5039 195.712 -134.272 240.128 -9.98438v945.92h311.68v-537.472s460.416 -138.496 522.368 289.792c9.85645 475.392 -546.944 472.832 -546.944 472.832s-349.184 22.2715 -522.495 -257.536c-131.2 -222.848 37.1191 -423.424 37.1191 -423.424
     239l-225.279 -200.448s-339.2 418.433 -7.42383 871.552c430.848 487.681 1159.81 194.688 1159.81 194.688z" />
     240    <glyph glyph-name="uniF100" unicode="&#xf100;"
     241d="M512 1408h1024v-128h-1024v128zM1152 1152v-128h-640v128h640zM1280 1024v128h256v-128h-256zM896 768v128h640v-128h-640zM768 896v-128h-256v128h256zM512 512v128h768v-128h-768z" />
     242    <glyph glyph-name="uniF400" unicode="&#xf400;"
     243d="M1792 384l-128 -128l-494.848 494.848c-94.8486 -68.9912 -210.816 -110.848 -337.152 -110.848c-318.08 0 -576 257.92 -576 576s257.92 576 576 576s576 -257.92 576 -576c0 -126.336 -41.8564 -242.304 -110.848 -337.152zM384 1216c0 -247.424 200.576 -448 448 -448
     244c247.552 0 448 200.576 448 448s-200.448 448 -448 448c-247.424 0 -448 -200.576 -448 -448z" />
     245    <glyph glyph-name="uniF439" unicode="&#xf439;"
     246d="M896 1664v-384h-256v384c0 70.7842 57.3438 128 128 128s128 -57.2158 128 -128zM1408 1664v-384h-256v384c0 70.7842 57.2158 128 128 128s128 -57.2158 128 -128zM384 1152h1280c0 -309.632 -219.904 -567.68 -512 -627.072v-268.928h-256v268.928
     247c-292.096 59.2646 -512 317.44 -512 627.072z" />
     248    <glyph glyph-name="uniF509" unicode="&#xf509;"
     249d="M1534.21 717.824l147.712 -88.5762c-134.4 -223.36 -378.24 -373.248 -657.92 -373.248c-279.552 0 -523.52 149.888 -657.92 373.248l147.712 88.7041c92.1602 -98.1758 226.816 -168.96 382.208 -194.688v500.736h-128v128h128v163.456
     250c-76.1602 44.416 -128 126.08 -128 220.544c0 141.312 114.688 256 256 256s256 -114.688 256 -256c0 -94.4639 -51.7119 -176.128 -128 -220.544v-163.456h128v-128h-128v-500.864c155.52 25.7285 289.92 96.3838 382.208 194.688zM1024 1664
     251c-70.6562 0 -128 -57.3438 -128 -128s57.3438 -128 128 -128c70.7842 0 128 57.3438 128 128s-57.2158 128 -128 128z" />
     252    <glyph glyph-name="uniF510" unicode="&#xf510;"
     253d="M1664 1152v-256h-512v-512h-256v512h-512v256h512v512h256v-512h512z" />
     254    <glyph glyph-name="uniF445" unicode="&#xf445;"
     255d="M1888 748.032l-57.5996 -139.648l-305.408 21.8887c-31.3604 -39.9365 -66.9443 -75.6484 -106.88 -107.009l21.7598 -305.536l-139.264 -57.5996l-200.704 231.552c-25.2158 -3.07129 -49.9199 -7.67969 -75.9043 -7.67969c-25.7275 0 -50.1758 4.6084 -75.1357 7.67969
     256l-200.96 -231.808l-139.393 57.7275l21.7607 305.408c-39.9365 31.3604 -75.5205 66.9443 -107.009 106.88l-305.536 -21.7598l-57.7275 139.264l231.68 200.832c-3.07129 25.0879 -7.67969 49.792 -7.67969 75.7764c0 25.7275 4.6084 50.1758 7.55176 75.1357
     257l-231.552 200.96l57.7275 139.393l305.28 -21.7607c31.4883 39.9365 67.2002 75.7764 107.265 107.265l-21.7607 305.408l139.137 57.5996l200.96 -231.68c24.96 2.94336 49.5352 7.67969 75.3916 7.67969s50.4316 -4.73633 75.3916 -7.67969l200.96 231.68
     258l139.265 -57.5996l-21.8887 -305.408c39.9365 -31.3604 75.6484 -67.0723 107.137 -107.008l305.408 21.6318l57.5996 -139.136l-231.552 -200.832c3.07129 -25.0889 7.67969 -49.6641 7.67969 -75.6484c0 -25.7275 -4.6084 -50.3037 -7.67969 -75.2637zM1280 1024
     259c0 141.312 -114.688 256 -256 256s-256 -114.688 -256 -256s114.688 -256 256 -256s256 114.688 256 256z" />
     260    <glyph glyph-name="uniF516" unicode="&#xf516;"
     261d="M1024 1452.42v-467.328h-155.776v467.328h155.776zM1408 1452.42v-467.328h-155.776v467.328h155.776zM323.2 1920h1596.8v-1090.82l-467.456 -445.184h-350.464l-233.6 -256h-228.48v256h-512v1224.32zM1764.22 907.136v857.088h-1285.5v-1129.73h350.977v-211.328
     262l233.472 211.328h428.16z" />
     263    <glyph glyph-name="uniF435" unicode="&#xf435;"
     264d="M384 512l640 640l640 -640h-1280zM384 1408h1280v-128h-1280v128z" />
     265    <glyph glyph-name="uniF300" unicode="&#xf300;"
     266d="M1536 1536c141.312 0 256 -114.688 256 -256v-384c0 -141.312 -114.688 -256 -256 -256h-448l-448 -448v448h-128c-141.312 0 -256 114.688 -256 256v384c0 141.312 114.688 256 256 256h1024z" />
     267    <glyph glyph-name="uniF514" unicode="&#xf514;"
     268d="M1664 768v128l256 -256l-256 -256v128h-256c-282.752 0 -512 229.248 -512 512c0 141.312 -114.688 256 -256 256h-384v256h384c282.752 0 512 -229.248 512 -512c0 -141.312 114.688 -256 256 -256h256zM1408 1280c-61.8242 0 -117.888 -22.9121 -162.176 -59.3916
     269c-27.3926 83.9678 -70.7842 160 -128 224.768c82.5596 56.96 182.271 90.624 290.176 90.624h256v128l256 -256l-256 -256v128h-256zM640 768c61.8242 0 117.888 22.9121 162.176 59.3916c27.3926 -83.9678 70.7842 -160 128 -224.768
     270c-82.5596 -56.832 -182.271 -90.624 -290.176 -90.624h-384v256h384z" />
     271    <glyph glyph-name="uniF102" unicode="&#xf102;"
     272d="M1408 1408l512 -128v-896h-1792v896l512 128l128 256h512zM1024 512.256c247.552 0 448 200.448 448 448c0 247.424 -200.448 448 -448 448c-247.424 0 -448 -200.576 -448 -448c0 -247.552 200.576 -448 448 -448zM512 1600v-96.1279l-256 -64v160.128h256z
     273M1024 1280.13c176.768 0 320 -143.231 320 -320c0 -176.768 -143.232 -320 -320 -320s-320 143.232 -320 320c0 176.769 143.232 320 320 320z" />
     274    <glyph glyph-name="uniF466" unicode="&#xf466;"
     275d="M640 1344l-320 -320l320 -320v-320l-640 640l640 640v-320zM1408 1280c282.752 0 512 -229.248 512 -512v-299.904l-150.016 149.889c-99.9688 99.9678 -231.04 150.016 -361.984 150.016h-256v-384l-640 640l640 640v-384h256z" />
     276    <glyph glyph-name="uniF463" unicode="&#xf463;"
     277d="M1536 1408l-768 -384l-768 384v128h1536v-128zM0 1216l768 -384l256 128v-448h-1024v704zM1920 1152c70.7842 0 128 -57.3438 128 -128v-640c0 -70.7842 -57.2158 -128 -128 -128h-640c-70.7842 0 -128 57.2158 -128 128v640c0 70.6562 57.2158 128 128 128h640z
     278M1920 640v128h-256v256h-128v-256h-256v-128h256v-256h128v256h256z" />
     279    <glyph glyph-name="uniF422" unicode="&#xf422;"
     280d="M384 1536h1152v-1024h-1152v1024zM1408 640v640h-896v-640h896z" />
     281    <glyph glyph-name="uniF201" unicode="&#xf201;"
     282d="M1024 128c128 0 256 32 368 80c-16 144 -64 368 -208 688c-288 -96 -560 -304 -704 -576c144 -128 336 -192 544 -192zM1536 288c208 144 352 384 384 640c-192 32 -368 32 -576 0c16 -32 128 -304 192 -640zM128 1088v-64c0 -224 80 -432 224 -592
     283c176 288 496 496 784 592c-16 48 -48 112 -80 176c-368 -112 -592 -144 -928 -112zM1760 1536c-160 -128 -368 -192 -560 -288c48 -64 64 -112 96 -176c208 48 480 32 624 0c-16 176 -64 336 -160 464zM672 1856c-256 -112 -448 -336 -512 -624c288 -32 688 48 832 96
     284c-96 192 -192 352 -320 528zM1024 1920c-64 0 -128 -16 -192 -16c128 -208 192 -320 304 -512c128 48 384 128 528 256c-160 160 -384 272 -640 272zM1024 2048c560 0 1024 -464 1024 -1024s-464 -1024 -1024 -1024s-1024 464 -1024 1024s464 1024 1024 1024z" />
     285    <glyph glyph-name="uniF426" unicode="&#xf426;"
     286d="M1664 1024c141.312 0 256 -114.688 256 -256s-114.688 -256 -256 -256h-1280c-141.312 0 -256 114.688 -256 256s114.688 256 256 256h6.52832c-4.35254 20.8643 -6.52832 41.9844 -6.52832 64c0 176.768 143.232 320 320 320
     287c89.3438 0 169.984 -36.8643 227.968 -95.8721c60.7998 131.84 193.408 223.872 348.032 223.872c211.968 0 384 -171.904 384 -384c0 -45.1836 -9.21582 -87.8076 -23.5518 -128h23.5518z" />
     288    <glyph glyph-name="uniF446" unicode="&#xf446;"
     289d="M1024 1792c424.064 0 768 -343.936 768 -768s-343.936 -768 -768 -768s-768 343.936 -768 768s343.936 768 768 768zM1536 1024c0 282.752 -229.248 512 -512 512c-94.8477 0 -182.528 -27.5195 -258.688 -72.4482l698.368 -698.24
     290c44.8008 76.1602 72.3203 163.969 72.3203 258.688zM512 1024c0 -282.752 229.248 -512 512 -512c94.7197 0 182.4 27.5195 258.56 72.3203l-698.239 698.239c-44.8008 -76.1592 -72.3203 -163.84 -72.3203 -258.56z" />
     291    <glyph glyph-name="uniF504" unicode="&#xf504;"
     292d="M1664 1536c0 -94.4639 -51.7119 -176.128 -128 -220.544v-163.456c0 -282.752 -229.248 -512 -512 -512c-141.312 0 -256 -114.688 -256 -256v-128h-256v1059.46c-76.1602 44.416 -128 126.08 -128 220.544c0 141.312 114.688 256 256 256s256 -114.688 256 -256
     293c0 -94.4639 -51.8398 -176.128 -128 -220.544v-490.496c75.5195 44.0322 162.304 71.04 256 71.04c141.312 0 256 114.688 256 256v163.456c-76.2881 44.416 -128 126.08 -128 220.544c0 141.312 114.688 256 256 256s256 -114.688 256 -256zM640 1664
     294c-70.6562 0 -128 -57.3438 -128 -128s57.3438 -128 128 -128s128 57.3438 128 128s-57.3438 128 -128 128zM1408 1408c70.7842 0 128 57.3438 128 128s-57.2158 128 -128 128s-128 -57.3438 -128 -128s57.2158 -128 128 -128z" />
     295    <glyph glyph-name="uniF465" unicode="&#xf465;"
     296d="M1536 1408l-768 -384l-768 384v128h1536v-128zM0 1216l768 -384l256 128v-448h-1024v704zM1920 1152c70.7842 0 128 -57.3438 128 -128v-640c0 -70.7842 -57.2158 -128 -128 -128h-640c-70.7842 0 -128 57.2158 -128 128v640c0 70.6562 57.2158 128 128 128h640z
     297M1531.52 384l452.48 452.48l-90.4961 90.4951l-361.984 -361.983l-180.991 180.992l-90.4961 -90.4961z" />
     298    <glyph glyph-name="uniF424" unicode="&#xf424;"
     299d="M1408 1792l384 -384v-768l-384 -384h-768l-384 384v768l384 384h768zM1024 512c70.7842 0 128 57.2158 128 128s-57.2158 128 -128 128c-70.6562 0 -128 -57.2158 -128 -128s57.3438 -128 128 -128zM1113.22 896l51.584 640h-281.6l51.2002 -640h178.815z" />
     300    <glyph glyph-name="uniF418" unicode="&#xf418;"
     301d="M1408 1504l128 -96l-512 -768h-128l-288 416l128 128l224 -192z" />
     302    <glyph glyph-name="uniF429" unicode="&#xf429;"
     303d="M1024 1453.31l493.312 -493.312l-493.312 -493.312l-86.6562 86.6553l342.656 342.656h-896v128h896l-342.656 342.656z" />
     304    <glyph glyph-name="uniF308" unicode="&#xf308;"
     305d="M477.696 568.192l543.104 543.104l90.3682 -90.624l-542.976 -542.976c-100.225 -100.353 -152.32 -115.84 -226.305 -135.809c20.0967 74.1123 35.584 126.08 135.809 226.305zM1189.5 1732.61l180.992 180.991l542.976 -543.104l-180.991 -180.992
     306c-50.0488 50.0479 -130.944 50.0479 -180.992 0l-180.992 -180.992c-50.0479 -50.0479 -50.0479 -130.943 0 -180.992l-180.992 -180.991l-543.104 542.976l180.991 180.992c50.0488 -50.0479 131.072 -50.0479 181.12 0l180.992 181.12
     307c50.0479 50.0479 50.0479 130.943 0 180.992z" />
     308    <glyph glyph-name="uniF226" unicode="&#xf226;"
     309d="M1477.76 1792c120.32 0 152.576 -68.6084 126.464 -195.584l-51.8398 -258.688c-40.96 -206.848 -88.0635 -445.695 -94.0801 -470.144c-11.0078 -44.1602 -27.9033 -119.168 -132.992 -119.168h-250.367c-9.98438 0 -9.98438 0 -20.0967 -10.1123
     310c-6.65527 -6.65527 -393.344 -455.424 -393.344 -455.424c-30.208 -34.6875 -80.3838 -28.5439 -98.6875 -21.1201c-18.3047 7.2959 -50.6885 29.6963 -50.6885 89.9844v1301.63s33.2803 138.624 146.304 138.624h819.328zM1394.94 1391.1l34.3037 179.2
     311c6.27148 29.6963 -16.3838 52.4805 -40.5762 52.4805h-657.536c-29.8242 0 -49.792 -26.8799 -49.792 -49.792v-1015.68c0 -3.19922 2.43262 -3.83984 4.86426 -1.15137c0 0 242.304 290.815 269.184 324.352c26.8809 33.4082 39.168 38.6562 79.3604 38.6562h221.184
     312c30.208 0 47.2324 25.3438 50.3047 40.1924c3.2002 14.8477 28.9277 149.12 34.4316 176.256s-19.3281 54.9121 -44.7998 54.9121h-270.976c-35.9688 0 -61.8242 25.4717 -61.8242 61.3115v39.04c0 35.9678 25.7275 60.416 61.5674 60.416h319.232
     313s46.9756 20.4805 51.0723 39.8076z" />
     314    <glyph glyph-name="uniF205" unicode="&#xf205;"
     315d="M1024 1920c493.952 0 896 -401.92 896 -896c0 -493.952 -402.048 -896 -896 -896c-494.08 0 -896 402.048 -896 896c0 494.08 401.92 896 896 896zM218.496 1024c0 -318.848 185.216 -594.432 454.016 -724.992l-384.256 1052.93
     316c-44.6719 -100.224 -69.7598 -211.071 -69.7598 -327.936zM1024 218.496c93.8242 0 183.808 16.1279 267.648 45.5684c-2.17676 3.45508 -4.09668 7.16797 -5.76074 11.2637l-247.552 678.271l-241.92 -702.336c72.1924 -21.248 148.48 -32.7676 227.584 -32.7676z
     317M1134.98 1401.73l291.072 -866.176l80.3838 268.544c34.9443 111.488 61.3125 191.488 61.3125 260.48c0 99.584 -35.8398 168.576 -66.4326 222.08c-40.7031 66.4316 -78.9756 122.624 -78.9756 189.056c0 74.1123 56.1924 142.977 135.168 142.977
     318c3.58398 0 7.04004 -0.384766 10.4961 -0.640625c-143.36 131.328 -334.208 211.456 -544 211.456c-281.472 0 -529.024 -144.256 -673.024 -363.008c18.9443 -0.639648 36.7363 -0.896484 51.8408 -0.896484c84.2236 0 214.655 10.2402 214.655 10.2402
     319c43.3926 2.56055 48.5127 -61.3115 5.24805 -66.4316c0 0 -43.7754 -5.12012 -92.1602 -7.68066l293.12 -872.575l176.256 528.64l-125.439 343.936c-43.3926 2.56055 -84.4805 7.68066 -84.4805 7.68066c-43.2637 2.55957 -38.2715 68.9922 5.12012 66.4316
     320c0 0 132.992 -10.2402 212.225 -10.2402c84.2236 0 214.783 10.2402 214.783 10.2402c43.3926 2.56055 48.5127 -61.3115 5.12012 -66.4316c0 0 -43.6475 -5.12012 -92.2881 -7.68066zM1730.82 1410.56c3.58398 -25.7275 5.50391 -53.248 5.63184 -82.8154
     321c0 -81.792 -15.4883 -173.696 -61.3125 -288.512l-246.144 -711.425c239.488 139.521 400.512 399.104 400.512 696.192c0 140.16 -35.8398 271.872 -98.6875 386.56z" />
     322    <glyph glyph-name="uniF472" unicode="&#xf472;"
     323d="M1368.06 1408h-128l-240.129 -768h128l-39.9355 -128h-448l39.9355 128h128l240.129 768h-128l39.9355 128h448z" />
     324    <glyph glyph-name="uniF216" unicode="&#xf216;"
     325d="M1791.62 1265.92c0.383789 -2.94434 0.639648 -5.75977 0.639648 -8.7041v-466.943c0 -2.94434 -0.255859 -5.76074 -0.511719 -8.96094c-0.12793 -0.767578 -0.383789 -1.79199 -0.511719 -2.81543c-0.384766 -1.79199 -0.640625 -3.58398 -1.15234 -5.50391
     326c-0.255859 -1.02441 -0.768555 -2.04785 -1.02441 -3.07227c-0.639648 -1.66406 -1.15137 -3.2002 -1.79199 -4.86426c-0.511719 -1.02344 -1.02344 -2.04785 -1.53613 -3.07129c-0.639648 -1.53613 -1.40723 -2.94434 -2.30371 -4.48047
     327c-0.511719 -0.895508 -1.28027 -1.91992 -1.91992 -2.94434c-0.767578 -1.2793 -1.66406 -2.55957 -2.6875 -3.96777c-0.768555 -0.895508 -1.53613 -1.79199 -2.30469 -2.81543c-1.02344 -1.02441 -2.04785 -2.30469 -3.32812 -3.45605
     328c-0.767578 -0.896484 -1.66406 -1.79199 -2.6875 -2.68848c-1.02441 -0.895508 -2.30371 -2.04785 -3.71191 -3.07227c-0.768555 -0.767578 -1.79199 -1.53516 -2.81641 -2.30371l-1.15137 -0.767578l-702.208 -467.072
     329c-11.1367 -7.42383 -23.8086 -11.0078 -36.6084 -11.0078s-25.4717 3.58398 -36.7363 11.2637l-702.208 467.072c-0.255859 0.255859 -0.639648 0.511719 -1.02344 0.767578l-2.94434 2.30469c-1.28027 0.895508 -2.55957 2.04785 -3.71191 3.07129
     330c-0.895508 0.896484 -1.79199 1.79199 -2.6875 2.68848c-1.02441 1.02344 -2.17676 2.30371 -3.2002 3.45605c-0.768555 0.895508 -1.53613 1.79199 -2.30469 2.81543c-0.895508 1.28027 -1.79199 2.56055 -2.6875 3.96875
     331c-0.768555 0.895508 -1.4082 1.91992 -1.91992 2.94336c-0.896484 1.53613 -1.66406 2.94434 -2.30371 4.48047c-0.512695 0.895508 -1.02441 1.91992 -1.53613 3.07129c-0.640625 1.66406 -1.15234 3.2002 -1.66406 4.86426
     332c-0.383789 0.896484 -0.768555 1.91992 -1.02441 3.07227c-0.511719 1.91992 -0.767578 3.71191 -1.15137 5.50391c-0.128906 1.02441 -0.384766 2.04785 -0.512695 2.94434c-0.383789 2.81543 -0.639648 5.75977 -0.639648 8.57617v466.943
     333c0 2.94434 0.255859 5.75977 0.639648 8.7041c0.12793 0.896484 0.383789 1.79199 0.512695 2.81641c0.383789 1.91992 0.639648 3.71191 1.15137 5.50391c0.255859 1.15137 0.640625 2.17578 1.02441 3.2002c0.511719 1.53516 1.02344 3.19922 1.66406 4.86328
     334c0.511719 1.02441 1.02344 2.04785 1.53613 3.2002c0.639648 1.53613 1.40723 2.81641 2.30371 4.48047c0.639648 0.895508 1.28027 1.91992 1.91992 2.94336c0.767578 1.28027 1.79199 2.68848 2.6875 3.96875c0.640625 1.02344 1.4082 1.79199 2.30469 2.81543
     335c1.02344 1.28027 2.04785 2.43164 3.2002 3.58398c0.895508 0.768555 1.79199 1.66406 2.6875 2.68848c1.15234 1.02344 2.43164 2.04785 3.71191 3.07129l2.94434 2.17676c0.383789 0.255859 0.767578 0.639648 1.15137 0.895508l702.208 466.944
     336c22.1445 14.7197 51.0723 14.7197 73.2168 0l702.08 -467.2c0.383789 -0.255859 0.767578 -0.639648 1.15137 -0.896484c0.896484 -0.767578 1.91992 -1.53516 2.81641 -2.30371c1.2793 -0.895508 2.55957 -1.91992 3.71191 -3.07227
     337c1.02344 -0.895508 1.91992 -1.79199 2.6875 -2.6875c1.15234 -1.02441 2.17676 -2.17578 3.32812 -3.45605c0.768555 -0.896484 1.53613 -1.79199 2.30469 -2.81641c0.895508 -1.2793 1.79199 -2.55957 2.6875 -3.96777
     338c0.639648 -0.895508 1.4082 -1.91992 1.91992 -2.94434c0.896484 -1.53516 1.66406 -2.81543 2.30371 -4.35156c0.512695 -1.02441 1.02441 -2.04785 1.53613 -3.2002c0.640625 -1.66406 1.15234 -3.2002 1.79199 -4.73535
     339c0.255859 -1.02441 0.768555 -2.04883 1.02441 -3.2002c0.511719 -1.79199 0.767578 -3.58398 1.15137 -5.50391c0.128906 -0.896484 0.384766 -1.79199 0.512695 -2.81641zM1090.05 1601.28v-307.328l286.208 -190.977l231.168 154.24zM957.952 1601.28l-517.248 -344.064
     340l231.04 -154.24l286.208 191.104v307.2zM387.84 1133.95v-220.416l165.12 110.208zM957.952 446.208v307.328l-286.208 190.976l-231.04 -154.111zM1024 867.84l233.472 155.904l-233.472 155.904l-233.472 -155.904zM1090.05 446.208l517.376 344.064l-231.168 154.111
     341l-286.208 -190.976v-307.2zM1660.29 913.536v220.416l-165.248 -110.208z" />
     342    <glyph glyph-name="uniF475" unicode="&#xf475;"
     343d="M1024 1792c424.064 0 768 -343.936 768 -768s-343.936 -768 -768 -768s-768 343.936 -768 768s343.936 768 768 768zM476.16 1340.54l-2.81641 3.96777c-4.60742 -7.93555 -8.83203 -16.1279 -13.1836 -24.3193l4.47949 1.02344l17.5361 6.27246l30.208 2.6875zM1024 384
     344c265.088 0 493.056 162.176 590.208 392.576l-6.52832 10.4961l14.9766 50.8154l-34.6885 25.2158l-25.3438 7.55273l-23.5518 19.8398l-55.8086 -21.1201l-52.7354 -3.07227l-39.9365 29.0566l-39.04 53.5039l-0.767578 32.5117l0.895508 54.2725l5.63184 7.55176
     345l4.86426 18.1758l22.7842 35.0723l13.3125 13.0557l18.6875 20.7363l13.0557 25.5996l36.8643 34.9443l37.7598 -0.383789l27.6484 9.59961l66.4316 7.16797l25.9844 -36.8643l24.1924 -10.4961c-8.44824 39.4248 -20.2246 77.6963 -35.585 114.049l-5.50391 5.11914
     346l-13.4395 -6.65527l-28.9277 -2.68848l-23.8086 -21.248l-25.9834 -35.0723l-50.6885 -11.6475l-23.5518 9.21582l2.6875 40.5762l13.3125 25.2158l46.4639 -2.6875l8.57617 21.8877l-24.0645 26.624l20.6084 8.32031l40.4482 22.0156l14.4639 11.6484
     347c-49.1523 77.6953 -113.664 144.256 -190.721 194.688l-4.35156 -1.79199l20.3516 -17.792l-32.8955 5.24805l-4.6084 -9.34375l21.248 -2.56055l-7.93555 -8.95996l-59.9043 -10.3682l-77.3115 -34.3037l-59.9043 -28.9277l-6.27246 59.6475l16.8965 32.6406
     348l-12.416 21.7598l-45.9521 19.4561l-22.1436 17.1523l32.1279 7.67969l69.1201 16.8955l29.8232 1.66406c-64.7676 22.1445 -132.991 36.7363 -205.056 36.7363c-146.56 0 -280.064 -51.4561 -388.096 -134.656l38.2715 1.15234l47.7441 -12.2881l32 -8.19238
     349l34.8164 7.80859l47.6152 -6.0166l29.9521 7.2959l5.63184 18.0488l28.1602 -2.94434l11.0078 -22.7842l47.6162 4.35254l-74.752 -24.7041l-36.0957 -20.8643l-55.168 -42.2402l13.6963 -14.9756l38.3994 -18.0479l27.3926 -28.0322l33.6641 34.4316l19.4551 37.8887
     350l33.0244 22.6553l33.0244 -16.7676l9.08789 -18.4316l28.9277 10.2393l10.2402 -55.168l20.4795 -20.0957l-74.752 -19.0723l-54.7842 -21.5039l42.752 11.7764l-5.24707 -17.1523l13.5674 -15.3604l11.2646 -7.16797l-45.9521 -18.6875l16.1279 18.8154l-25.9844 -5.63184
     351l-31.2314 -14.8477l-14.208 -16.5117l-34.9443 -19.3281l-25.6006 -20.2246l-9.72754 -23.4238l-32.7676 -26.752l-25.8564 -59.3916l-8.06348 -25.7285l-23.6807 47.4883l-46.208 -0.12793l-38.3994 0.255859l-49.2803 -39.6797l-6.52832 -43.5205l29.6963 -32.3838
     352l57.2158 30.7197l-14.8477 -43.5195l-40.4482 -26.1123l-39.2959 9.47266l-43.5205 18.1758l-49.9199 79.1035l-22.1436 47.2324l-5.24805 16.2559l7.42383 -66.0479l-0.639648 -17.1523l-8.19238 10.2402l-4.99219 16.6396l-9.9834 12.416l-5.12012 22.9121
     353l-0.255859 35.9678l-26.752 46.3359c-17.4082 -58.1113 -29.5684 -118.399 -29.5684 -182.144c0 -295.936 202.88 -543.232 476.16 -616.192l-4.0957 12.6729l-9.60059 137.6l-11.1357 62.8477l-67.3281 65.792l-31.7441 56.3203l-10.624 27.9043l7.67969 16.5117
     354l14.0801 52.9922l7.55273 61.6953l-8.32031 4.73633l-14.9756 -10.8799l-19.9688 9.34375l13.4404 6.27246l59.9043 13.8242l39.4238 17.6631l-2.43262 -26.752l14.5928 24.1924l19.7119 -6.91211l67.7119 -21.6318l48.5117 -33.6641l34.9443 -19.3281l8.31934 -5.50391
     355l-8.19141 -48.7676l33.4082 9.47168l-8.32031 -16.6396l47.3604 -10.1123l48 -3.96777l31.3594 -19.7119l1.28027 -57.3447l-22.7842 -65.4072l-27.6475 -68.0967l-50.1768 -30.8477l-39.9355 -90.8799l-36.0957 5.12012l17.1514 -23.4238l-1.91992 -16.5127
     356l-33.2803 -26.4961c19.4561 -1.79199 38.1445 -5.8877 57.9844 -5.8877z" />
     357    <glyph glyph-name="uniF432" unicode="&#xf432;"
     358d="M1408 640l-448 448l-448 -448l-128 128l576 576l576 -576z" />
     359    <glyph glyph-name="uniF210" unicode="&#xf210;"
     360d="M1024 2048c565.632 0 1024 -458.496 1024 -1024c0 -565.632 -458.368 -1024 -1024 -1024c-100.864 0 -198.016 14.7197 -290.176 42.1123c38.7842 61.4395 81.2793 140.288 103.04 219.264c12.6719 45.5684 72.0635 281.6 72.0635 281.6
     361c35.7119 -67.9678 139.648 -127.743 250.24 -127.743c329.088 0 552.448 300.159 552.448 701.823c0 303.744 -257.28 586.624 -648.192 586.624c-486.527 0 -731.904 -348.8 -731.904 -639.744c0 -176.128 66.5605 -332.928 209.664 -391.168
     362c23.4248 -9.59961 44.416 -0.511719 51.2002 25.4727c4.73633 18.0479 16 63.4873 20.9922 82.1758c6.78418 25.7275 4.0957 34.6875 -14.8477 57.2158c-41.0879 48.6406 -67.4561 111.488 -67.4561 200.704c0 258.816 193.536 490.496 504.063 490.496
     363c274.944 0 426.112 -168.064 426.112 -392.448c0 -295.296 -130.432 -544.384 -324.608 -544.384c-107.136 0 -187.264 88.5762 -161.664 197.12c30.7207 129.664 90.4961 269.824 90.4961 363.392c0 83.8398 -44.9277 153.729 -138.111 153.729
     364c-109.44 0 -197.504 -113.28 -197.504 -265.088c0 -96.6406 32.7676 -162.049 32.7676 -162.049s-112.128 -474.88 -131.712 -557.951c-18.4316 -77.8242 -20.7363 -163.456 -17.9199 -235.137c-360.832 158.336 -612.992 518.784 -612.992 937.984
     365c0 565.504 458.496 1024 1024 1024z" />
     366    <glyph glyph-name="uniF437" unicode="&#xf437;"
     367d="M1280 1792c141.312 0 256 -114.688 256 -256v-1024c0 -141.312 -114.688 -256 -256 -256h-512c-141.312 0 -256 114.688 -256 256v1024c0 141.312 114.688 256 256 256h512zM1024 384c70.7842 0 128 57.2158 128 128s-57.2158 128 -128 128
     368c-70.6562 0 -128 -57.2158 -128 -128s57.3438 -128 128 -128zM1408 768v768h-768v-768h768z" />
     369    <glyph glyph-name="uniF468" unicode="&#xf468;"
     370d="M256 256v1536h256v-1536h-256zM1536 1664h256v-768h-256c-256 0 -256 128 -512 128s-256 -128 -384 -128v768c128 0 128 128 384 128s256 -128 512 -128z" />
     371    <glyph glyph-name="uniF107" unicode="&#xf107;"
     372d="M1088 1792c176.768 0 320 -143.232 320 -320v-384c0 -131.2 -78.9756 -243.584 -192 -292.992v150.912c39.04 35.2002 64 85.6318 64 142.08v384c0 105.856 -86.1436 192 -192 192s-192 -86.1436 -192 -192v-384c0 -56.4482 24.96 -106.88 64 -142.08v-150.912
     373c-112.896 49.4082 -192 161.792 -192 292.992v384c0 176.768 143.232 320 320 320zM960 1380.99c112.896 -49.4082 192 -161.792 192 -292.992v-384c0 -176.768 -143.232 -320 -320 -320s-320 143.232 -320 320v384c0 131.2 79.1035 243.584 192 292.992v-150.912
     374c-39.04 -35.2002 -64 -85.6318 -64 -142.08v-384c0 -105.856 86.1436 -192 192 -192s192 86.1436 192 192v384c0 56.4482 -24.96 106.88 -64 142.08v150.912z" />
     375    <glyph glyph-name="uniF442" unicode="&#xf442;"
     376d="M1280 640v256l128 128v-512h-896v896h512l-128 -128h-256v-640h640zM1024 1664h640v-640h-128v421.504l-549.504 -549.504l-90.4961 90.4961l549.504 549.504h-421.504v128z" />
     377    <glyph glyph-name="uniF221" unicode="&#xf221;"
     378d="M1664 1024c0 -55.9355 -35.9678 -102.912 -85.8877 -120.32c13.8232 -20.6074 21.8877 -45.0557 21.8877 -71.6797c0 -55.8076 -35.9678 -102.784 -85.8877 -120.32c13.8232 -20.6074 21.8877 -45.0557 21.8877 -71.6797c0 -70.6562 -57.3438 -128 -128 -128h-64
     379c70.6562 0 128 -57.3438 128 -128s-57.3438 -128 -128 -128h-448c-192 0 -256 128 -384 128h-128v640h192c128 0 320 256 320 640c0 0 0 128 64 128s192 -144 192 -320c0 -192 -32 -320 -32 -320h416c70.6562 0 128 -57.3438 128 -128z" />
     380    <glyph glyph-name="uniF50A" unicode="&#xf50a;"
     381d="M1856 1024c35.3281 0 64 -28.6719 64 -64s-28.6719 -64 -64 -64h-204.928c-9.85645 -48.7676 -26.624 -94.5918 -46.8486 -138.624c116.608 -134.528 187.776 -309.376 187.776 -501.376v-64c0 -35.2002 -28.6719 -64 -64 -64s-64 28.7998 -64 64v64
     382c0 144.896 -48.7676 277.888 -130.048 385.152c-116.736 -155.265 -300.672 -257.152 -509.952 -257.152c-208.768 0 -392.448 101.504 -509.312 256.128c-81.2803 -106.88 -130.688 -239.231 -130.688 -384.128v-64c0 -35.2002 -28.6719 -64 -64 -64s-64 28.7998 -64 64v64
     383c0 192 71.2959 366.72 187.904 501.376c-20.3525 44.0322 -36.9922 89.8564 -46.9766 138.624h-204.928c-35.3281 0 -64 28.6719 -64 64s28.6719 64 64 64h192c0 61.6963 12.1602 119.936 29.0557 176c-98.1758 129.024 -157.056 289.408 -157.056 464v64
     384c0 35.3281 28.6719 64 64 64s64 -28.6719 64 -64v-64c0 -353.408 286.592 -640 640 -640c353.536 0 640 286.592 640 640v64c0 35.3281 28.6719 64 64 64s64 -28.6719 64 -64v-64c0 -173.952 -58.4961 -333.824 -156.032 -462.592
     385c17.2803 -56.3203 28.0322 -115.328 28.0322 -177.408h192zM1024 1152c-208.896 0 -388.352 126.08 -467.84 305.92c116.864 126.08 282.496 206.08 467.84 206.08c185.472 0 350.976 -80 467.84 -206.08c-79.4883 -179.84 -258.815 -305.92 -467.84 -305.92z" />
     386    <glyph glyph-name="uniF455" unicode="&#xf455;"
     387d="M1024 1792c424.064 0 768 -343.936 768 -768s-343.936 -768 -768 -768c-424.192 0 -768 343.936 -768 768s343.808 768 768 768zM1024 1536c-70.7842 0 -128 -57.3438 -128 -128s57.2158 -128 128 -128c70.6562 0 128 57.3438 128 128s-57.3438 128 -128 128zM1280 512
     388v128h-160v512h-320.128v-128h128.128v-384h-160v-128h512z" />
     389    <glyph glyph-name="uniF223" unicode="&#xf223;"
     390d="M1105.28 1232.51v92.9287c0 44.1592 -36.4805 79.8711 -81.2803 79.8711s-81.2803 -35.7119 -81.2803 -79.8711l-0.383789 -481.024c-2.55957 -184.192 -155.008 -332.416 -342.912 -332.416c-189.696 0 -343.424 150.912 -343.424 337.28v209.151h262.784v-206.592
     391c0 -43.9043 36.3516 -79.7441 81.2803 -79.7441c44.9277 0 81.2793 35.7119 81.2793 79.7441v487.168c6.65625 180.48 157.185 324.992 342.656 324.992c186.112 0 337.152 -145.536 342.656 -327.04v-106.624l-156.416 -45.8242zM1529.22 1058.43h262.784v-209.151
     392c0 -186.368 -153.728 -337.28 -343.424 -337.28c-188.544 0 -341.632 149.376 -343.296 334.08v210.304l104.96 -48l156.288 45.8242v-211.84c0 -44.2881 36.3516 -80 81.4072 -80c44.9287 0 81.2803 35.7119 81.2803 80v216.063z" />
     393    <glyph glyph-name="uniF212" unicode="&#xf212;"
     394d="M1658.75 1791.87c184.192 -5.37598 270.976 -123.776 260.352 -355.072c-7.93555 -172.928 -129.792 -409.472 -365.439 -710.016c-243.584 -313.729 -449.792 -470.784 -618.368 -470.784c-104.448 0 -192.896 95.6162 -264.96 286.72
     395c-48.2559 175.232 -96.5117 350.336 -144.64 525.568c-53.6318 190.976 -111.232 286.592 -172.672 286.592c-13.4404 0 -60.416 -27.7764 -140.673 -83.584l-84.3516 107.648c88.4482 77.0557 175.616 154.111 261.504 231.168
     396c117.888 100.991 206.464 154.111 265.472 159.487c139.521 13.3125 225.28 -81.2793 257.536 -283.392c34.8164 -218.24 58.8799 -353.92 72.4482 -407.04c40.1924 -180.992 84.4805 -271.36 132.736 -271.36c37.5039 0 93.8232 58.752 169.088 176.128
     397c75.0078 117.376 115.2 206.849 120.576 268.16c10.624 101.376 -29.4404 152.192 -120.576 152.192c-43.0078 0 -87.2959 -9.98438 -132.736 -29.1846c88.0645 285.952 256.512 424.704 504.704 416.769z" />
     398    <glyph glyph-name="uniF206" unicode="&#xf206;"
     399d="M729.6 1152h550.4s12.7998 -38.4004 12.7998 -89.5996c0 -332.801 -230.399 -563.2 -563.2 -563.2c-320 0 -588.8 268.8 -588.8 588.8s281.601 588.8 588.8 588.8c153.601 0 294.4 -51.2002 384 -153.6l-153.6 -153.601c-38.4004 25.6006 -102.4 76.8008 -230.4 76.8008
     400c-204.8 0 -371.199 -166.4 -371.199 -371.2s166.399 -371.2 371.199 -371.2c230.4 0 320 166.4 332.801 243.2h-332.801v204.8zM1664 1152h128v-128h-128v-128h-128v128h-128v128h128v128h128v-128z" />
     401    <glyph glyph-name="uniF407" unicode="&#xf407;"
     402d="M1280 1536l256 -128v-128h-128h-128h-128h-128h-128h-128h-128h-128h-128v128l256 128c0 70.7842 57.3438 128 128 128h384c70.7842 0 128 -57.2158 128 -128zM1088 1408c35.3281 0 64 28.6719 64 64s-28.6719 64 -64 64h-256c-35.3281 0 -64 -28.6719 -64 -64
     403s28.6719 -64 64 -64h256zM1280 1216h128v-704c0 -70.7842 -57.2158 -128 -128 -128h-640c-70.6562 0 -128 57.2158 -128 128v704h128v-704h128v704h128v-704h128v704h128v-704h128v704z" />
     404    <glyph glyph-name="uniF414" unicode="&#xf414;"
     405d="M1996.03 601.984c116.992 -190.208 29.6953 -345.984 -193.536 -345.984h-1556.99c-223.231 0 -310.528 155.776 -193.536 345.984l759.552 1236.99c116.864 190.336 308.097 190.336 424.961 0zM1024 512c70.7842 0 128 57.2158 128 128s-57.2158 128 -128 128
     406c-70.6562 0 -128 -57.2158 -128 -128s57.3438 -128 128 -128zM1113.22 896l51.584 640h-281.6l51.2002 -640h178.815z" />
     407    <glyph glyph-name="uniF50E" unicode="&#xf50e;"
     408d="M384 896v256h1280v-256h-1280z" />
     409    <glyph glyph-name="uniF461" unicode="&#xf461;"
     410d="M1024 384l-647.552 612.992c-149.376 141.312 -161.408 383.231 -27.1367 540.288c134.4 157.184 364.416 169.855 513.792 28.5439l160.896 -152.32l160.768 152.32c149.248 141.184 379.393 128.64 513.792 -28.5439
     411c134.656 -157.057 122.368 -398.977 -27.0078 -540.416z" />
     412    <glyph glyph-name="uniF470" unicode="&#xf470;"
     413d="M1536 1152c70.7842 0 128 -57.3438 128 -128v-640c0 -70.7842 -57.2158 -128 -128 -128h-1024c-70.6562 0 -128 57.2158 -128 128v640c0 70.6562 57.3438 128 128 128v128c0 282.752 229.248 512 512 512s512 -229.248 512 -512v-128zM768 1152h512v128
     414c0 141.312 -114.688 256 -256 256s-256 -114.688 -256 -256v-128z" />
     415    <glyph glyph-name="uniF50C" unicode="&#xf50c;"
     416d="M1479.55 819.2c98.5605 -32 203.137 -51.2002 312.448 -51.2002v-512c-848.256 0 -1536 687.744 -1536 1536h512c0 -162.048 38.5283 -314.752 105.856 -450.816l-189.185 -189.184c136.192 -235.008 344.96 -422.4 595.328 -532.224z" />
     417    <glyph glyph-name="uniF220" unicode="&#xf220;"
     418d="M1856.77 834.048c32.3848 -65.6641 50.6885 -138.88 50.3047 -217.344c0 -269.696 -218.88 -488.704 -488.576 -488.704c-83.584 0 -161.92 21.376 -230.656 58.1123c-50.4316 -8.83203 -102.016 -13.8242 -154.496 -13.8242
     419c-465.279 0 -842.624 377.216 -842.624 842.496c0 58.2402 6.14453 114.688 17.2803 169.6c-42.4961 72.1924 -67.0723 156.8 -67.0723 246.912c0 269.824 218.88 488.704 488.704 488.704c95.7441 0 184.704 -27.3916 260.225 -75.0078
     420c46.4639 7.80762 94.5918 12.416 143.871 12.416c465.408 0 842.624 -377.344 842.624 -842.624c0 -62.0801 -6.65527 -122.752 -19.584 -180.736zM1466.11 612.096c38.9121 55.5527 58.624 118.656 58.752 188.16c0 58.2402 -11.2646 107.904 -34.1758 148.353
     421c-22.9121 40.3193 -54.7842 73.8555 -95.2324 100.224c-39.168 25.7275 -87.8076 48.1279 -143.744 66.0479c-55.4238 17.9199 -118.271 34.1758 -186.496 48.6396c-53.7598 12.416 -93.0557 21.8887 -116.479 28.6729c-23.04 6.14355 -45.4404 15.2314 -67.8398 26.3672
     422c-21.8887 10.624 -38.5283 23.5527 -50.4326 38.0166c-11.1357 13.9521 -16.7676 30.3359 -16.7676 49.2803c0 31.2314 16.8955 57.4717 52.2236 80.5117c36.3525 23.5518 85.6318 35.9678 146.048 35.9678c64.8965 0 112.384 -11.2637 140.544 -32.6396
     423c29.1846 -21.6318 54.2725 -53.6318 75.5205 -93.3125c18.5596 -31.3594 34.9434 -53.248 50.6875 -67.2002c16.3838 -14.5918 40.5762 -22.3994 71.9365 -22.3994c34.9434 0 63.8721 12.416 86.9121 36.4795c23.04 23.4248 34.6875 50.8164 34.6875 81.1523
     424c0 31.3604 -9.08789 63.3604 -25.2158 95.7441c-17.2803 32.3838 -44.7998 63.1035 -81.9199 92.2881c-36.8643 28.5439 -83.8398 52.0957 -139.008 69.5039c-55.8086 16.7676 -121.729 25.5996 -196.736 25.5996c-94.7197 0 -177.536 -13.1836 -247.424 -39.04
     425c-70.5283 -26.3682 -125.952 -64.3838 -163.584 -113.664c-38.0166 -49.2793 -56.96 -106.496 -56.96 -170.239c0 -67.2002 17.792 -123.776 54.2715 -169.217c35.0723 -44.1592 83.9688 -79.8721 144.385 -105.728c58.752 -25.2158 133.247 -47.3604 220.672 -66.0479
     426c64.2559 -13.3125 115.712 -26.2402 154.239 -38.0166c36.8643 -11.2637 67.3281 -27.9033 89.9844 -49.2793c22.1436 -20.7363 32.6396 -46.9766 32.6396 -80.1279c0 -42.3682 -20.2236 -76.8008 -62.0801 -105.345c-43.1357 -29.0557 -100.352 -43.9033 -169.728 -43.9033
     427c-50.9443 0 -92.416 7.16797 -122.624 21.6318c-30.3359 13.9521 -54.2715 32.5117 -70.5283 54.2715c-17.2793 22.6562 -33.4072 51.4561 -48.6396 85.7607c-13.4404 31.3594 -29.5684 55.8076 -49.2803 72.0635c-20.7354 17.2803 -45.3115 25.7285 -74.4961 25.7285
     428c-35.0713 0 -64.7676 -10.3682 -87.8076 -32.3848c-23.5518 -21.8877 -35.3281 -48.6396 -35.3281 -79.6152c0 -48.8965 17.9199 -100.608 53.8877 -152.192c35.0723 -50.9443 82.3047 -92.416 138.752 -123.136c79.3604 -41.8564 180.864 -63.1045 301.696 -63.1045
     429c100.736 0 189.44 15.4883 263.04 46.208c75.3926 30.9766 132.225 74.4961 171.648 129.92z" />
     430    <glyph glyph-name="uniF415" unicode="&#xf415;"
     431d="M1408 1024h512v-256h-310.016c-98.8164 -225.92 -323.584 -384 -585.984 -384c-176.768 0 -335.488 72.832 -451.072 188.928l0.640625 0.640625c-50.0488 50.0479 -50.0488 130.943 0 180.991c50.0479 50.0488 130.943 50.1768 180.991 0
     432c69.376 -69.6318 163.456 -114.56 269.44 -114.56c212.096 0 384 171.904 384 384zM1024 1408c-212.096 0 -384 -171.904 -384 -384h-512v256h310.016c98.8164 225.92 323.712 384 585.984 384c176.896 0 335.488 -72.96 451.072 -188.928
     433c50.0479 -50.0479 50.0479 -130.944 0 -180.992s-130.944 -50.0479 -180.992 0l-0.639648 -0.639648c-69.376 69.6318 -163.328 114.56 -269.44 114.56zM832 1024c0 106.112 86.0156 192 192 192c106.112 0 192 -85.8877 192 -192s-85.8877 -192 -192 -192
     434c-105.984 0 -192 85.8877 -192 192z" />
     435    <glyph glyph-name="uniF207" unicode="&#xf207;"
     436d="M604.672 256h-329.216v990.72h329.216v-990.72zM440.064 1381.89h-2.04883c-110.464 0 -182.016 76.1602 -182.016 171.137c0 97.1514 73.5996 171.136 186.368 171.136c112.512 0 181.888 -74.1123 184.063 -171.136c0 -94.9766 -71.5518 -171.137 -186.367 -171.137z
     437M1792 256h-329.216v530.048c0 133.12 -47.3604 224 -166.656 224c-91.1357 0 -145.28 -61.1836 -169.088 -120.32c-8.57617 -21.2471 -10.752 -50.9434 -10.752 -80.5117v-553.216h-329.344s4.35156 897.792 0 990.72h329.344v-140.416
     438c43.7764 67.4561 121.984 163.584 296.448 163.584c216.704 0 379.264 -141.567 379.264 -445.823v-568.064z" />
     439    <glyph glyph-name="uniF500" unicode="&#xf500;"
     440d="M2048 0h-1920l960 959.872z" />
     441    <glyph glyph-name="uniF302" unicode="&#xf302;"
     442d="M1024 1536h512v-512l-768 -768l-512 512zM1280 1152c70.7842 0 128 57.2158 128 128s-57.2158 128 -128 128s-128 -57.2158 -128 -128s57.2158 -128 128 -128z" />
     443    <glyph glyph-name="uniF108" unicode="&#xf108;"
     444d="M1664 1536c141.312 0 256 -114.688 256 -256v-384c0 -141.312 -114.688 -256 -256 -256h-128v-448l-448 448h-331.008l128 128h395.008c211.712 0 384 172.288 384 384v384zM1280 1792c141.312 0 256 -114.688 256 -256v-384c0 -141.312 -114.688 -256 -256 -256h-448
     445l-448 -448v448h-128c-141.312 0 -256 114.688 -256 256v384c0 141.312 114.688 256 256 256h1024z" />
     446    <glyph glyph-name="uniF405" unicode="&#xf405;"
     447d="M1536 1408l-320 -320l320 -320l-128 -128l-320 320l-320 -320l-128 128l320 320l-320 320l128 128l320 -320l320 320z" />
     448    <glyph glyph-name="uniF501" unicode="&#xf501;"
     449d="M0 128v1920l960 -960z" />
     450    <glyph glyph-name="uniF50D" unicode="&#xf50d;"
     451d="M1024.13 896c-105.984 0 -192.128 86.0156 -192.128 192v512c0 105.856 86.1436 192 192.128 192c106.112 0 191.872 -86.1436 191.872 -192v-512c0 -105.984 -85.7598 -192 -191.872 -192zM1401.47 1024h192c-27.3916 -244.48 -206.464 -441.984 -441.472 -496v-272
     452h-256v272c-234.88 54.0156 -414.08 251.52 -441.472 496h192c30.5918 -181.504 187.52 -320 377.472 -320c190.208 0 347.008 138.496 377.472 320z" />
     453    <glyph glyph-name="uniF503" unicode="&#xf503;"
     454d="M2048 2048v-1920l-960 960z" />
     455    <glyph glyph-name="uniF101" unicode="&#xf101;"
     456d="M1024 1792c424.064 0 768 -343.936 768 -768s-343.936 -768 -768 -768s-768 343.936 -768 768s343.936 768 768 768zM1024 768c141.312 0 256 114.688 256 256s-114.688 256 -256 256s-256 -114.688 -256 -256s114.688 -256 256 -256z" />
     457    <glyph glyph-name="uniF204" unicode="&#xf204;"
     458d="M1182.21 1271.81h328.704l-14.4639 -302.72h-314.24v-841.088h-320.128v841.088h-222.08v302.72h222.08v258.561c0 203.008 131.456 389.632 434.176 389.632c122.496 0 212.992 -11.6484 212.992 -11.6484l-7.04004 -282.624s-92.5439 0.640625 -193.536 0.640625
     459c-108.928 0 -126.464 -50.3037 -126.464 -133.504c0 -12.416 0 -15.3604 0 -13.9521v-207.104z" />
     460    <glyph glyph-name="uniF444" unicode="&#xf444;"
     461d="M1600 640c-70.7842 0 -128 -57.2158 -128 -128s57.2158 -128 128 -128h64v-128h-1024c-141.312 0 -256 114.688 -256 256v1024c0 141.312 114.688 256 256 256h1024v-1152h-64zM640 384h817.92c-30.7197 34.0479 -49.9199 78.5918 -49.9199 128
     462s19.2002 93.9521 49.9199 128h-817.92c-70.6562 0 -128 -57.2158 -128 -128s57.3438 -128 128 -128z" />
     463    <glyph glyph-name="uniF416" unicode="&#xf416;"
     464d="M1088 1792c176.768 0 320 -143.232 320 -320v-640c0 -247.424 -200.576 -448 -448 -448s-448 200.576 -448 448v320h128v-320c0 -176.768 143.232 -320 320 -320c176.64 0 320 143.232 320 320v640c0 105.984 -86.0156 192 -192 192c-106.112 0 -192 -86.0156 -192 -192
     465v-512c0 -35.3281 28.6719 -64 64 -64s64 28.6719 64 64v451.968h128v-451.968c0 -105.984 -86.0156 -192 -192 -192c-106.112 0 -192 86.0156 -192 192v512c0 176.768 143.232 320 320 320z" />
     466    <glyph glyph-name="uniF459" unicode="&#xf459;"
     467d="M1920 1664v-1280l-768 480v-480l-1024 640l1024 640v-480z" />
     468    <glyph glyph-name="uniF441" unicode="&#xf441;"
     469d="M1664 1024c141.312 0 256 -114.688 256 -256s-114.688 -256 -256 -256h-512v256h256l-384 384l-384 -384h256v-256h-512c-141.312 0 -256 114.688 -256 256s114.688 256 256 256h6.40039c-4.09668 20.7363 -6.40039 42.1123 -6.40039 64c0 176.768 143.232 320 320 320
     470c89.3438 0 169.984 -36.7363 227.968 -95.8721c60.7998 131.84 193.408 223.872 348.032 223.872c211.968 0 384 -171.904 384 -384c0 -45.1836 -9.21582 -87.8076 -23.5518 -128h23.5518z" />
     471    <glyph glyph-name="uniF506" unicode="&#xf506;"
     472d="M768 1920l489.344 -489.472l-640 -640l-268.928 269.056c-49.792 49.792 -49.792 131.2 0 180.992l292.864 292.735l-1.28027 2.68848s128 128 128 384zM1738.24 565.76c33.1514 -32.7676 53.7598 -78.208 53.7598 -128.64c0 -99.9678 -81.1523 -181.12 -181.12 -181.12
     473c-50.4316 0 -95.7441 20.6084 -128.64 53.7598l-330.24 330.24v128l-64 64c-35.2002 35.2002 -104.704 23.2959 -154.496 -26.4961l-75.0078 -75.0078c-49.792 -49.792 -131.2 -49.792 -180.992 0l-14.8477 14.8477l640 640l14.8477 -14.8477
     474c49.792 -49.792 49.792 -131.2 0 -180.992l-75.0078 -75.0078c-49.792 -49.792 -61.6963 -119.296 -26.4961 -154.496l64 -64h128zM1610.88 373.12c35.3281 0 64 28.6719 64 64s-28.6719 64 -64 64s-64 -28.6719 -64 -64s28.6719 -64 64 -64z" />
     475    <glyph glyph-name="uniF105" unicode="&#xf105;"
     476d="M1408 1408c0 -167.04 -107.264 -307.584 -256 -360.448v-535.552l-256 -128v663.552c-148.864 52.8643 -256 193.408 -256 360.448c0 212.096 171.904 384 384 384c211.968 0 384 -171.904 384 -384z" />
     477    <glyph glyph-name="uniF473" unicode="&#xf473;"
     478d="M384 1664h1280v-1280h-1280v1280zM768 1408c-70.6562 0 -128 -57.3438 -128 -128s57.3438 -128 128 -128s128 57.3438 128 128s-57.3438 128 -128 128zM1536 512v576l-128 192l-448 -672l-192 288l-256 -384h1024z" />
     479    <glyph glyph-name="uniF452" unicode="&#xf452;"
     480d="M512 1664l1024 -640l-1024 -640v1280z" />
     481    <glyph glyph-name="uniF408" unicode="&#xf408;"
     482d="M1792 1150.72l-475.904 -329.983l182.528 -535.04l-474.624 331.903l-474.624 -331.903l182.528 535.04l-475.904 329.983l587.52 -1.02344l180.48 535.68l180.48 -535.68z" />
     483    <glyph glyph-name="uniF450" unicode="&#xf450;"
     484d="M768 1024l1024 640v-1280zM256 384v1280h384v-1280h-384z" />
     485    <glyph glyph-name="uniF517" unicode="&#xf517;"
     486d="M1408 1152l384 384v-1024l-384 384v-256c0 -70.7842 -57.2158 -128 -128 -128h-896c-70.6562 0 -128 57.2158 -128 128v768c0 70.6562 57.3438 128 128 128h896c70.7842 0 128 -57.3438 128 -128v-256z" />
     487    <glyph glyph-name="uniF106" unicode="&#xf106;"
     488d="M256 896v640h640v-640c0 -282.752 -229.248 -512 -512 -512v256c141.312 0 256 114.688 256 256h-384zM1152 1536h640v-640c0 -282.752 -229.248 -512 -512 -512v256c141.312 0 256 114.688 256 256h-384v640z" />
     489    <glyph glyph-name="uniF208" unicode="&#xf208;"
     490d="M1664 1920c141.312 0 256 -114.688 256 -256v-1280c0 -141.312 -114.688 -256 -256 -256h-1280c-141.312 0 -256 114.688 -256 256v1280c0 141.312 114.688 256 256 256h1280zM663.168 384v792.96h-263.552v-792.96h263.552zM531.328 1285.25
     491c91.9043 0 149.12 60.9277 149.12 136.96c-1.66406 77.6963 -57.2158 136.96 -147.328 136.96c-90.2402 0 -149.12 -59.2637 -149.12 -136.96c0 -76.0322 57.2158 -136.96 145.664 -136.96h1.66406zM1613.44 384v454.656c0 243.456 -130.049 356.863 -303.488 356.863
     492c-139.776 0 -202.496 -76.9277 -237.44 -130.943v112.384h-263.552c3.45605 -74.3682 0 -792.96 0 -792.96h263.552v442.88c0 23.6797 1.79199 47.3604 8.57617 64.1279c19.0723 47.3604 62.4639 96.3838 135.296 96.3838c95.4883 0 133.504 -72.7031 133.504 -179.199
     493v-424.192h263.553z" />
     494    <glyph glyph-name="uniF304" unicode="&#xf304;"
     495d="M1024 1152c-141.312 0 -256 114.688 -256 256s114.688 256 256 256s256 -114.688 256 -256s-114.688 -256 -256 -256zM1152 1024c211.968 0 384 -171.904 384 -384v-256h-1024v256c0 212.096 172.032 384 384 384h256z" />
     496    <glyph glyph-name="uniF225" unicode="&#xf225;"
     497d="M655.104 1857.54l368.896 -307.968l-531.456 -328.192l-364.544 291.84zM128 929.536l364.544 291.84l531.456 -328.064l-368.896 -308.096zM1024 893.312l531.456 328.064l364.544 -291.84l-527.232 -344.32zM1920 1513.22l-364.544 -291.84l-531.456 328.192
     498l368.768 307.968zM1025.02 826.88l369.92 -306.944l158.464 103.297v-115.713l-528.384 -317.056l-528.257 317.056v115.713l158.336 -103.297z" />
     499    <glyph glyph-name="uniF103" unicode="&#xf103;"
     500d="M1152 1408h896v-896h-896v896zM128 1024v384h896v-384h-896zM640 512v384h384v-384h-384zM128 512v384h384v-384h-384z" />
     501    <glyph glyph-name="uniF431" unicode="&#xf431;"
     502d="M1408 1280l128 -128l-576 -576l-576 576l128 128l448 -448z" />
     503    <glyph glyph-name="uniF200" unicode="&#xf200;"
     504d="M1024 2048c565.504 0 1024 -458.496 1024 -1024c0 -452.224 -293.12 -835.712 -699.776 -971.392c-51.9678 -9.98438 -70.3994 21.7598 -70.3994 49.2793c0 33.4082 1.2793 144 1.2793 280.704c0 95.7441 -32.7676 158.208 -69.5039 189.696
     505c228.097 25.3438 467.456 112 467.456 505.344c0 111.744 -39.5518 203.136 -105.088 274.688c10.4961 25.8555 45.6963 130.048 -10.2402 270.976c0 0 -85.8877 27.5205 -281.344 -104.96c-81.792 22.7842 -169.344 34.0479 -256.384 34.4316
     506c-87.04 -0.383789 -174.592 -11.6475 -256.384 -34.4316c-195.584 132.48 -281.601 104.96 -281.601 104.96c-55.6797 -140.928 -20.4795 -244.992 -9.85547 -270.976c-65.5361 -71.5527 -105.472 -162.944 -105.472 -274.688c0 -392.32 239.104 -480.384 466.432 -506.112
     507c-29.3125 -25.7275 -55.6797 -70.6553 -65.0244 -136.96c-58.2393 -26.2393 -206.72 -71.2959 -297.983 85.248c0 0 -54.1445 98.1768 -156.929 105.473c0 0 -100.096 1.2793 -7.04004 -62.208c0 0 67.0723 -31.4883 113.664 -150.017c0 0 60.0322 -198.912 344.96 -137.216
     508c0.512695 -85.248 1.4082 -149.76 1.4082 -173.952c0 -27.2637 -18.6875 -58.752 -69.8877 -49.5361c-406.912 135.425 -700.288 519.168 -700.288 971.648c0 565.504 458.496 1024 1024 1024z" />
     509    <glyph glyph-name="uniF421" unicode="&#xf421;"
     510d="M384 896v256h1152v-256h-1152z" />
     511    <glyph glyph-name="uniF454" unicode="&#xf454;"
     512d="M640 896v128h-512v256h512v128l384 -256zM1536 2048c141.312 0 256 -114.688 256 -256v-1536c0 -141.312 -114.688 -256 -256 -256h-1024c-141.312 0 -256 114.688 -256 256v640h256v-384h1024v1280h-1024v-384h-256v384c0 141.312 114.688 256 256 256h1024zM1024 128
     513c70.7842 0 128 57.2158 128 128s-57.2158 128 -128 128c-70.6562 0 -128 -57.2158 -128 -128s57.3438 -128 128 -128z" />
     514    <glyph glyph-name="uniF213" unicode="&#xf213;"
     515d="M1536 1664c211.968 0 384 -171.904 384 -384v-512c0 -212.096 -172.032 -384 -384 -384h-1024c-212.096 0 -384 171.904 -384 384v512c0 212.096 171.904 384 384 384h1024zM768 640l640 384l-640 384v-768z" />
     516    <glyph glyph-name="uniF401" unicode="&#xf401;"
     517d="M1297.15 878.848l494.848 -494.848l-128 -128l-494.848 494.848c-94.8486 -68.9912 -210.816 -110.848 -337.152 -110.848c-318.08 0 -576 257.92 -576 576s257.92 576 576 576s576 -257.92 576 -576c0 -126.336 -41.8564 -242.304 -110.848 -337.152zM832 768
     518c247.552 0 448 200.576 448 448s-200.448 448 -448 448c-247.424 0 -448 -200.576 -448 -448s200.576 -448 448 -448zM512 1152v128h640v-128h-640z" />
     519    <glyph glyph-name="uniF436" unicode="&#xf436;"
     520d="M512 1408v128h128v-128h-128zM768 1408v128h128v-128h-128zM1024 1408v128h128v-128h-128zM1280 1536h128v-128h-128v128zM512 1152v128h128v-128h-128zM768 1152v128h128v-128h-128zM1024 1152v128h128v-128h-128zM1280 1152v128h128v-128h-128zM512 896v128h128v-128
     521h-128zM768 896v128h128v-128h-128zM1024 896v128h128v-128h-128zM1280 896v128h128v-128h-128zM512 640v128h128v-128h-128zM768 640v128h128v-128h-128zM1024 640v128h128v-128h-128zM1280 640v128h128v-128h-128z" />
     522    <glyph glyph-name="uniF434" unicode="&#xf434;"
     523d="M1152 0l896 896v-896h-896z" />
     524    <glyph glyph-name="uniF303" unicode="&#xf303;"
     525d="M960 1792c388.736 0 704 -315.136 704 -704c0 -388.736 -315.264 -704 -704 -704c-388.864 0 -704 315.264 -704 704c0 388.864 315.136 704 704 704zM960 512c317.952 0 576 257.92 576 576s-258.048 576 -576 576c-318.08 0 -576 -257.92 -576 -576
     526s257.92 -576 576 -576zM1024 1536v-421.504l297.984 -297.984l-90.4961 -90.4961l-335.488 335.488v474.496h128z" />
     527    <glyph glyph-name="uniF464" unicode="&#xf464;"
     528d="M1536 1408l-768 -384l-768 384v128h1536v-128zM0 1216l768 -384l256 128v-448h-1024v704zM1920 1152c70.7842 0 128 -57.3438 128 -128v-640c0 -70.7842 -57.2158 -128 -128 -128h-640c-70.7842 0 -128 57.2158 -128 128v640c0 70.6562 57.2158 128 128 128h640z
     529M1920 640v128h-640v-128h640z" />
     530    <glyph glyph-name="uniF109" unicode="&#xf109;"
     531d="M256 1280h384l384 384v-1280l-384 384h-384v512zM1295.49 1295.62c69.5039 -69.5039 112.512 -165.504 112.512 -271.616s-43.0078 -202.112 -112.512 -271.488l-90.4961 90.4961c46.3359 46.208 75.0078 110.208 75.0078 180.992
     532c0 70.6562 -28.6719 134.656 -75.0078 181.12zM1476.61 1476.61c115.712 -115.841 187.392 -275.841 187.392 -452.608c0 -176.896 -71.6797 -336.896 -187.392 -452.608l-90.4961 90.4961c92.6719 92.6719 149.888 220.672 149.888 362.112
     533c0 141.312 -57.2158 269.44 -149.888 361.984z" />
     534    <glyph glyph-name="uniF428" unicode="&#xf428;"
     535d="M1024 1280c141.312 0 256 -114.688 256 -256s-114.688 -256 -256 -256s-256 114.688 -256 256s114.688 256 256 256z" />
     536  </font>
     537</defs></svg>
  • src/wp-content/themes/twentysixteen/genericons/Genericons.ttf

    Cannot display: file marked as a binary type.
    svn:mime-type = application/octet-stream
  • src/wp-content/themes/twentysixteen/genericons/Genericons.woff

    Property changes on: src/wp-content/themes/twentysixteen/genericons/Genericons.ttf
    ___________________________________________________________________
    Added: svn:mime-type
    ## -0,0 +1 ##
    +application/octet-stream
    \ No newline at end of property
    Cannot display: file marked as a binary type.
    svn:mime-type = application/octet-stream
  • src/wp-content/themes/twentysixteen/genericons/LICENSE.txt

    Property changes on: src/wp-content/themes/twentysixteen/genericons/Genericons.woff
    ___________________________________________________________________
    Added: svn:mime-type
    ## -0,0 +1 ##
    +application/octet-stream
    \ No newline at end of property
     
     1                    GNU GENERAL PUBLIC LICENSE
     2                       Version 2, June 1991
     3
     4 Copyright (C) 1989, 1991 Free Software Foundation, Inc.,
     5 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
     6 Everyone is permitted to copy and distribute verbatim copies
     7 of this license document, but changing it is not allowed.
     8
     9                            Preamble
     10
     11  The licenses for most software are designed to take away your
     12freedom to share and change it.  By contrast, the GNU General Public
     13License is intended to guarantee your freedom to share and change free
     14software--to make sure the software is free for all its users.  This
     15General Public License applies to most of the Free Software
     16Foundation's software and to any other program whose authors commit to
     17using it.  (Some other Free Software Foundation software is covered by
     18the GNU Lesser General Public License instead.)  You can apply it to
     19your programs, too.
     20
     21  When we speak of free software, we are referring to freedom, not
     22price.  Our General Public Licenses are designed to make sure that you
     23have the freedom to distribute copies of free software (and charge for
     24this service if you wish), that you receive source code or can get it
     25if you want it, that you can change the software or use pieces of it
     26in new free programs; and that you know you can do these things.
     27
     28  To protect your rights, we need to make restrictions that forbid
     29anyone to deny you these rights or to ask you to surrender the rights.
     30These restrictions translate to certain responsibilities for you if you
     31distribute copies of the software, or if you modify it.
     32
     33  For example, if you distribute copies of such a program, whether
     34gratis or for a fee, you must give the recipients all the rights that
     35you have.  You must make sure that they, too, receive or can get the
     36source code.  And you must show them these terms so they know their
     37rights.
     38
     39  We protect your rights with two steps: (1) copyright the software, and
     40(2) offer you this license which gives you legal permission to copy,
     41distribute and/or modify the software.
     42
     43  Also, for each author's protection and ours, we want to make certain
     44that everyone understands that there is no warranty for this free
     45software.  If the software is modified by someone else and passed on, we
     46want its recipients to know that what they have is not the original, so
     47that any problems introduced by others will not reflect on the original
     48authors' reputations.
     49
     50  Finally, any free program is threatened constantly by software
     51patents.  We wish to avoid the danger that redistributors of a free
     52program will individually obtain patent licenses, in effect making the
     53program proprietary.  To prevent this, we have made it clear that any
     54patent must be licensed for everyone's free use or not licensed at all.
     55
     56  The precise terms and conditions for copying, distribution and
     57modification follow.
     58
     59                    GNU GENERAL PUBLIC LICENSE
     60   TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
     61
     62  0. This License applies to any program or other work which contains
     63a notice placed by the copyright holder saying it may be distributed
     64under the terms of this General Public License.  The "Program", below,
     65refers to any such program or work, and a "work based on the Program"
     66means either the Program or any derivative work under copyright law:
     67that is to say, a work containing the Program or a portion of it,
     68either verbatim or with modifications and/or translated into another
     69language.  (Hereinafter, translation is included without limitation in
     70the term "modification".)  Each licensee is addressed as "you".
     71
     72Activities other than copying, distribution and modification are not
     73covered by this License; they are outside its scope.  The act of
     74running the Program is not restricted, and the output from the Program
     75is covered only if its contents constitute a work based on the
     76Program (independent of having been made by running the Program).
     77Whether that is true depends on what the Program does.
     78
     79  1. You may copy and distribute verbatim copies of the Program's
     80source code as you receive it, in any medium, provided that you
     81conspicuously and appropriately publish on each copy an appropriate
     82copyright notice and disclaimer of warranty; keep intact all the
     83notices that refer to this License and to the absence of any warranty;
     84and give any other recipients of the Program a copy of this License
     85along with the Program.
     86
     87You may charge a fee for the physical act of transferring a copy, and
     88you may at your option offer warranty protection in exchange for a fee.
     89
     90  2. You may modify your copy or copies of the Program or any portion
     91of it, thus forming a work based on the Program, and copy and
     92distribute such modifications or work under the terms of Section 1
     93above, provided that you also meet all of these conditions:
     94
     95    a) You must cause the modified files to carry prominent notices
     96    stating that you changed the files and the date of any change.
     97
     98    b) You must cause any work that you distribute or publish, that in
     99    whole or in part contains or is derived from the Program or any
     100    part thereof, to be licensed as a whole at no charge to all third
     101    parties under the terms of this License.
     102
     103    c) If the modified program normally reads commands interactively
     104    when run, you must cause it, when started running for such
     105    interactive use in the most ordinary way, to print or display an
     106    announcement including an appropriate copyright notice and a
     107    notice that there is no warranty (or else, saying that you provide
     108    a warranty) and that users may redistribute the program under
     109    these conditions, and telling the user how to view a copy of this
     110    License.  (Exception: if the Program itself is interactive but
     111    does not normally print such an announcement, your work based on
     112    the Program is not required to print an announcement.)
     113
     114These requirements apply to the modified work as a whole.  If
     115identifiable sections of that work are not derived from the Program,
     116and can be reasonably considered independent and separate works in
     117themselves, then this License, and its terms, do not apply to those
     118sections when you distribute them as separate works.  But when you
     119distribute the same sections as part of a whole which is a work based
     120on the Program, the distribution of the whole must be on the terms of
     121this License, whose permissions for other licensees extend to the
     122entire whole, and thus to each and every part regardless of who wrote it.
     123
     124Thus, it is not the intent of this section to claim rights or contest
     125your rights to work written entirely by you; rather, the intent is to
     126exercise the right to control the distribution of derivative or
     127collective works based on the Program.
     128
     129In addition, mere aggregation of another work not based on the Program
     130with the Program (or with a work based on the Program) on a volume of
     131a storage or distribution medium does not bring the other work under
     132the scope of this License.
     133
     134  3. You may copy and distribute the Program (or a work based on it,
     135under Section 2) in object code or executable form under the terms of
     136Sections 1 and 2 above provided that you also do one of the following:
     137
     138    a) Accompany it with the complete corresponding machine-readable
     139    source code, which must be distributed under the terms of Sections
     140    1 and 2 above on a medium customarily used for software interchange; or,
     141
     142    b) Accompany it with a written offer, valid for at least three
     143    years, to give any third party, for a charge no more than your
     144    cost of physically performing source distribution, a complete
     145    machine-readable copy of the corresponding source code, to be
     146    distributed under the terms of Sections 1 and 2 above on a medium
     147    customarily used for software interchange; or,
     148
     149    c) Accompany it with the information you received as to the offer
     150    to distribute corresponding source code.  (This alternative is
     151    allowed only for noncommercial distribution and only if you
     152    received the program in object code or executable form with such
     153    an offer, in accord with Subsection b above.)
     154
     155The source code for a work means the preferred form of the work for
     156making modifications to it.  For an executable work, complete source
     157code means all the source code for all modules it contains, plus any
     158associated interface definition files, plus the scripts used to
     159control compilation and installation of the executable.  However, as a
     160special exception, the source code distributed need not include
     161anything that is normally distributed (in either source or binary
     162form) with the major components (compiler, kernel, and so on) of the
     163operating system on which the executable runs, unless that component
     164itself accompanies the executable.
     165
     166If distribution of executable or object code is made by offering
     167access to copy from a designated place, then offering equivalent
     168access to copy the source code from the same place counts as
     169distribution of the source code, even though third parties are not
     170compelled to copy the source along with the object code.
     171
     172  4. You may not copy, modify, sublicense, or distribute the Program
     173except as expressly provided under this License.  Any attempt
     174otherwise to copy, modify, sublicense or distribute the Program is
     175void, and will automatically terminate your rights under this License.
     176However, parties who have received copies, or rights, from you under
     177this License will not have their licenses terminated so long as such
     178parties remain in full compliance.
     179
     180  5. You are not required to accept this License, since you have not
     181signed it.  However, nothing else grants you permission to modify or
     182distribute the Program or its derivative works.  These actions are
     183prohibited by law if you do not accept this License.  Therefore, by
     184modifying or distributing the Program (or any work based on the
     185Program), you indicate your acceptance of this License to do so, and
     186all its terms and conditions for copying, distributing or modifying
     187the Program or works based on it.
     188
     189  6. Each time you redistribute the Program (or any work based on the
     190Program), the recipient automatically receives a license from the
     191original licensor to copy, distribute or modify the Program subject to
     192these terms and conditions.  You may not impose any further
     193restrictions on the recipients' exercise of the rights granted herein.
     194You are not responsible for enforcing compliance by third parties to
     195this License.
     196
     197  7. If, as a consequence of a court judgment or allegation of patent
     198infringement or for any other reason (not limited to patent issues),
     199conditions are imposed on you (whether by court order, agreement or
     200otherwise) that contradict the conditions of this License, they do not
     201excuse you from the conditions of this License.  If you cannot
     202distribute so as to satisfy simultaneously your obligations under this
     203License and any other pertinent obligations, then as a consequence you
     204may not distribute the Program at all.  For example, if a patent
     205license would not permit royalty-free redistribution of the Program by
     206all those who receive copies directly or indirectly through you, then
     207the only way you could satisfy both it and this License would be to
     208refrain entirely from distribution of the Program.
     209
     210If any portion of this section is held invalid or unenforceable under
     211any particular circumstance, the balance of the section is intended to
     212apply and the section as a whole is intended to apply in other
     213circumstances.
     214
     215It is not the purpose of this section to induce you to infringe any
     216patents or other property right claims or to contest validity of any
     217such claims; this section has the sole purpose of protecting the
     218integrity of the free software distribution system, which is
     219implemented by public license practices.  Many people have made
     220generous contributions to the wide range of software distributed
     221through that system in reliance on consistent application of that
     222system; it is up to the author/donor to decide if he or she is willing
     223to distribute software through any other system and a licensee cannot
     224impose that choice.
     225
     226This section is intended to make thoroughly clear what is believed to
     227be a consequence of the rest of this License.
     228
     229  8. If the distribution and/or use of the Program is restricted in
     230certain countries either by patents or by copyrighted interfaces, the
     231original copyright holder who places the Program under this License
     232may add an explicit geographical distribution limitation excluding
     233those countries, so that distribution is permitted only in or among
     234countries not thus excluded.  In such case, this License incorporates
     235the limitation as if written in the body of this License.
     236
     237  9. The Free Software Foundation may publish revised and/or new versions
     238of the General Public License from time to time.  Such new versions will
     239be similar in spirit to the present version, but may differ in detail to
     240address new problems or concerns.
     241
     242Each version is given a distinguishing version number.  If the Program
     243specifies a version number of this License which applies to it and "any
     244later version", you have the option of following the terms and conditions
     245either of that version or of any later version published by the Free
     246Software Foundation.  If the Program does not specify a version number of
     247this License, you may choose any version ever published by the Free Software
     248Foundation.
     249
     250  10. If you wish to incorporate parts of the Program into other free
     251programs whose distribution conditions are different, write to the author
     252to ask for permission.  For software which is copyrighted by the Free
     253Software Foundation, write to the Free Software Foundation; we sometimes
     254make exceptions for this.  Our decision will be guided by the two goals
     255of preserving the free status of all derivatives of our free software and
     256of promoting the sharing and reuse of software generally.
     257
     258                            NO WARRANTY
     259
     260  11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
     261FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW.  EXCEPT WHEN
     262OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
     263PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
     264OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
     265MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.  THE ENTIRE RISK AS
     266TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU.  SHOULD THE
     267PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
     268REPAIR OR CORRECTION.
     269
     270  12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
     271WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
     272REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
     273INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
     274OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
     275TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
     276YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
     277PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
     278POSSIBILITY OF SUCH DAMAGES.
     279
     280                     END OF TERMS AND CONDITIONS
     281
     282            How to Apply These Terms to Your New Programs
     283
     284  If you develop a new program, and you want it to be of the greatest
     285possible use to the public, the best way to achieve this is to make it
     286free software which everyone can redistribute and change under these terms.
     287
     288  To do so, attach the following notices to the program.  It is safest
     289to attach them to the start of each source file to most effectively
     290convey the exclusion of warranty; and each file should have at least
     291the "copyright" line and a pointer to where the full notice is found.
     292
     293    <one line to give the program's name and a brief idea of what it does.>
     294    Copyright (C) <year>  <name of author>
     295
     296    This program is free software; you can redistribute it and/or modify
     297    it under the terms of the GNU General Public License as published by
     298    the Free Software Foundation; either version 2 of the License, or
     299    (at your option) any later version.
     300
     301    This program is distributed in the hope that it will be useful,
     302    but WITHOUT ANY WARRANTY; without even the implied warranty of
     303    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     304    GNU General Public License for more details.
     305
     306    You should have received a copy of the GNU General Public License along
     307    with this program; if not, write to the Free Software Foundation, Inc.,
     308    51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
     309
     310Also add information on how to contact you by electronic and paper mail.
     311
     312If the program is interactive, make it output a short notice like this
     313when it starts in an interactive mode:
     314
     315    Gnomovision version 69, Copyright (C) year name of author
     316    Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
     317    This is free software, and you are welcome to redistribute it
     318    under certain conditions; type `show c' for details.
     319
     320The hypothetical commands `show w' and `show c' should show the appropriate
     321parts of the General Public License.  Of course, the commands you use may
     322be called something other than `show w' and `show c'; they could even be
     323mouse-clicks or menu items--whatever suits your program.
     324
     325You should also get your employer (if you work as a programmer) or your
     326school, if any, to sign a "copyright disclaimer" for the program, if
     327necessary.  Here is a sample; alter the names:
     328
     329  Yoyodyne, Inc., hereby disclaims all copyright interest in the program
     330  `Gnomovision' (which makes passes at compilers) written by James Hacker.
     331
     332  <signature of Ty Coon>, 1 April 1989
     333  Ty Coon, President of Vice
     334
     335This General Public License does not permit incorporating your program into
     336proprietary programs.  If your program is a subroutine library, you may
     337consider it more useful to permit linking proprietary applications with the
     338library.  If this is what you want to do, use the GNU Lesser General
     339Public License instead of this License.
  • src/wp-content/themes/twentysixteen/genericons/README.md

     
     1# Genericons
     2
     3Genericons are vector icons embedded in a webfont designed to be clean and simple keeping with a generic aesthetic.
     4
     5Use genericons for instant HiDPI, to change icon colors on the fly, or even with CSS effects such as drop-shadows or gradients!
     6
     7
     8## Usage
     9
     10To use it, place the `genericons` folder in your stylesheet directory and enqueue the genericons.css file. Now you can create an icon like this:
     11
     12```
     13.my-icon:before {
     14        content: '\f101';
     15        font: normal 16px/1 'Genericons';
     16        display: inline-block;
     17        -webkit-font-smoothing: antialiased;
     18        -moz-osx-font-smoothing: grayscale;
     19}
     20```
     21
     22This will output a comment icon before every element with the class "my-icon". The `content: '\f101';` part of this CSS is easily copied from the helper tool at http://genericons.com/, or `example.html` in the `font` directory.
     23
     24You can also use the bundled example.css if you'd rather insert the icons using HTML tags.
     25
     26
     27## Building your own Genericons
     28
     29In the `source` directory, you'll find all Genericons source icons in SVG format. This will allow you to bake your own flavor of Genericons using a tool such as FontCustom (http://fontcustom.com) or Fontello (http://fontello.com). Perhaps you need more logos than are available in the base Genericons package? Just add those logos and bake your own expanded set. Maybe you need just a few of the icons Genericons provides, but would like to trim the fat? Remove the ones you won't need!
     30
     31
     32### FontCustom instructions
     33
     34FontCustom is a powerful commandline tool which which bakes icon fonts from the SVG source files. It's the tool Genericons is built on, and it provides highly accurate and perfectly crisp icons, *provided all SVGs have the same pixel height*.
     35
     36It's not that hard to use, and once it's installed you'll never think of icon-fonts the same way again. Seriously, you should try it. Icon fonts for everyone!
     37
     381. Install FontCustom. Follow the instructions on the website: http://fontcustom.com/
     392. In the `source` directory from the Genericons download, open the file called `fontcustom.yml` in a text editor. Customize the `font_name` and `css_selector`.
     403. Open a terminal. Browse to the `source` directory. Type `fontcustom compile`.
     41
     42You'll now receive a brand new subdirectory called `fontcustom-webfont`. Inside here you'll find your very own flavor of Genericons, with only the icons you want, including a handy example page that'll help you copy/paste the necessary glyphs or CSS values.
     43
     44*Please note*: In the source directory, there's a hidden file called `.fontcustom-manifest.json`. This file is auto-generated by the FontCustom tool, and holds codepoints (unicode addresses) for every glyph, so its address doesn't change when you add or remove icons. If you feel the need to "start fresh" with the unicode addresses, you should delete this file.
     45
     46
     47### Fontello instructions
     48
     49Fontello is very easy to use. Just drop the SVG files of the icons you want onto their website and download the font. The downside is that Fontello seems to ignore the 16px pixelgrid, so you'll end up with fuzzy icons. Buyer beware.
     50
     51
     52## Notes
     53
     54**Photoshop mockups**
     55
     56The `Genericons.ttf` file can be placed in your system fonts folder and used Photoshop or other graphics apps if you like.
     57
     58If you're using Genericons in your Photoshop mockups, please remember to delete the old version of the font from Font Book, and grab the new one from the zip file. This also affects using it in your webdesigns: if you have an old version of the font installed locally, that's the font that'll be used in your website as well, so if you're missing icons, check for old versions of the font on your system.
     59
     60**Pixel grid**
     61
     62Genericons has been designed for a 16x16px grid. That means it'll look sharp at font-size: 16px exactly. It'll also be crisp at multiples thereof, such as 32px or 64px. It'll look reasonably crisp at in-between font sizes such as 24px or 48px, but not quite as crisp as 16 or 32. Please don't set the font-size to 17px, though, that'll just look terrible blurry.
     63
     64**Antialiasing**
     65
     66If you keep intact the `-webkit-font-smoothing: antialiased;` and `-moz-osx-font-smoothing: grayscale;` CSS properties. That'll make the icons look their best possible, in Firefox and WebKit based browsers.
     67
     68**optimizeLegibility**
     69
     70Note: On Android browsers with version 4.2, 4.3, and probably later, Genericons will simply not show up if you're using the CSS property "text-rendering" set to "optimizeLegibility.
     71
     72**Updates**
     73
     74We don't often update icons, but do very carefully when we get good feedback suggesting improvements. Please be mindful if you upgrade, and check that the updated icons behave as you intended.
     75
     76**Base64 encoding**
     77
     78By default, Genericons ships with a stylesheet that includes a base64 encoded version of the font. This is to sidestep issues with cross-origin requests for fonts, that happen when a stylesheet loads a font that's stored on a different domain or subdomain. This is very common when using caching plugins.
     79
     80Base64 encoding comes with a 25% filesize overhead compared to just loading the WOFF file directly. If you know that you won't be loading fonts across domains, or have the ability to edit your server config files to allow it, you can get slightly faster performance by loading Genericons without the base64 encoding. Simply edit `genericons.css` and edit the `@font-face` declaration to match this:
     81
     82```
     83@font-face {
     84        font-family: 'Genericons';
     85                src: url('Genericons.woff') format('woff'),
     86                url('Genericons.ttf') format('truetype'),
     87                url('Genericons.svg#genericonsregular') format('svg');
     88        font-weight: normal;
     89        font-style: normal;
     90}
     91```
     92
     93
     94
     95## Changelog
     96
     97**3.4.1**
     98
     99* IE8 support restored.
     100
     101**3.4**
     102
     103* Updated: Update Google Plus icon to new geometric version. This also *retires* the "alt" version, so *please be mindful if you choose to update, make sure you use the `f206` glyph, not the `f218` glyph, as it no longer exists!
     104* New: Added helper rotation classes to the base CSS, thanks to geminorum. Apply `genericon-rotate-90` to rotate 90 degrees, -180, -270. Or `genericon-flip-horizontal` or -vertical.
     105
     106*Again, it is important if you choose to update to this version, make sure you're not using `genericon-googleplus-alt` or unicode character `f218`, as that has been retired! Use `genericon-googleplus` and glyph `f206` instead!*
     107
     108**3.3.1**
     109
     110Security Hardening: Remove Genericons example.html file. Please visit genericons.com instead.
     111
     112**3.3**
     113
     114The Open Source release.
     115
     116You can now build your own flavors of Genericons with all the SVGs provided.
     117
     118
     119**3.2**
     120
     121A number of new icons and a couple of quick updates.
     122
     123* New: Activity
     124* New: HTML anchor
     125* New: Bug
     126* New: Download
     127* New: Handset
     128* New: Microphone
     129* New: Minus
     130* New: Plus
     131* New: Move
     132* New: Rating stars, empty, half, full
     133* New: Shuffle
     134* New: video camera
     135* New: Spotify
     136* New: Twitch
     137* Update: Fixed geometry in Edit icon
     138* Update: Updated Foursquare icon
     139* IE8 bugfix, slipstreamed into this.
     140
     141Twitch and Spotify mark the last social icons that will be added to Genericons.
     142Future social icons will have to happen in a separate font.
     143
     144**3.1**
     145
     146Genericons is now generated using a commandline tool called FontCustom. This makes it far easier to add new icons to the font, but the switch means the download zip now has a different layout, fonts have different filenames, there's now no .otf font included (but the .ttf should suffice), and the font now has slightly different metrics. I've taken great care to ensure this new version should work as a drop-in replacement, but please be mindful and test carefully if you choose to upgrade.
     147
     148* Per feedback, the baked-in 16px width and height has been removed from the helper CSS. It wasn't really necessary (the glyph itself has these dimensions naturally), and it caused some headaches.
     149* Base64 encoding is now included by default in the helper CSS. This makes it drop-in easy to get Genericons working in Firefox even when using a CDN.
     150* Title attribute on website tool.
     151* New: Website.
     152* New: Ellipsis.
     153* New: Foursquare.
     154* New: X-post.
     155* New: Sitemap.
     156* New: Hierarchy.
     157* New: Paintbrush.
     158* Updated: Show and Hide icons were updated for clarity.
     159
     160**3.0.3**
     161
     162Bunch of updates mostly.
     163
     164* Two new icons, Dropbox and Fullscreen.
     165* Updates to all icons containing an exclamation mark.
     166* Updates to Image and Quote.
     167* Nicer "Share" icon.
     168* Bigger default Linkedin icon.
     169
     170**3.0.2**
     171
     172A slew of new stuff and updates.
     173
     174* Social icons: Skype, Digg, Reddit, Stumbleupon, Pocket.
     175* New generic icons: heart, lock and print.
     176* New editing icons: code, bold, italic, image
     177* New interaction icons: subscribe, unsubscribe, subscribed, reply all, reply, flag.
     178* The hyperlink icon has been updated to be clearer, chunkier.
     179* The "home" icon has been updated for style, size and clarity.
     180* The email icon has been updated for style and clarity, and to fit with the new subscribe icons.
     181* The document icon has been updated for style.
     182* The "pin" icon has been updated for style and clarity.
     183* The Twitter icon has been scaled down to fit with the other social icons.
     184
     185**3.0.1**
     186
     187Mostly maintenance.
     188
     189* Fixed an issue with the example page that showed an old "top" icon instead of the actual NEW "refresh" icon.
     190* Added inverse Google+ and Path.
     191* Replaced tabs with spaces in the helper CSS.
     192* Changed the Genericons.com copy/paste tool to serve span's instead of div's for casual icon insertion. It's being converted to "inline-block" anyway.
     193
     194**3.0**
     195
     196Mainly maintenance and a few new icons.
     197
     198* Fast forward, rewind, PollDaddy, Notice, Info, Help, Portfolio
     199* Updated the feed icon. It's a bit smaller now for consistency, the previous one was rather big.
     200* So, the previous version numbering, 2.09, wasn't very PHP version compare friendly. So from now on it'll be 3.0, 3.1 etc. Props Ipstenu.
     201* Genericons.com now has a mini release blog.
     202* The CSS has prettier formatting, props Konstantin Obenland.
     203
     204**2.09**
     205
     206Updated Facebook icon to new version. Updated Instagram logo to use new one-color version. Updated Google+ icon to use same radius as Instagram and Facebook. Added a bunch of new icons, cog, unapprove, cart, media player buttons, tablet, send to tablet.                                           
     207
     208**2.06**
     209
     210Included Base64 encoded version. This is necessary for Genericons to work with CDNs in Firefox. Firefox blocks fonts linked from a different domain. A CDN (typically s.example.com) usually puts the font on a subdomain, and is hence blocked in Firefox.
     211
     212**2.05**
     213
     214Added a bunch of new icons, including upload to cloud, download to cloud, many more.
     215
     216**2.0**
     217
     218Initial public release
  • src/wp-content/themes/twentysixteen/genericons/genericons.css

     
     1/**
     2
     3        Genericons
     4
     5*/
     6
     7
     8/* IE8 and below use EOT and allow cross-site embedding.
     9   IE9 uses WOFF which is base64 encoded to allow cross-site embedding.
     10   So unfortunately, IE9 will throw a console error, but it'll still work.
     11   When the font is base64 encoded, cross-site embedding works in Firefox */
     12@font-face {
     13  font-family: "Genericons";
     14  src: url("./Genericons.eot");
     15  src: url("./Genericons.eot?") format("embedded-opentype");
     16  font-weight: normal;
     17  font-style: normal;
     18}
     19
     20@font-face {
     21  font-family: "Genericons";
     22  src: url("data:application/x-font-woff;charset=utf-8;base64,d09GRgABAAAAADakAA0AAAAAVqwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAA2iAAAABoAAAAcdeu6KE9TLzIAAAGgAAAARQAAAGBkLHXFY21hcAAAAogAAACWAAABsqlys6FjdnQgAAADIAAAAAQAAAAEAEQFEWdhc3AAADaAAAAACAAAAAj//wADZ2x5ZgAABFQAAC7AAABIkKrsSc5oZWFkAAABMAAAAC8AAAA2C2BCV2hoZWEAAAFgAAAAHQAAACQQuAgGaG10eAAAAegAAACfAAABOFjwU3Jsb2NhAAADJAAAATAAAAEwy4vdrm1heHAAAAGAAAAAIAAAACAA6QEZbmFtZQAAMxQAAAE5AAACN1KGf59wb3N0AAA0UAAAAjAAAAXo9iKXv3jaY2BkYGAAYqUtWvLx/DZfGbg5GEDgkmLVWhj9/ycDAwcbWJyDgQlEAQABJgkgAHjaY2BkYOBgAIIdHAz/fwLZbAyMDKiAFQBE7gLWAAAAAAEAAACXAOgAEAAAAAAAAgAAAAEAAQAAAEAALgAAAAB42mNgYf/MOIGBlYGB1Zh1JgMDoxyEZr7OkMYkxMDAxMDKzAADjAIMCBCQ5prC0MCg8FWcA8TdwQFVg6REgYERAPvTCMQAAAB42i1PsRXCUAg8SAprl7FN4QZqb2WZGRjAIVLrHj4be4ews7OJHAd54cMBd+Af7JHmt3RPYAOHAYFweFhmYE4jlj+uVb8nshCzd/qVeNUCLysG8lgwrojfSW/pcTK6o7rWX82En6HJwIEv+wbi28IwpndxRu/JaJGStHRDq5EB+OKCNumZLlSVl2TnOFVtl9nR5t7woR0QzVT+D7cKLeIAeNpjYGBgZoBgGQZGBhBYA+QxgvksDBOAtAIQsoDoj5yfOD9JflL7zPGF84vkF80vll88v0R+yfxS9lX8/3+wCoZPDJ8EPil8ZvjC8EXgi8IXgy8OXwK+JHwp+Mrw////x/wsfHx8HHxMvJo8Rjw6PGo8CjxSPCI8fDwc3PVQ2/ECRjYGuDJGJiDBhK4A4pXhDABtHClYAAAARAURAAAALAAsACwALABaAIQAzADyAQABHAFGAZQBzgIIArIDTAOkA+AEEgTCBRYFYgW+BjAGwgbkByQHSAeCB+AI2Ao4CowLGgvQDBwM6g08DX4Nug4kDkYOYg6ADsoO7A8yD4gP8hAwEGYQpBDuEUgRshHUEfYSQBJeEnoSlhLEEtwTIBNYE6oT6hQaFC4UShSQFJ4UtBTyFSAVjBW4FegV+hYUFiwWQBZWFmQWchaIFuYXFhdUF4gXyhgEGCwYThh8GNYZEhlCGVgZZhl8GZIZoBnQGhIaShp8GtIa6Br+GzAbVBt+G8Ib/Bw6HGgciBy8HOwdHh1WHXAdmB3eHvYfIB8uHzofSB9WH6of4CA4IMghACFCIcQh4CIGIjoiSCJ8IpYiyCLmIxAjWiPwJCQkSHja1Xx5YFTVvf/53nUm++zJJJnMkpkJJJkss5GFMIQ9w04IS0BZRSJLMIIo1l4XFETQFkVFBKwVrbuWpRaXPOtalZaCPKu1D2yf28NX21qfQubk9z3nzoSAS//+Mbn3nnvuuWc/n+/n+z3fCxHIaEKEJfJMIhKVhJ4GUtP8jCqRz+ufVuQ/NT8jChgkT4ssWmbRz6gK9DU/Ayw+bPKY/B6TZ7TgpuVwN71Unnnm0dHS24QQRSACUYis8XyzST6xEAch4LF5ZJsnKkc9NsDDj2ETXgUikT4iaClNJEBSGoZIP74qa+l//YRfKB5EAEyj4g/ztWBZbslcIEjucqHATOpjkYBXsYo18DNYeOQI3UMvonuOHIHXj+/YcXyHSs7FLGQp+o7sYA8IFq+BpmqKhtk6SDEZinWVWfMsHlLfIkRCgjdPsLpAtMlRUu8CmzVP8HlDEInJmkC+wcbihT54cN/6cePW79Mv/f1E+MUT2zvCM68cOWt7Rwc2pk8TNQ3IWW0gEbuI3yxI7KW9HdtnjbxyZrhj+xPbWX0EYhjcf9h3Jg9gldjBfhLm1af1ERF7BTAEmoxngQDeU35mB/YPsDiFtU0gxChgX2tn8S6FP3zG38O+zMWEVkU1yaYQRCMxt13WblvTT9bcdgpaTsnahlcqUp9owt0Vr2zYc+oUHwN8S2FjwMYV62PNA5+pPhaFc0EP4JhuPr2la4eQCVCsNRvnLac3A9nRNShIBFZPXpciEmHjareZsEbRWNTEBhVvHDasmyniwP7HJ+4AhlsgbmOP7PUsWVA8DFmHuzoSa3avSXR09XZ0HaZfHa7raOARKjm8kWoLdwfuamwHbcqaNVOo1t54V2D3QtA2nsQL1TYePrwRtMTaWUWYhvI0gGlYz5FeldWtgPiwvfW8bpVgAk/cwxqtR/hwhHxeVq9YWNG6duzo0miCHtBgy55TlN/jbYIHFGwyi6IJ6NVO7RG0c7c7ugBDRITMuMlYqovNAFYeuNg4BWPRSBCDBRhsEaKRQJCl5mOvSfmxpqbY3GQSCmYvXjy7s6bVP2WcjI/P4iEUxG7ddWt0brKrC5/P+Yz2fTans2bNjWMvPTwOi8B2Vhtw5pEr+cpyCWabVVAkVQngpGDFtChYcIsQCIYgT1ADQUUNifmQB7g4HIrN6pIdiponhCAYkoJDMd7ucEkOlxK32q02qxIMlAewtuYWQVwLdsg6+fyNbcufpfRunw+CruicxZMm1JYsV4zGfIuUV9+8OH7VzTdfFV80IpSVVZBvMErLS2rHT140JxrJtYfGjRjrFIyl3liplFNkNDlFY6nTmwuKwx0fu6gZfL67aOrZ5W03Pn/SQNiZfrXlIfr62RfrVXeh9JvpoxY4FUt5/eRFm2bsvTy/YvzFdSDK5jq/F8DrrzMpglAxtSFekt2zZ/rmRZPr/WYl1JmVJxdEq6VcX3GhoGY7zaAUuoZ5pNwhrqF5WabyKXVZhW4l/MJZaHhoC28cdiIDKkJ4nxqIiZQittSTBJlKiL8+LogKUe3+mDleLrvAjLhidsRIPBDMAda9LsERkxwCsETlccHiVXx2S4sUD1SBWyIIewRxjzDgk8iBw54n/0w3db0rjt/1ViE9TY/nNXaeue+KFT+Cxz4uSNCP6Bp5+biD/9dsLw0qj8DEq51nG1+if695Cb68Zevjbs19yW+VvZO2LB9yLT1Er4JdsAEsP/85/ZxupEvw+PznPweLNhWq4MY2evS13r0roL03FCq+m/5W2Jx4iP5u/dsQm1SrddTDuw0Xd7lKw+05HqUYSuGfM+nhE/bxIXBCrGAf3Sc0ultay6/9qXZB5lggL5R1FyAeVyEef0Aa8EZR7Qi4kuRz++3helzyOL0wgJfhOL8YXsXtkgNnaIsQrrc7YvE8UGOqllwpVM/Vnvo9pdvoEdpfVTXzgZ+MuPJ5n99dV/vjhyfPTs6uvwVu+TCrcfGm5OQt4R+tsLY3rFJquycX25Yff/vwfT0jH5QDY+vEbavV3KI3b5QrxfqfXbS445E3s4dUtm1a3Dg8XpRILPfm6vUlKD9UjQQH0MGHKG3xDEcZEXbEAz4UIKUIiyg0zwMI+hHk5dCPKlv3yZOWX/TT2VWUpqrYAxUR4SxB6HwNpN6c5jj8Iyt28drRp2lfqmFHl4xPOLZjufLHWK6b4YPIBAMrI9IiYU+Ugejl5YrSbpiQT1+lvX/+s6N6/EXXtsW7nE51/pKKiNMofU2P9h0SJ0ANCJEFs8bHShVRpB+Z/NVeUTASRJ9M2yyIzB6yhKzi2GA3s0HxeXFFF5hjgDMXFKjHuZsNdgtYYvEWMRphQGBA6AjXOwLlPq+kqPXh+tgIiNkVVVHBIiKOxBz2c3F+HGpVjJmjEbENVsDEL7aN7Nn38idXH6T7v9i27Qv6pzNv0x+PFQO3XC8JX/+j+y/gmypIBXkW1VFoBYdslvMkVZjcCMZV9NN7b6H9R8YXF/lX+Lw2S561qhb8T13bbs23WjdOCVzm82GkrVLwycO/OvSeqmHu+w9e/cnL+3pGbvsCJvLSU3mn6YYlUul9fTUhWREeSo30SHv7dkOOklNXNzZcGJoT9Qp+gzu7JL/Qlt3QAUu6Ox9YJQsilHlFWei7SzDBbFXwuiErE6lWVN68M9XQBT3vH2FzXSC3wj9Rlm4ldWQ4G0W73q8hITOh1ZARh5FBLM5+Me7xh20+my/qi4ajYeE9IZAbGLPkmh3T1723++JF9797+do3WncKVqO9oMjucpWblz66ZMmjS0d2j48VSXS/uE9nVJIWDE/fcc2SMYGLd7+3bu37uy+ePPEeyFVzDdmqURIXP/rbRxeXx8Y0Fb3Nk2M9RZ13Kc8jJzFjXTkjCTJxx4YX4R/FPkZF2FQHFYWyxxz02FoUfCbYhPn0ILQ9KExbumxGvL0KqjrkAnpoWkfluKG52fSQJMGEbJvbUxNuLZ++eVkDEPG/bl40oW1h9aS62kmhszsF8/Ir/WF3cSz1n+L187eaSnzFxZbs+GWPr2ZcKT0/Gct0k+ZBKzC91Bg/saCYDoEPiYTVjhG8moIa9dgLbCrWOs672mbSVyVbeCiGHfSbG0ZPg6mto6ZPGyk1PbSpftowbwH9GgAMhixvg3fMyMwy1ZfkGSIW9X0sbpzS2DxpclPjlL4N8NqTB4sqg4XdHtpz4CAcrrQ5h5Re3E5nY2c+isJhGsqFqazGLkkf9kBQwJURDMQtbALEWKWsrD/ZGsFVEULemYdJkQSpeewvyOeJLNWt++MT2xZEqmdctePgksVPeicUeOffqZb+TMqzb71kxuxAc57j6iVrn1005obXfzT/0ZtXTQjOMKuqaBVUn33munj5xBV3/fIvBhJftGnvgfkbPnxx18rm+Qn6wbAN22MPXy08ZfQsj9x6+LLp4e3/0bD49l9B3cFLn76uLTSt+6a7p965yOYszJmSVWgy+u54rnvS7nu3rp9Vr+N4RvYtzvCJAiFPwGYGY3ELn8/AGiXqjbI77AgbEI8Fgmk0x6nD2CRS7TinOWxuYboywE5yBMiFXCIt5+/YliwZX7J12lW/u31a0+W73u5Zd3T3tVOGdC0zl8iCSZDlvNHjtN41Sx/oGjZ1x0XRdn9Odp1r3KjY3GiBwbjG4pAP0NO7BjMH+hn9iuU/dP1icEaTlx0G8c7Ox+9YnYhfdM3td7bdcmyoIc9iSGRZbaYpVy185uZpzctvm7n96zujndGaXVcObZ01+upk5TSLhfpnLNo8BRyw7sgAQRDIXmGBukDei4srn/PeAuS2BeXpq2yF2V9+SR/+MnVFOiDvZecv03d41eUlUW9Xc4gXbyQR+bkP0TuIkwWpYhx/FrPDjCITQxhlVjaAtSAHlaGfpu5bsco7bZ71qvaN1z0152hdxNo8YdiabkPBpsSYG1VioA/SFB1Oh0AZ3HYtlLWvuKLnboOV/p7+agr9+1NPzbu7FB5nbcjoT/mIDd9af0ZBIag27OnjZ+CanoKsl/J7Ac99nL0SgHeJplTgWvbqWgUqEw47kw9xEwoHnDaMeEZNvihvVFwaBb+gs0wF1c0TN93cM3/+ig0XXzSqNfJqVzIZqjapGm2iH9PIrqoqZ/ls+lHMbi8ra2i8boOwNuVLJObO2cKm52D8cJBqjsEX1J+4lQK7O1aANeKr0c05B9bNHkb2b8J5WQlepRSs9iaojw2GELGMvnSKqVBIzf/XvPk0/ez0ZjP932RUJtFkMqqlT+ejCCWn9Lf6TolkbCMqSKg7NY1JsVekA5l3knxp9QOooPSTbeSnZAe5h9xH7icPkoeZNodNsNUq7M+q1KHOoNQpqpWdFBsDFOxOJR9A8QahtgYCwdpANKB3byAYCfIVGIhiZAS7IFobi8bqIqzPo/VxftV/I6A2DrF6B9Ta62rtYbtj4GdjRy37szqsdXYwyXEjOPyyLQ4mv+qPB1UjBGV/VFVx1Pk/Af+E9BkvqVZThSnVCiLgdBZZrADn/RNgIDGKVuEFTC68AAIM5JHOCDArcH2cujJ19mNwpV59EO6kH34sjPv000+hUpA/ph8KjQ9K/5AlWi2oAkjsHVaowIpM54D5A63OzoFjLPt0TUX+HC+AL+GLEhyTZAFkEPCWHew1ngE7H8vOptXpFop6jqwMlgzfgCn07Rd3wmz68M4X9/5pVeoFiLx47+Rdu3ZhaPbOF+//06rz56oF5dwL5GM2V5GJFaCO5uaqVQsSYVTXBJQPDrsUV9I8AjEVgXUEMEzFFKiHWTgDUxiRRmStjdQhVQuUsyj+aoyBcAgUPUI4B8whIRjggocnY1Qcc2MP2T0TSiIqi0GO1w6XiLfsjfStAPXlOINQiAVZlojhEpYZDJjjMYyPK5KCcG+2SxI5yJgfI2T0Dkb8OAc8tpueWLlyidW075r14N4wIbn6rTtmlSdC2KNGEUb+/OVlD4Brodt/KX3/dnHo0I4tV6xrn7vgyWuT2V3tl9AvV14xvCXLsHPlqv9qanEkQxs3RTsstnBBVbS0am4gEDEYzEUFlfXFzki1udghK5VlFTWh8bmohxlt9jGBwFirTTYbi70V9spOj9cvCh0bW8Mza3Js5qmXrBtWPjJsKjaaHRsebp91+0y64TRsuqRp1o43eibdsNAZG9/TTQ899BD9dFxb7qzZUP2MyXwv/fSNdde9DyGdd+rNZLQzzUDvMqxdfRn945139E8Yn9dgm739re6xm9bWY1uzBEiuaLp1Q7j62jtTWaNuGtYz1FfiTV775ALhshdbJlmbWpZfds3637g80+d3fpgMV1uDwxcsnFlcWaZm5zkc44YMbfc4PBZByHGai9v8/haTXYFhlQKUTSh1eQSo9Pnag1aP0yIZi8rcc2pHXhYy5Yy5aHU00l5tsOfVDC+Pb2ieclU0P2flA303f/3WTTeuPXrvZVb3yq3T7qJPrN/QXer8rz27YOU99/7BJQk5t7xL/7x7H/3D+9f//8R1mT73Y3W4ej25BG9cuAjy5BAqSKY8A858HnIJsTiKJ5eI+ngspPiC3kAeJgOXWAZqSMLF0iK6RIe8Wy2aMGb26CZnXlnlitVXdl86K2E2I+waTFa3P1IaWdU+xmzxjB41rACGKdbEiNmTpo+oyxLKW6Z3zpsx0mKRCsKR5NgZ48aXFBeJJmeR0XhKdTQOKc0eP2rMww899bO7N8xzqkPEnKH1M+ffsO3QojmbZ8Qtcm6uqtD/EVS7w+3yuUqzzUKRKycXCr2VeeXV4jOpjwQ5W5It1aMuGzPx+s62Km++ASFJyS+sCCerqxdMm9hYlZP9htG9fNWD9786b/LlTW4hr6QoKz2GiEFXIAYNIddh79hVbgwNMqiRUCwy5iaivseUAtlmBWapCgz+YRqmD9rTgn3gORITJpusg2SINS3zB57bMnQgpo4Mw6QbDiy5auWUiZe//yukq6ZRdZ3r75y69cq2sYteeHB7z4wqekmT1ze8qX368g6Xu9xtKYjEOxdVDvWUOIpqIj5vkXPYsBkzu7ctXzGsIR7tnL1xXsswr6el9dLJ1aFCp8NWUlYV8/pikVlXHrxnVbfYuuzyJQdumNSYN3zFrmff62mfefnGqXeu76xL5lTN6Nn+4AuL5tPftl86e3hzRbDY6bAYjeZ8zCPkLXe7W0I2e3l5dai+FqmIMzhkQtuCS0a3BgMlVrPJ46ofMbTKbvN4orWFRagDJSdNrBkRCnH+jKyIKMzuGGESHXFX1wbwrFQiS+EcJSRUgomjOO94Zp1Gwe6ptyuaPVhkZ0cymmCsgSZGXjFu7lCtt27VwgSoiACeOWMLDAbYG01KpLiu3OAJ6mdM3ZWsqK0QtIvu/3qzbKr2lLTvnD5zrz+Q1Cn927BVDas93KIVJLVkBBmPesxmrGUMq6UPWwSJAY4VYC3TWqK9nKkzCrvzxzidV+0oE1iQWwesdgmsjhgzlyjEqzCzbsRi1e0/gBKO866MXoTpLCimHHILYgXrCtQSgn7R7mD3LpBezx/qyu949nBHvmto/rDbfkL/1hoKjRwZCrXC6HmtrfNaBU9lw5DqshmpLY+C75FH6AePPkY/eOQR8KU+rKiZWVo1pFGuxoEYUb1vWCjvilfoF/QE/eKVtQWllUXrZtTNKDn03/Nks9kGDYXT69qWL2+rmVIn0jOT/vxkycz62LyYaMh3VeZ3dORXuvKHgRJqxeJbW/VzKDS8rHZIQ3B4alnXgctWHOzqOnjiYJdwb03JxOHlDUJ7qCVUnUg9Fe8srq9b+uzGKVM2/mop6n/hkb4Z66oDC43whj07Rx4/pG75HcurJ4Wa6bU5CypCsXlsfSK/Znq6RnwkjuPBjDBM7RX5loUwHDw23VzOu81hU2VPRscKRh1x/aE0ze63e2sA5t03f4w2LwZqzega+bUtW16X7kMaoc7bPX/+7nmw/D6Mlo7Os/ttIS8tm3vPnGjnj0YfPeKpqfHAx5uef3HTZdU/Ptq5a+6cnZ1/qA0dZ/FEryPbP8B5nU/KM3ybb+Lo+jrbxkF+yPZyHBB3IamOOxRkxpn9GyTW7wWSXX76Hn3P35UMwHLZ1DC6wSSr3Kx+VN/iOcrs6Kl9LAF9H/z8hR1Sqc9XKhHdrvUCcqnWgT0WByFG0WTMiduMEHUIt8Ga1Od0O6wULBTDggVWpv4u5NPtqc9hDb0dLt+d+iL1xW61lb5FD0F56lnw0V/RtyAC4+kH9CFxL/0TTIDI2W/o28t66EvQ0rOMt10ghCpzsO0uMoa3XRUFNU9iKoQKeaBrOEwcMr6F65vtb8TNyLCYcqGzMKaZcMuiBxVo+dXZjdbIHFlWrEU1rjMGWaVX5g11Z1vL8suaK4RTXtlpSa2ylcr/dFpLyz6wFouCS5RcFvr3Yp+vGEZk2wtUsmgRpbTFarVV2MyCgTYU5IqyWlkh2xxVVSV09S/tZW5zn0GRcZ4U5jnzDLtyrT5vcbDYk2PhOMX2R9h+0GDtb9BmCPnezY/0bgfHOgFnLd9TYnsdqPw5PDaPGBZ6xd5+wjRETJ7i8jylIRPW+klmLmHJCmPHOdwqZYTMRqCESyFFKBHf7GKApmAwRdg+U5Ldk8weC5+HZcSftmtm2DQza+q7f4hNeCdZTKhsmcQ6cIH8XHf3c/Qs/ZCefX716ufhjrXv3NvZee87a3fRr3buhKw/wdBO+rRKVj+vJ2LJkefji8+fXd2588RnJ3Z27qRf0dcxuUToXPqfnTAV3tPnB9aJ8L1IE957GY7arSLrVQ/rTKmL72ZqTGs+tUfS+B4m/ezUnn7siD2nCBncrmxSTKp0W53JEw3b8LAw45c+rbj+mh4vNlQ+VlhYRqFzBg9NwM5ORvu4xiniOdXrRKYcSODZqWhn2RLStLOYjCVIsbNwIOCkhD2HXkx5fl1cZChpxLrUoqasioxHxS16iZ4mqK0PowJRAnU/VFUJy1JC4RJ1xRO8DMK0KYebmya/s8bSb0AwqFij4pxQETyNVRLcDtTnDn9X5QnJGajr4H3rYpwblaQJZdwohqdhm5g+MmFPOowc1Wb6oZ7OvHtuO5vVmF+/pwGU6GnYM37Q9DVzFsh3NQWi+qY5Xx8zYaZ6tXo1tseNCAcOQB2tRYA4qAFvPt+jUyFurx+BsAt/Fsrmpk6VNzUGvTnWYcLX+4WyA/6uwIFCs7lwf+rkgQCG/cIwnspfU5pnDIWnS88dSJ3c7/cfKGptLTwglGHwoL9rYG1ynC8gJdh3KqCUZjv15W7JjOyOIM9HBEMJhdhHNGq6+9n0+oFhkLVzdd/q9Ue+PLKenQAb/LfVmSe4dHY9eze8mX64fv2AfTpdFm/pBcWRdFGoXtgtUY9NNsHfvlVmauxAngZBE1dT07fKpd+cq5VhsG2cr7cSUsFtVza2FeOJMjj6gXqIOIw4UGzpCv+mOkomIb6S+jf14vKNQKWBKO+QXKxTKaJbNdv/Z9AWNEIMqyIagXe8EZi2FUNVI8aNjgLnXYifMpyl8hL6JfKeL5dSBc4shRwYCjl+WEu3Tnrl3Zcn0lvh8kmvrFjxypQUYWauU/SlhRxbZXyTypf09CyDM3BmWU9PXyVcAT2TZ0yfTG+lW/EKL+3RXzglRDk6n1dn5ofh46uOgDcIjDWyuiOtjDNLeByCFgcE46whqEtk8N7PmSM2KK7zTYkUeWC/ckoAWMBbcucvdm2/qH3FK0lY+8fQdWfJdRpt5M268//eSG3h1YC3u257eAVvWsuaEaf2rEDIgf2eoj2nhJN0L2vTlO3e6ZPhinfhQ54DvMoauDf1Fm/4V13LeRNfWrNgJQdjEBho6b4S2P/M7IX1MwIKo15IaLSX9mqQ4CdIyBfcayxNen+R29HPz8NA+nrFhNbX29eriQl+EhPqBfcaS8PmqJaWKxbEsyjzcLFVGqJ+ziLsKutBhlWIVHJ4wPgZPveTiQ44mo49ySgg0DCB4OxPA76mg4+eQuGJEYoOIOjiX2+KqyACXjMH5w1QirxhBzGy9WrBP5CLQSW0/BD1U/8hWi5M3L9f+jE9mPoUJtL9ggPaQHCkPmXYovMFDbs2i692BN4gMxqj1Ne0PqKJuGAUBpiUGahTvdBLE+f4MeMLRu6TZAT8M3kYi0jhT8TfGQxzF5pedmJVJRLvv16lF98zkDzGdIwCW90OHIoaQfXjfMQ+6u3TaELUUo8vEGak9moLEgs0mIThBQqW3qdBL7acPetbwJ/lskdp/oS5syE2Ztx8VOQ5jPYgDCVS/E1WFegdjDc5uLY5g+a+Gp6IUO4z1aMYcwLeZEGgCnxmphyhmAWi7zm09ZMjdPfvj8I2mAYlr67qJ/Me/Jx+TA880b23G//kjLvE72HREZGsepX+lT5JLz/6BCSh6PMH5/VpPB2X7f3fADEo6ovYG07uo+JCecJ1UlyiLcgsBpZmMXgs6luVeZErZnxzunVZs8PhE76u7L68u5L+H193f4zQj8LC3LHa/LgvMbNrmPTO2AkTxp45ylcVRNmeAQ5MZp/BhtgQ1nkNQwXUXeJc3+RIhqCG6Oth0GB3sMYH1ZAgcBqleJnHFv1tkv7mpVkPbm0E1AoC0S2TmIMOHqi+JmH4S9d/MofFg2/G4i95YyWcSo8dD7U3AWoT/tjwU0IZ28h47PiSOSwCyutLaS3vPd3fivsxVWa8mPLAyzg9Liu7m7sz+bwDTkt8rXGazJ2XOIJrLLRmytRuXDcauzLXpZR2NcP2qxk2MD8lQZuypntqmmy9TJvZnUA2snUBP1HY3Mgjhbp/HIKnyrA+GjGjClHAii+wi+VccsyZSpfT5VPn7IR9Nz733I2Ys0qYNFl7DB/AXVOPrd0FWSnnc2B4jjlTMTxbwPBMPsmWEJIJH8QdMucl9KR2Uj65IEVgr9aLY4Vz1EAGuBQpwsFi48WuBvI10Q82k3GZ4pHionAQZ7CQIZhHEFd1HrMLO0w4iKwJzALi8JjKcIJxDwMTTn34y18E7ZOa0f4/PnTz6UcXrZc3DVs69i8pzfLO+KlLnljF4pRSvP8k1L1xzNP0b1X0jH3zqyDeugvsdPKlrz48Dt+3vDP215euPbKtFBR8SFNMJxGxrZLGW8OWpcb87tL1ZPjDOoG1j89EfzrFWVRP+vC9PsKd3RjSzBASBtZnKtczy9gq5/wgfQGHlN7vM6fXizCM/gu2a9QCa6UH04HuvlE4Mdgw/H33mjW718j30zLEJyLsSZ3Sry0L2VOcPvTwGpbkPG6icj7L8IW7kg1emTL3HUNVCa+QPLceEYnTsSJ3IBu8GAnLisuUdN4ZphzXmTJJ4475gqs/7f2pM2Vd/Mhc8Hi4EEK1Ecmzz8TSCPu48Bj8B2nnRuZHmRFDNKGrA/ycwMqx5zgI/A3QX6T6ZZ9OjCVOm5lE0nM9yzVK5oTKCB0j4kRlumgJ12d1cRiJNUHajsVtTNw+OWizT1UPb2xdVxV67vI9pwolwvWyHWWejYfD1Us3nNrT0srXpqaCKqf9Ye1Wxr+DbGEEA5ERbCdNRFquHEwmP207mqQN9CS8Bm1tnyaPt83e20/2yruSx/ARjKcN4GaPjuNdW2rHXiAMkIHJLpnRKPVc/4t6RWS9Qtym+Af5f+UnuKwRsPCoByQCn1PLLJjFXFTpL+THqYVaOmCWBrO4HRIX2B8UTX8H1zySWyS1EplFf8G8UGHWLGqRH++gv8B3O+BzrssnFFYPxuiYgASEiFRvCllNr8xksYDUJsHTMSxJsHRYFyMm41YCIYE/jQlsDKZ6B3wJRKwe88bEGSxyd9o+Pg8BVyhWTX+Gc5st0syzNE+QNe6STIwiq7zGSBmbAWeJoDsecx5fwG5kTfm2/ucjQZzZNShz4lwTJBl9jx3xsM03+D48SB/8vnthgEylMqE+7cLAgAN0xgP6e0K8awRuB+G2DFbnb+1iZ5CF4ZisG2T4WbeNMEMJs5718TiJObNo6dUu4qM0jvD8GX4FLsg/zASuzRcdVI4YZYownCtKYxlpmQI5K2NWwEyZqOExxfhcwQeYituv2xAydnCGM8U6FjN5Lqev4LEKCiOAIRBEfIc3iF/6cJBv+vQn/eQnn96kcODglnD9mnrzbvqvX5bSf0Ju6S8hm9FEoq97Ja3FMXxOAwBDq8Eg4IIBFJCwesz1FnDe8NZi43SHX0U5vLGqfVypDgoCVk3HLmBmGyZH8OJ2bzzsqHSlMeIc9pQPYI9ej+8rPe1JSDJ10If1/JI5HOnQ+R1lCtxfn/EqI7fgmdjWlkfl8hqBGDECFy3zLmf6JzNHpN6bKwToXIGNEMV1xy1yKMD38Qfn2bDymZgo5c4cePJFue86MKjFNP2MZbNhuUpNsdXI8gaUm/q6TY+5iY84kxBNyGrTs5nVLRCJc41F4apFIjN1+4hYX1/fd4TZo9hU0vT5fBZLi/80zjRNAdFyj7pAXUCq+M6K6ldUixpkRDFoCQTlINMf48G4HIuLcQeictwh2h1+h2rHseaT216vLmikv6tptm95Y4Sz5Y0ttqZa+rvGTwyGTxqhrrbJtuWNkdaRb9xqb6qFOhZNN3H4FU7fam+uOZdSzyA3O4E5NNfoST/RM771dcy4jGM3ucDGYEV9/rwvH4Ab+VWI+fnOaRyUC7+BkOo3n96yaYNweHwf4aHUmPHf+iAidWTL6c3jU2M2bGJX4fCGb/GH4nNypTyjVyCgstXPlrusc4eUfmEsCGGYsEkj4ezRY/XF/SaTwWx1n5srOo8y6SyRxWZEvUx0qGbceoBz8ZTsyxH965GBbxIyOK+7D4n48AwrnmTwftD+QyYtkiELm576dyB6iSkuIAa+nyCDvp/A0tLfT4jAHbwN34u5ZBDm6kbwNNalQRc7x4AAeEZfsXj+OgO6vKoixyOWv4LaFcNcjqnG84rxpH+DihPS4CoMFAm82rj0M0XzL1Gw/0UtUzy+hO1mrR+oxoXzznLhvJMym3TI1zy2MDK3C+edsExH+720V9v7rQlXz4vpSzJooWk5dl55ju/+wodx1m995ZMazFsvKOjskfP0yPPKCH93GfrONa4qB9+uZkDLfqUQjnIPqO8pH170t7ffsf/n825aUlHkLCyKjC52vmUyj5n+fXUSGhqndSdGXrR/XEFBia+k2Du0umpkg7fUaquOpH3hdZ1Xn9Xsp+K8YYYKjrknqRuHzQ0nL0jLEhpZ2hSOvESYwZ6lZcyHupk9I2MHYUzHTOz4RhgVg7AFj6DPb0HNLlzMggqjGimWeQe00/85UamlPuvgtkitYwTeybwu3I7JE6bDvO7/xPrkKtvYTgbTQFsEexnEW8CF0horv35CU/DGZ1+YcP/9E1741caK5gk4ZZeO+c1r97YMHXP33WOGttz7+ktj2Jwgl8BJdafixhWsfw3F7F8iqBbRwQzaQeGyE/Qo1Jw4Kh09cfToCag52/U1kK/lhm3IoRu2QQO8to2+Rl/bBq/RshaJtDCdjOunaTtQEdv9MQpRFLSoxX3LgTjKtTREubBJNxIpiCqsnX0oqges7lEm33UTrcxhhFnz8IRU9lwKbtMfMPp+ux6lP1wP2w+Xn/p3JWvkO8os+4EyLSj+g+oPldoHL8+lOw50/lDJOH1e7mSJGIqm56iMcgzLNRkF5rRgCqIIY/Y0k8CtngyARYJyaEfbc0v6OR7LCWYdpb18CrMPyujxHW0Tqabfp/0ldFzP4z7Vg3OVL8iLfMf752wPIuuTjCzycgdl0Weq5w4WHD0kPsnHrk4mV48dt6Il3ODzNYRbVozjMcB7SsaVxzRSdogDoUEYx/lRNrPSQBrEeYnMv9kT5Fv1wC0jDLgljS2shmHdKdLtDxcxNS/FxaPE51EfSW6Nr1lTPvfiem0wd+K2hguHlDkEurFzZE+Uf1qncEW4j583nwb76c1slxR5h3TeGGq6J6rG6SbTNwQiz8I2FBAn99f1cJRUVBt3QfF5mCmOQWglFOlBH8qkZV+uXr1w6sqFf/0NnQbk+iVz6uouXbt96YK3FG3smHuW3ZinFt20+r6nhV8NH9daWkpb6PFJU28jaTs6kTP7wz4xrHriYYsv7pFna19oFTRRwS6oXnKFikvOtM1b49wim2EQ6+eMYwmYgswRk7MLOJCWxzhxe/s5Vko6Xel7U0j0phaAm00QI/ezZv3KeIOR5HB/ZxuOIMp+i8ljYR8asNk2BEC3DKt+I6BKr+nKDWjf8DHTzS2gm5i1bzROhPFeThNjiqVnDC9shEHjLErjagYztmnny0kz+Y/zZZgjqKgjuLtlMF4j5EONMEJ1jIAyCNRAvhQcAY54cIQQCKoO/MsXWSK8RVkXR3jmCeP5QhnGYaAM8iGuloEazzcEK/HGEccMJYdaIyvMXdNRI48QkDiPEPBtScWkIuboyMdZd6GIzBPFLNnkEsjLkGhT8n1FhcMiFUEAWXbkWnL9geJRzsJch5xX6nCGC8XcGkOhrSJ/Yo9k9Ug2Q/OkZqUgJ2R3j3FdtuidJwO1bl+NSynJrk2Wx3ODxV6Lx2MszbYmY0PlvOxQgbMsz+fMcjsNhaFgnVLamD8kWIUKowEMcpYMTtc1726SsrJHubPUPIMh35rbHBTyLaPrvEaDx1BTWyY4Suoryk2CRxr6LcH9L0mxIMPum/zHp7LCRQaLTSyNueOq2ZdndfogS/VnNcdkVbD7so0VTtHuNNqz1ycFk5wlGLN8pc0em9VkMIH/ZsgxGBTVLDrkItvQfHOJN+AwmbPiVos9x1SgWixyvsliLXQ2O2srKt2uSqfRPKW2oNWUZcpxlIcWz/gJ7X+mPOeWEa3DSgqiLXK2Uc01Fxepdq9FrjMWZEuWxpGjyzplh8mpcBm6V3SrC6SMDfJbPH6Az/t+fcMNv75BFAdfpJM38Ougv7SfJLO79DJUxzlvIF9rYq84YK/BGwNbKyRqArEXUb8vwd6REnwvC+ORa/BYA+lLcDtOIr3PJXD+wqL1PAfbACpILRmmf6+sey4hJ/Po3y2nv5YxIWOLDYd0VHl6wUtpYodI08i/Ru4njWOZLtwYuPqmrh083KfvRQrJtMPI2LXeB5jc6NIkn3fdGIZ8oY5WB7WP29H1gHftWIyw87QHMoRZGdAtzv/2PS1LMps7me+4gejSpI8wBV5EAU55jMhAgmlOeFCSCQHnYXqY41ucY4BGcvX9EKOIOjEEWyS+Y+rzBiEaDCj5oDBfLodubiyDcyYaAp9igf/0+8EP3MtP/G0M2xGjBxPOTv9Ef5c/X9Dy/RjKdya0p6KBQNSvatSBtDPX3xWAclG2jZu+8QyNTkx2xaBNSzjzMbH+VheGOp2J1L/wJX+UkMHfEo4mE0k7mUeW8D2jtE9gC8SZU6DHNBDDfGzZ8A6KiHLlf2C0mdUHrxlQH/D8ueCqDgx1Mpoe9rGN/Sjx0kG2m5MOMiealD4N+tJq2vmX+fq484nwAJKqD9L3Y9Z5wZeMPpCeJ3j7wJ5TkJk2OJPoB6f2pMXKmeQgZTiZmTsC9skpNaH08v00ou/Lh42CiGzXwbZHM2tWfsS3plXMFmh3v84k6fH/Hsc9A/Cnb0TJPdEWoe+kwGcPqoOzerYxkxi7F36W3sETYBWuqZ/imvLwvRYH9w6Iu8BhYh7XgzrZFrb5TC2Q6WaZ3rGMPkCX0AeW3TH2lR5NS/edpvW8Qn+kd9OROY/+9s1H5rRdYoF/aQ+c64UHNJptWSqm0o0W0nOCkMk4H3SLVyX75tdcCqytwyESZFt85UFlIMIcDwR9ujUsEg+YeC3xoUtwtwjML47dFah2m98bCOreoI48QeWbBG/neucuCkQC18+lX+28h/5rzg14s3iOJ+9t9rS39D68XfrY5yB9/thSDO4qSWk7U8Pn/mNT5+M/aarY8mu+qTCybRnt38rzS5x49MpbNl/52HH9bivAsgmtmGTqgiMg6HHXY1aY5fX6He0/0tmh/WLzwpXhzsTcWyZnbF3aoL1swZNGC1nTTXps3TOeInHGwMaQMgSAAQ7AuI09bPJWAclCLcHqUO3EIb9+371H6eX0SfrXV1cJpOv5S6D+sBgOU7LqVSiBabDt6Ocnnn+a/m06r8OrOBca+f8FUcr9zjhX5CTaGg8rAjOvBoRg2AXumDR1z5o1UyJzws/2Wr98up88/aW11/EOFB8XtTVTBDJlTXhOhJKpBYfoF0PoF1AwBAoObT50KO3TLGJLB++pySS9p3buO2pHxoLDDZ+mwWE13SeDzpxAZc6MOn1XPKTfy+gJvL+zM9+Z6T/mLsDwltnSGbHWQ6y/+TduhNfNyHbRQPTIoh//PCIKMe654JHIOroVqtahHh25Eqro1nXHhMdT77yTOpE68U7qHeFx+WN6zx/onvffh4V/EFENodekboRb6DrhGrgx8917poyMP4SnGFCFH5TJsWOo7g96Mb0ZN7h++YPfFnklL8zjWKaK386MVrD6wbK07x7X1ezI8CuZ/cmIs4vtZnOc9nBvczbv1EAQYZk9hfq43cFs1gof036udnWxweCBueOHzLphj77r20f0O8q4MQcyLpaBpP/TkKZrF3Xq8ZSH4cLv9arJBLLoO7029Z3hgId9i8x2j+3hWJhv3NnjulJSnv5M2Wp31PNHkqPebhl4xp+EM0/s4njohol/27r1b3Q/vZ3uZyGxy+LKN+bn/Z3+NXb1xNEmk6nI6cz95SU//uKiXK2kPLiJPvPIuFunjA6HyhSn0vPLn0OgK8epuWrCd9Dr3+l7JBEO5Lvlx359GGZfXaRqg7OGiby4s8vykRcX5qlbTWaTIbvYbHPlOpsacj6qcTVYJ8/GEk3NJZGs3GDbqFxwRvxh57xZYduYQDg3MCWZc15fidybtIjNdh//TwL4ZrzoyzARWxxn7y6hZFffxcpwWk3v/+yvlChLzpyFiz+Fx+THaDUcYwccP/s8HcUIiPR6apQ45+yOY8c4DqVtSen95cHaJhPPusJznmcmV3XYyuQx/Pz/AAfdhq542o2QsWrDMBCGfyVOSjOUDn4AdSlJiY1sMCTZ0hQHQqcM6RyMahsSKVj2EChd+wgd+wZ9s7xDz4pKl0IrkO7T3a+73wZwhU8wnNcNHhwzDPDiuIMLvDvu4hYnxx4G7M5xD9fsyXGf8q+kZN4l3e7tq5YZfDw77tDcN8ddPOLDsQef+Y574Cxx3Kd8gQU0DjiiQokcBWpwDJFhRDGGQIQEY+IV6SQU0RwGezR0GpvBQh+OVZkXNR9mIx6LKBnzlZaKz82+MUaSZGmV0k7JqJOit1hKJasy04p4TcWcmu6wJRHWMm92W4LUimsbK1JIayskYxwz2r81PlciTBBgSvv7M5BqVae6yiWPQ8Fn/McAXaJJMA1a8/9wu7FFQ2Vtf4mwE0IbW2fYyMqUWnEholAIwf/u+QXtVlqxAAAAeNpt0meTFVUUheH7DhkJEgQJgpIFhdvn7NM9gxKGCZKzKGZyUHJGySAgSq7i5wrFfYdPdFXX+tRP9V61Wl2tt8//rdbh1vueV29eWl2tYXQxjOGMYCSjGM0YxvIB4xjPBCbyIZOYzBSm8hHTmM7HzGAms5jNJ8xhLp/yGfOYzwIWsojFLOFzlrKML/iS5aygTUUiExRqGrrpYSVf8TWrWM0a1tLLOvroZ4BBvmE9G9jIJjazha1sYzs72MkudvMte/iO79nLD/zIT/zML/zKb+xjPwc4yCEOc4SjHOM4v/MHJzjJKU5zhrOc4zwXuMglLnOFq/zJX1zjOje4yS1uc4e73ONv7vOAh/zDI/7lPx7zhKc84zkveDnqwsljg1W7bVZmMrMZZjFrszG7zZ63mfSSXtJLekkv6SW9pJf00pBX6VV6lV6lV+lVepVepVfpVXpJL+klvaSX9JJe6njZu7J3Ze/K3pW9K3tXbg9915id/wid0Amd0Amd0Amd0Il3TueesJ+wn7CfsJ+wn7CfsJ+wn7CfsJ+wn7CfsJ+wn7CfsJ+wn0h6SS/pZb2sl/WyXtbLelkv62W9rBd6oRd6oRd6oRd6oRd6oVf0il7RK3pFr+gVvaJX9IperVfr1Xq1Xq1X69V6tV6tV+s1eo1eo9foNXqNXtPxijsr7qy4s+LOijsr7qy0h75rzG6zx+w115l9Zr85YA520l0Wd1ncZXGXxV0Wd1ncZama1x+EcTsAAAAB//8AAnjaY2BgYGQAgosrjpwF0ZcUq9bCaABTzgdAAAA=") format("woff"),
     23       url("./Genericons.ttf") format("truetype"),
     24       url("./Genericons.svg#Genericons") format("svg");
     25  font-weight: normal;
     26  font-style: normal;
     27}
     28
     29@media screen and (-webkit-min-device-pixel-ratio:0) {
     30  @font-face {
     31    font-family: "Genericons";
     32    src: url("./Genericons.svg#Genericons") format("svg");
     33  }
     34}
     35
     36
     37/**
     38 * All Genericons
     39 */
     40
     41.genericon {
     42        font-size: 16px;
     43        vertical-align: top;
     44        text-align: center;
     45        -moz-transition: color .1s ease-in 0;
     46        -webkit-transition: color .1s ease-in 0;
     47        display: inline-block;
     48        font-family: "Genericons";
     49        font-style: normal;
     50        font-weight: normal;
     51        font-variant: normal;
     52        line-height: 1;
     53        text-decoration: inherit;
     54        text-transform: none;
     55        -moz-osx-font-smoothing: grayscale;
     56        -webkit-font-smoothing: antialiased;
     57        speak: none;
     58}
     59
     60
     61/**
     62 * Helper classes
     63 */
     64
     65.genericon-rotate-90 {
     66        -webkit-transform: rotate(90deg);
     67        -moz-transform: rotate(90deg);
     68        -ms-transform: rotate(90deg);
     69        -o-transform: rotate(90deg);
     70        transform: rotate(90deg);
     71        filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
     72}
     73
     74.genericon-rotate-180 {
     75        -webkit-transform: rotate(180deg);
     76        -moz-transform: rotate(180deg);
     77        -ms-transform: rotate(180deg);
     78        -o-transform: rotate(180deg);
     79        transform: rotate(180deg);
     80        filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
     81}
     82
     83.genericon-rotate-270 {
     84        -webkit-transform: rotate(270deg);
     85        -moz-transform: rotate(270deg);
     86        -ms-transform: rotate(270deg);
     87        -o-transform: rotate(270deg);
     88        transform: rotate(270deg);
     89        filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
     90}
     91
     92.genericon-flip-horizontal {
     93        -webkit-transform: scale(-1, 1);
     94        -moz-transform: scale(-1, 1);
     95        -ms-transform: scale(-1, 1);
     96        -o-transform: scale(-1, 1);
     97        transform: scale(-1, 1);
     98}
     99
     100.genericon-flip-vertical {
     101        -webkit-transform: scale(1, -1);
     102        -moz-transform: scale(1, -1);
     103        -ms-transform: scale(1, -1);
     104        -o-transform: scale(1, -1);
     105        transform: scale(1, -1);
     106}
     107
     108
     109/**
     110 * Individual icons
     111 */
     112
     113.genericon-404:before { content: "\f423"; }
     114.genericon-activity:before { content: "\f508"; }
     115.genericon-anchor:before { content: "\f509"; }
     116.genericon-aside:before { content: "\f101"; }
     117.genericon-attachment:before { content: "\f416"; }
     118.genericon-audio:before { content: "\f109"; }
     119.genericon-bold:before { content: "\f471"; }
     120.genericon-book:before { content: "\f444"; }
     121.genericon-bug:before { content: "\f50a"; }
     122.genericon-cart:before { content: "\f447"; }
     123.genericon-category:before { content: "\f301"; }
     124.genericon-chat:before { content: "\f108"; }
     125.genericon-checkmark:before { content: "\f418"; }
     126.genericon-close:before { content: "\f405"; }
     127.genericon-close-alt:before { content: "\f406"; }
     128.genericon-cloud:before { content: "\f426"; }
     129.genericon-cloud-download:before { content: "\f440"; }
     130.genericon-cloud-upload:before { content: "\f441"; }
     131.genericon-code:before { content: "\f462"; }
     132.genericon-codepen:before { content: "\f216"; }
     133.genericon-cog:before { content: "\f445"; }
     134.genericon-collapse:before { content: "\f432"; }
     135.genericon-comment:before { content: "\f300"; }
     136.genericon-day:before { content: "\f305"; }
     137.genericon-digg:before { content: "\f221"; }
     138.genericon-document:before { content: "\f443"; }
     139.genericon-dot:before { content: "\f428"; }
     140.genericon-downarrow:before { content: "\f502"; }
     141.genericon-download:before { content: "\f50b"; }
     142.genericon-draggable:before { content: "\f436"; }
     143.genericon-dribbble:before { content: "\f201"; }
     144.genericon-dropbox:before { content: "\f225"; }
     145.genericon-dropdown:before { content: "\f433"; }
     146.genericon-dropdown-left:before { content: "\f434"; }
     147.genericon-edit:before { content: "\f411"; }
     148.genericon-ellipsis:before { content: "\f476"; }
     149.genericon-expand:before { content: "\f431"; }
     150.genericon-external:before { content: "\f442"; }
     151.genericon-facebook:before { content: "\f203"; }
     152.genericon-facebook-alt:before { content: "\f204"; }
     153.genericon-fastforward:before { content: "\f458"; }
     154.genericon-feed:before { content: "\f413"; }
     155.genericon-flag:before { content: "\f468"; }
     156.genericon-flickr:before { content: "\f211"; }
     157.genericon-foursquare:before { content: "\f226"; }
     158.genericon-fullscreen:before { content: "\f474"; }
     159.genericon-gallery:before { content: "\f103"; }
     160.genericon-github:before { content: "\f200"; }
     161.genericon-googleplus:before { content: "\f206"; }
     162.genericon-googleplus-alt:before { content: "\f218"; }
     163.genericon-handset:before { content: "\f50c"; }
     164.genericon-heart:before { content: "\f461"; }
     165.genericon-help:before { content: "\f457"; }
     166.genericon-hide:before { content: "\f404"; }
     167.genericon-hierarchy:before { content: "\f505"; }
     168.genericon-home:before { content: "\f409"; }
     169.genericon-image:before { content: "\f102"; }
     170.genericon-info:before { content: "\f455"; }
     171.genericon-instagram:before { content: "\f215"; }
     172.genericon-italic:before { content: "\f472"; }
     173.genericon-key:before { content: "\f427"; }
     174.genericon-leftarrow:before { content: "\f503"; }
     175.genericon-link:before { content: "\f107"; }
     176.genericon-linkedin:before { content: "\f207"; }
     177.genericon-linkedin-alt:before { content: "\f208"; }
     178.genericon-location:before { content: "\f417"; }
     179.genericon-lock:before { content: "\f470"; }
     180.genericon-mail:before { content: "\f410"; }
     181.genericon-maximize:before { content: "\f422"; }
     182.genericon-menu:before { content: "\f419"; }
     183.genericon-microphone:before { content: "\f50d"; }
     184.genericon-minimize:before { content: "\f421"; }
     185.genericon-minus:before { content: "\f50e"; }
     186.genericon-month:before { content: "\f307"; }
     187.genericon-move:before { content: "\f50f"; }
     188.genericon-next:before { content: "\f429"; }
     189.genericon-notice:before { content: "\f456"; }
     190.genericon-paintbrush:before { content: "\f506"; }
     191.genericon-path:before { content: "\f219"; }
     192.genericon-pause:before { content: "\f448"; }
     193.genericon-phone:before { content: "\f437"; }
     194.genericon-picture:before { content: "\f473"; }
     195.genericon-pinned:before { content: "\f308"; }
     196.genericon-pinterest:before { content: "\f209"; }
     197.genericon-pinterest-alt:before { content: "\f210"; }
     198.genericon-play:before { content: "\f452"; }
     199.genericon-plugin:before { content: "\f439"; }
     200.genericon-plus:before { content: "\f510"; }
     201.genericon-pocket:before { content: "\f224"; }
     202.genericon-polldaddy:before { content: "\f217"; }
     203.genericon-portfolio:before { content: "\f460"; }
     204.genericon-previous:before { content: "\f430"; }
     205.genericon-print:before { content: "\f469"; }
     206.genericon-quote:before { content: "\f106"; }
     207.genericon-rating-empty:before { content: "\f511"; }
     208.genericon-rating-full:before { content: "\f512"; }
     209.genericon-rating-half:before { content: "\f513"; }
     210.genericon-reddit:before { content: "\f222"; }
     211.genericon-refresh:before { content: "\f420"; }
     212.genericon-reply:before { content: "\f412"; }
     213.genericon-reply-alt:before { content: "\f466"; }
     214.genericon-reply-single:before { content: "\f467"; }
     215.genericon-rewind:before { content: "\f459"; }
     216.genericon-rightarrow:before { content: "\f501"; }
     217.genericon-search:before { content: "\f400"; }
     218.genericon-send-to-phone:before { content: "\f438"; }
     219.genericon-send-to-tablet:before { content: "\f454"; }
     220.genericon-share:before { content: "\f415"; }
     221.genericon-show:before { content: "\f403"; }
     222.genericon-shuffle:before { content: "\f514"; }
     223.genericon-sitemap:before { content: "\f507"; }
     224.genericon-skip-ahead:before { content: "\f451"; }
     225.genericon-skip-back:before { content: "\f450"; }
     226.genericon-skype:before { content: "\f220"; }
     227.genericon-spam:before { content: "\f424"; }
     228.genericon-spotify:before { content: "\f515"; }
     229.genericon-standard:before { content: "\f100"; }
     230.genericon-star:before { content: "\f408"; }
     231.genericon-status:before { content: "\f105"; }
     232.genericon-stop:before { content: "\f449"; }
     233.genericon-stumbleupon:before { content: "\f223"; }
     234.genericon-subscribe:before { content: "\f463"; }
     235.genericon-subscribed:before { content: "\f465"; }
     236.genericon-summary:before { content: "\f425"; }
     237.genericon-tablet:before { content: "\f453"; }
     238.genericon-tag:before { content: "\f302"; }
     239.genericon-time:before { content: "\f303"; }
     240.genericon-top:before { content: "\f435"; }
     241.genericon-trash:before { content: "\f407"; }
     242.genericon-tumblr:before { content: "\f214"; }
     243.genericon-twitch:before { content: "\f516"; }
     244.genericon-twitter:before { content: "\f202"; }
     245.genericon-unapprove:before { content: "\f446"; }
     246.genericon-unsubscribe:before { content: "\f464"; }
     247.genericon-unzoom:before { content: "\f401"; }
     248.genericon-uparrow:before { content: "\f500"; }
     249.genericon-user:before { content: "\f304"; }
     250.genericon-video:before { content: "\f104"; }
     251.genericon-videocamera:before { content: "\f517"; }
     252.genericon-vimeo:before { content: "\f212"; }
     253.genericon-warning:before { content: "\f414"; }
     254.genericon-website:before { content: "\f475"; }
     255.genericon-week:before { content: "\f306"; }
     256.genericon-wordpress:before { content: "\f205"; }
     257.genericon-xpost:before { content: "\f504"; }
     258.genericon-youtube:before { content: "\f213"; }
     259.genericon-zoom:before { content: "\f402"; }
     260
     261
     262
     263
  • src/wp-content/themes/twentysixteen/header.php

     
     1<?php
     2/**
     3 * The template for displaying the header
     4 *
     5 * Displays all of the head element and everything up until the "site-content" div.
     6 *
     7 * @package WordPress
     8 * @subpackage Twenty_Sixteen
     9 * @since Twenty Sixteen 1.0
     10 */
     11
     12?><!DOCTYPE html>
     13<html <?php language_attributes(); ?> class="no-js">
     14<head>
     15        <meta charset="<?php bloginfo( 'charset' ); ?>">
     16        <meta name="viewport" content="width=device-width, initial-scale=1">
     17        <link rel="profile" href="http://gmpg.org/xfn/11">
     18        <?php if ( is_singular() && pings_open( get_queried_object() ) ) : ?>
     19        <link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>">
     20        <?php endif; ?>
     21        <?php wp_head(); ?>
     22</head>
     23
     24<body <?php body_class(); ?>>
     25<div id="page" class="site">
     26        <div class="site-inner">
     27                <a class="skip-link screen-reader-text" href="#content"><?php _e( 'Skip to content', 'twentysixteen' ); ?></a>
     28
     29                <header id="masthead" class="site-header" role="banner">
     30                        <div class="site-header-main">
     31                                <div class="site-branding">
     32                                        <?php twentysixteen_the_custom_logo(); ?>
     33
     34                                        <?php if ( is_front_page() && is_home() ) : ?>
     35                                                <h1 class="site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></h1>
     36                                        <?php else : ?>
     37                                                <p class="site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></p>
     38                                        <?php endif;
     39
     40                                        $description = get_bloginfo( 'description', 'display' );
     41                                        if ( $description || is_customize_preview() ) : ?>
     42                                                <p class="site-description"><?php echo $description; ?></p>
     43                                        <?php endif; ?>
     44                                </div><!-- .site-branding -->
     45
     46                                <?php if ( has_nav_menu( 'primary' ) || has_nav_menu( 'social' ) ) : ?>
     47                                        <button id="menu-toggle" class="menu-toggle"><?php _e( 'Menu', 'twentysixteen' ); ?></button>
     48
     49                                        <div id="site-header-menu" class="site-header-menu">
     50                                                <?php if ( has_nav_menu( 'primary' ) ) : ?>
     51                                                        <nav id="site-navigation" class="main-navigation" role="navigation" aria-label="<?php esc_attr_e( 'Primary Menu', 'twentysixteen' ); ?>">
     52                                                                <?php
     53                                                                        wp_nav_menu( array(
     54                                                                                'theme_location' => 'primary',
     55                                                                                'menu_class'     => 'primary-menu',
     56                                                                         ) );
     57                                                                ?>
     58                                                        </nav><!-- .main-navigation -->
     59                                                <?php endif; ?>
     60
     61                                                <?php if ( has_nav_menu( 'social' ) ) : ?>
     62                                                        <nav id="social-navigation" class="social-navigation" role="navigation" aria-label="<?php esc_attr_e( 'Social Links Menu', 'twentysixteen' ); ?>">
     63                                                                <?php
     64                                                                        wp_nav_menu( array(
     65                                                                                'theme_location' => 'social',
     66                                                                                'menu_class'     => 'social-links-menu',
     67                                                                                'depth'          => 1,
     68                                                                                'link_before'    => '<span class="screen-reader-text">',
     69                                                                                'link_after'     => '</span>',
     70                                                                        ) );
     71                                                                ?>
     72                                                        </nav><!-- .social-navigation -->
     73                                                <?php endif; ?>
     74                                        </div><!-- .site-header-menu -->
     75                                <?php endif; ?>
     76                        </div><!-- .site-header-main -->
     77
     78                        <?php if ( get_header_image() ) : ?>
     79                                <?php
     80                                        /**
     81                                         * Filter the default twentysixteen custom header sizes attribute.
     82                                         *
     83                                         * @since Twenty Sixteen 1.0
     84                                         *
     85                                         * @param string $custom_header_sizes sizes attribute
     86                                         * for Custom Header. Default '(max-width: 709px) 85vw,
     87                                         * (max-width: 909px) 81vw, (max-width: 1362px) 88vw, 1200px'.
     88                                         */
     89                                        $custom_header_sizes = apply_filters( 'twentysixteen_custom_header_sizes', '(max-width: 709px) 85vw, (max-width: 909px) 81vw, (max-width: 1362px) 88vw, 1200px' );
     90                                ?>
     91                                <div class="header-image">
     92                                        <a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home">
     93                                                <img src="<?php header_image(); ?>" srcset="<?php echo esc_attr( wp_get_attachment_image_srcset( get_custom_header()->attachment_id ) ); ?>" sizes="<?php echo esc_attr( $custom_header_sizes ); ?>" width="<?php echo esc_attr( get_custom_header()->width ); ?>" height="<?php echo esc_attr( get_custom_header()->height ); ?>" alt="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>">
     94                                        </a>
     95                                </div><!-- .header-image -->
     96                        <?php endif; // End header image check. ?>
     97                </header><!-- .site-header -->
     98
     99                <div id="content" class="site-content">
  • src/wp-content/themes/twentysixteen/image.php

     
     1<?php
     2/**
     3 * The template for displaying image attachments
     4 *
     5 * @package WordPress
     6 * @subpackage Twenty_Sixteen
     7 * @since Twenty Sixteen 1.0
     8 */
     9
     10get_header(); ?>
     11
     12        <div id="primary" class="content-area">
     13                <main id="main" class="site-main" role="main">
     14
     15                        <?php
     16                                // Start the loop.
     17                                while ( have_posts() ) : the_post();
     18                        ?>
     19
     20                                <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
     21
     22                                        <nav id="image-navigation" class="navigation image-navigation">
     23                                                <div class="nav-links">
     24                                                        <div class="nav-previous"><?php previous_image_link( false, __( 'Previous Image', 'twentysixteen' ) ); ?></div>
     25                                                        <div class="nav-next"><?php next_image_link( false, __( 'Next Image', 'twentysixteen' ) ); ?></div>
     26                                                </div><!-- .nav-links -->
     27                                        </nav><!-- .image-navigation -->
     28
     29                                        <header class="entry-header">
     30                                                <?php the_title( '<h1 class="entry-title">', '</h1>' ); ?>
     31                                        </header><!-- .entry-header -->
     32
     33                                        <div class="entry-content">
     34
     35                                                <div class="entry-attachment">
     36                                                        <?php
     37                                                                /**
     38                                                                 * Filter the default twentysixteen image attachment size.
     39                                                                 *
     40                                                                 * @since Twenty Sixteen 1.0
     41                                                                 *
     42                                                                 * @param string $image_size Image size. Default 'large'.
     43                                                                 */
     44                                                                $image_size = apply_filters( 'twentysixteen_attachment_size', 'large' );
     45
     46                                                                echo wp_get_attachment_image( get_the_ID(), $image_size );
     47                                                        ?>
     48
     49                                                        <?php twentysixteen_excerpt( 'entry-caption' ); ?>
     50
     51                                                </div><!-- .entry-attachment -->
     52
     53                                                <?php
     54                                                        the_content();
     55                                                        wp_link_pages( array(
     56                                                                'before'      => '<div class="page-links"><span class="page-links-title">' . __( 'Pages:', 'twentysixteen' ) . '</span>',
     57                                                                'after'       => '</div>',
     58                                                                'link_before' => '<span>',
     59                                                                'link_after'  => '</span>',
     60                                                                'pagelink'    => '<span class="screen-reader-text">' . __( 'Page', 'twentysixteen' ) . ' </span>%',
     61                                                                'separator'   => '<span class="screen-reader-text">, </span>',
     62                                                        ) );
     63                                                ?>
     64                                        </div><!-- .entry-content -->
     65
     66                                        <footer class="entry-footer">
     67                                                <?php twentysixteen_entry_meta(); ?>
     68                                                <?php
     69                                                        // Retrieve attachment metadata.
     70                                                        $metadata = wp_get_attachment_metadata();
     71                                                        if ( $metadata ) {
     72                                                                printf( '<span class="full-size-link"><span class="screen-reader-text">%1$s </span><a href="%2$s">%3$s &times; %4$s</a></span>',
     73                                                                        esc_html_x( 'Full size', 'Used before full size attachment link.', 'twentysixteen' ),
     74                                                                        esc_url( wp_get_attachment_url() ),
     75                                                                        absint( $metadata['width'] ),
     76                                                                        absint( $metadata['height'] )
     77                                                                );
     78                                                        }
     79                                                ?>
     80                                                <?php
     81                                                        edit_post_link(
     82                                                                sprintf(
     83                                                                        /* translators: %s: Name of current post */
     84                                                                        __( 'Edit<span class="screen-reader-text"> "%s"</span>', 'twentysixteen' ),
     85                                                                        get_the_title()
     86                                                                ),
     87                                                                '<span class="edit-link">',
     88                                                                '</span>'
     89                                                        );
     90                                                ?>
     91                                        </footer><!-- .entry-footer -->
     92                                </article><!-- #post-## -->
     93
     94                                <?php
     95                                        // If comments are open or we have at least one comment, load up the comment template.
     96                                        if ( comments_open() || get_comments_number() ) {
     97                                                comments_template();
     98                                        }
     99
     100                                        // Parent post navigation.
     101                                        the_post_navigation( array(
     102                                                'prev_text' => _x( '<span class="meta-nav">Published in</span><span class="post-title">%title</span>', 'Parent post link', 'twentysixteen' ),
     103                                        ) );
     104                                // End the loop.
     105                                endwhile;
     106                        ?>
     107
     108                </main><!-- .site-main -->
     109        </div><!-- .content-area -->
     110
     111<?php get_sidebar(); ?>
     112<?php get_footer(); ?>
  • src/wp-content/themes/twentysixteen/inc/back-compat.php

     
     1<?php
     2/**
     3 * Twenty Sixteen back compat functionality
     4 *
     5 * Prevents Twenty Sixteen from running on WordPress versions prior to 4.4,
     6 * since this theme is not meant to be backward compatible beyond that and
     7 * relies on many newer functions and markup changes introduced in 4.4.
     8 *
     9 * @package WordPress
     10 * @subpackage Twenty_Sixteen
     11 * @since Twenty Sixteen 1.0
     12 */
     13
     14/**
     15 * Prevent switching to Twenty Sixteen on old versions of WordPress.
     16 *
     17 * Switches to the default theme.
     18 *
     19 * @since Twenty Sixteen 1.0
     20 */
     21function twentysixteen_switch_theme() {
     22        switch_theme( WP_DEFAULT_THEME, WP_DEFAULT_THEME );
     23
     24        unset( $_GET['activated'] );
     25
     26        add_action( 'admin_notices', 'twentysixteen_upgrade_notice' );
     27}
     28add_action( 'after_switch_theme', 'twentysixteen_switch_theme' );
     29
     30/**
     31 * Adds a message for unsuccessful theme switch.
     32 *
     33 * Prints an update nag after an unsuccessful attempt to switch to
     34 * Twenty Sixteen on WordPress versions prior to 4.4.
     35 *
     36 * @since Twenty Sixteen 1.0
     37 *
     38 * @global string $wp_version WordPress version.
     39 */
     40function twentysixteen_upgrade_notice() {
     41        $message = sprintf( __( 'Twenty Sixteen requires at least WordPress version 4.4. You are running version %s. Please upgrade and try again.', 'twentysixteen' ), $GLOBALS['wp_version'] );
     42        printf( '<div class="error"><p>%s</p></div>', $message );
     43}
     44
     45/**
     46 * Prevents the Customizer from being loaded on WordPress versions prior to 4.4.
     47 *
     48 * @since Twenty Sixteen 1.0
     49 *
     50 * @global string $wp_version WordPress version.
     51 */
     52function twentysixteen_customize() {
     53        wp_die( sprintf( __( 'Twenty Sixteen requires at least WordPress version 4.4. You are running version %s. Please upgrade and try again.', 'twentysixteen' ), $GLOBALS['wp_version'] ), '', array(
     54                'back_link' => true,
     55        ) );
     56}
     57add_action( 'load-customize.php', 'twentysixteen_customize' );
     58
     59/**
     60 * Prevents the Theme Preview from being loaded on WordPress versions prior to 4.4.
     61 *
     62 * @since Twenty Sixteen 1.0
     63 *
     64 * @global string $wp_version WordPress version.
     65 */
     66function twentysixteen_preview() {
     67        if ( isset( $_GET['preview'] ) ) {
     68                wp_die( sprintf( __( 'Twenty Sixteen requires at least WordPress version 4.4. You are running version %s. Please upgrade and try again.', 'twentysixteen' ), $GLOBALS['wp_version'] ) );
     69        }
     70}
     71add_action( 'template_redirect', 'twentysixteen_preview' );
  • src/wp-content/themes/twentysixteen/inc/customizer.php

     
     1<?php
     2/**
     3 * Twenty Sixteen Customizer functionality
     4 *
     5 * @package WordPress
     6 * @subpackage Twenty_Sixteen
     7 * @since Twenty Sixteen 1.0
     8 */
     9
     10/**
     11 * Sets up the WordPress core custom header and custom background features.
     12 *
     13 * @since Twenty Sixteen 1.0
     14 *
     15 * @see twentysixteen_header_style()
     16 */
     17function twentysixteen_custom_header_and_background() {
     18        $color_scheme             = twentysixteen_get_color_scheme();
     19        $default_background_color = trim( $color_scheme[0], '#' );
     20        $default_text_color       = trim( $color_scheme[3], '#' );
     21
     22        /**
     23         * Filter the arguments used when adding 'custom-background' support in Twenty Sixteen.
     24         *
     25         * @since Twenty Sixteen 1.0
     26         *
     27         * @param array $args {
     28         *     An array of custom-background support arguments.
     29         *
     30         *     @type string $default-color Default color of the background.
     31         * }
     32         */
     33        add_theme_support( 'custom-background', apply_filters( 'twentysixteen_custom_background_args', array(
     34                'default-color' => $default_background_color,
     35        ) ) );
     36
     37        /**
     38         * Filter the arguments used when adding 'custom-header' support in Twenty Sixteen.
     39         *
     40         * @since Twenty Sixteen 1.0
     41         *
     42         * @param array $args {
     43         *     An array of custom-header support arguments.
     44         *
     45         *     @type string $default-text-color Default color of the header text.
     46         *     @type int      $width            Width in pixels of the custom header image. Default 1200.
     47         *     @type int      $height           Height in pixels of the custom header image. Default 280.
     48         *     @type bool     $flex-height      Whether to allow flexible-height header images. Default true.
     49         *     @type callable $wp-head-callback Callback function used to style the header image and text
     50         *                                      displayed on the blog.
     51         * }
     52         */
     53        add_theme_support( 'custom-header', apply_filters( 'twentysixteen_custom_header_args', array(
     54                'default-text-color'     => $default_text_color,
     55                'width'                  => 1200,
     56                'height'                 => 280,
     57                'flex-height'            => true,
     58                'wp-head-callback'       => 'twentysixteen_header_style',
     59        ) ) );
     60}
     61add_action( 'after_setup_theme', 'twentysixteen_custom_header_and_background' );
     62
     63if ( ! function_exists( 'twentysixteen_header_style' ) ) :
     64/**
     65 * Styles the header text displayed on the site.
     66 *
     67 * Create your own twentysixteen_header_style() function to override in a child theme.
     68 *
     69 * @since Twenty Sixteen 1.0
     70 *
     71 * @see twentysixteen_custom_header_and_background().
     72 */
     73function twentysixteen_header_style() {
     74        // If the header text option is untouched, let's bail.
     75        if ( display_header_text() ) {
     76                return;
     77        }
     78
     79        // If the header text has been hidden.
     80        ?>
     81        <style type="text/css" id="twentysixteen-header-css">
     82                .site-branding {
     83                        margin: 0 auto 0 0;
     84                }
     85
     86                .site-branding .site-title,
     87                .site-description {
     88                        clip: rect(1px, 1px, 1px, 1px);
     89                        position: absolute;
     90                }
     91        </style>
     92        <?php
     93}
     94endif; // twentysixteen_header_style
     95
     96/**
     97 * Adds postMessage support for site title and description for the Customizer.
     98 *
     99 * @since Twenty Sixteen 1.0
     100 *
     101 * @param WP_Customize_Manager $wp_customize The Customizer object.
     102 */
     103function twentysixteen_customize_register( $wp_customize ) {
     104        $color_scheme = twentysixteen_get_color_scheme();
     105
     106        $wp_customize->get_setting( 'blogname' )->transport         = 'postMessage';
     107        $wp_customize->get_setting( 'blogdescription' )->transport  = 'postMessage';
     108
     109        if ( isset( $wp_customize->selective_refresh ) ) {
     110                $wp_customize->selective_refresh->add_partial( 'blogname', array(
     111                        'selector' => '.site-title a',
     112                        'container_inclusive' => false,
     113                        'render_callback' => 'twentysixteen_customize_partial_blogname',
     114                ) );
     115                $wp_customize->selective_refresh->add_partial( 'blogdescription', array(
     116                        'selector' => '.site-description',
     117                        'container_inclusive' => false,
     118                        'render_callback' => 'twentysixteen_customize_partial_blogdescription',
     119                ) );
     120        }
     121
     122        // Add color scheme setting and control.
     123        $wp_customize->add_setting( 'color_scheme', array(
     124                'default'           => 'default',
     125                'sanitize_callback' => 'twentysixteen_sanitize_color_scheme',
     126                'transport'         => 'postMessage',
     127        ) );
     128
     129        $wp_customize->add_control( 'color_scheme', array(
     130                'label'    => __( 'Base Color Scheme', 'twentysixteen' ),
     131                'section'  => 'colors',
     132                'type'     => 'select',
     133                'choices'  => twentysixteen_get_color_scheme_choices(),
     134                'priority' => 1,
     135        ) );
     136
     137        // Add page background color setting and control.
     138        $wp_customize->add_setting( 'page_background_color', array(
     139                'default'           => $color_scheme[1],
     140                'sanitize_callback' => 'sanitize_hex_color',
     141                'transport'         => 'postMessage',
     142        ) );
     143
     144        $wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'page_background_color', array(
     145                'label'       => __( 'Page Background Color', 'twentysixteen' ),
     146                'section'     => 'colors',
     147        ) ) );
     148
     149        // Remove the core header textcolor control, as it shares the main text color.
     150        $wp_customize->remove_control( 'header_textcolor' );
     151
     152        // Add link color setting and control.
     153        $wp_customize->add_setting( 'link_color', array(
     154                'default'           => $color_scheme[2],
     155                'sanitize_callback' => 'sanitize_hex_color',
     156                'transport'         => 'postMessage',
     157        ) );
     158
     159        $wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'link_color', array(
     160                'label'       => __( 'Link Color', 'twentysixteen' ),
     161                'section'     => 'colors',
     162        ) ) );
     163
     164        // Add main text color setting and control.
     165        $wp_customize->add_setting( 'main_text_color', array(
     166                'default'           => $color_scheme[3],
     167                'sanitize_callback' => 'sanitize_hex_color',
     168                'transport'         => 'postMessage',
     169        ) );
     170
     171        $wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'main_text_color', array(
     172                'label'       => __( 'Main Text Color', 'twentysixteen' ),
     173                'section'     => 'colors',
     174        ) ) );
     175
     176        // Add secondary text color setting and control.
     177        $wp_customize->add_setting( 'secondary_text_color', array(
     178                'default'           => $color_scheme[4],
     179                'sanitize_callback' => 'sanitize_hex_color',
     180                'transport'         => 'postMessage',
     181        ) );
     182
     183        $wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'secondary_text_color', array(
     184                'label'       => __( 'Secondary Text Color', 'twentysixteen' ),
     185                'section'     => 'colors',
     186        ) ) );
     187}
     188add_action( 'customize_register', 'twentysixteen_customize_register', 11 );
     189
     190/**
     191 * Render the site title for the selective refresh partial.
     192 *
     193 * @since Twenty Sixteen 1.2
     194 * @see twentysixteen_customize_register()
     195 *
     196 * @return void
     197 */
     198function twentysixteen_customize_partial_blogname() {
     199        bloginfo( 'name' );
     200}
     201
     202/**
     203 * Render the site tagline for the selective refresh partial.
     204 *
     205 * @since Twenty Sixteen 1.2
     206 * @see twentysixteen_customize_register()
     207 *
     208 * @return void
     209 */
     210function twentysixteen_customize_partial_blogdescription() {
     211        bloginfo( 'description' );
     212}
     213
     214/**
     215 * Registers color schemes for Twenty Sixteen.
     216 *
     217 * Can be filtered with {@see 'twentysixteen_color_schemes'}.
     218 *
     219 * The order of colors in a colors array:
     220 * 1. Main Background Color.
     221 * 2. Page Background Color.
     222 * 3. Link Color.
     223 * 4. Main Text Color.
     224 * 5. Secondary Text Color.
     225 *
     226 * @since Twenty Sixteen 1.0
     227 *
     228 * @return array An associative array of color scheme options.
     229 */
     230function twentysixteen_get_color_schemes() {
     231        /**
     232         * Filter the color schemes registered for use with Twenty Sixteen.
     233         *
     234         * The default schemes include 'default', 'dark', 'gray', 'red', and 'yellow'.
     235         *
     236         * @since Twenty Sixteen 1.0
     237         *
     238         * @param array $schemes {
     239         *     Associative array of color schemes data.
     240         *
     241         *     @type array $slug {
     242         *         Associative array of information for setting up the color scheme.
     243         *
     244         *         @type string $label  Color scheme label.
     245         *         @type array  $colors HEX codes for default colors prepended with a hash symbol ('#').
     246         *                              Colors are defined in the following order: Main background, page
     247         *                              background, link, main text, secondary text.
     248         *     }
     249         * }
     250         */
     251        return apply_filters( 'twentysixteen_color_schemes', array(
     252                'default' => array(
     253                        'label'  => __( 'Default', 'twentysixteen' ),
     254                        'colors' => array(
     255                                '#1a1a1a',
     256                                '#ffffff',
     257                                '#007acc',
     258                                '#1a1a1a',
     259                                '#686868',
     260                        ),
     261                ),
     262                'dark' => array(
     263                        'label'  => __( 'Dark', 'twentysixteen' ),
     264                        'colors' => array(
     265                                '#262626',
     266                                '#1a1a1a',
     267                                '#9adffd',
     268                                '#e5e5e5',
     269                                '#c1c1c1',
     270                        ),
     271                ),
     272                'gray' => array(
     273                        'label'  => __( 'Gray', 'twentysixteen' ),
     274                        'colors' => array(
     275                                '#616a73',
     276                                '#4d545c',
     277                                '#c7c7c7',
     278                                '#f2f2f2',
     279                                '#f2f2f2',
     280                        ),
     281                ),
     282                'red' => array(
     283                        'label'  => __( 'Red', 'twentysixteen' ),
     284                        'colors' => array(
     285                                '#ffffff',
     286                                '#ff675f',
     287                                '#640c1f',
     288                                '#402b30',
     289                                '#402b30',
     290                        ),
     291                ),
     292                'yellow' => array(
     293                        'label'  => __( 'Yellow', 'twentysixteen' ),
     294                        'colors' => array(
     295                                '#3b3721',
     296                                '#ffef8e',
     297                                '#774e24',
     298                                '#3b3721',
     299                                '#5b4d3e',
     300                        ),
     301                ),
     302        ) );
     303}
     304
     305if ( ! function_exists( 'twentysixteen_get_color_scheme' ) ) :
     306/**
     307 * Retrieves the current Twenty Sixteen color scheme.
     308 *
     309 * Create your own twentysixteen_get_color_scheme() function to override in a child theme.
     310 *
     311 * @since Twenty Sixteen 1.0
     312 *
     313 * @return array An associative array of either the current or default color scheme HEX values.
     314 */
     315function twentysixteen_get_color_scheme() {
     316        $color_scheme_option = get_theme_mod( 'color_scheme', 'default' );
     317        $color_schemes       = twentysixteen_get_color_schemes();
     318
     319        if ( array_key_exists( $color_scheme_option, $color_schemes ) ) {
     320                return $color_schemes[ $color_scheme_option ]['colors'];
     321        }
     322
     323        return $color_schemes['default']['colors'];
     324}
     325endif; // twentysixteen_get_color_scheme
     326
     327if ( ! function_exists( 'twentysixteen_get_color_scheme_choices' ) ) :
     328/**
     329 * Retrieves an array of color scheme choices registered for Twenty Sixteen.
     330 *
     331 * Create your own twentysixteen_get_color_scheme_choices() function to override
     332 * in a child theme.
     333 *
     334 * @since Twenty Sixteen 1.0
     335 *
     336 * @return array Array of color schemes.
     337 */
     338function twentysixteen_get_color_scheme_choices() {
     339        $color_schemes                = twentysixteen_get_color_schemes();
     340        $color_scheme_control_options = array();
     341
     342        foreach ( $color_schemes as $color_scheme => $value ) {
     343                $color_scheme_control_options[ $color_scheme ] = $value['label'];
     344        }
     345
     346        return $color_scheme_control_options;
     347}
     348endif; // twentysixteen_get_color_scheme_choices
     349
     350
     351if ( ! function_exists( 'twentysixteen_sanitize_color_scheme' ) ) :
     352/**
     353 * Handles sanitization for Twenty Sixteen color schemes.
     354 *
     355 * Create your own twentysixteen_sanitize_color_scheme() function to override
     356 * in a child theme.
     357 *
     358 * @since Twenty Sixteen 1.0
     359 *
     360 * @param string $value Color scheme name value.
     361 * @return string Color scheme name.
     362 */
     363function twentysixteen_sanitize_color_scheme( $value ) {
     364        $color_schemes = twentysixteen_get_color_scheme_choices();
     365
     366        if ( ! array_key_exists( $value, $color_schemes ) ) {
     367                return 'default';
     368        }
     369
     370        return $value;
     371}
     372endif; // twentysixteen_sanitize_color_scheme
     373
     374/**
     375 * Enqueues front-end CSS for color scheme.
     376 *
     377 * @since Twenty Sixteen 1.0
     378 *
     379 * @see wp_add_inline_style()
     380 */
     381function twentysixteen_color_scheme_css() {
     382        $color_scheme_option = get_theme_mod( 'color_scheme', 'default' );
     383
     384        // Don't do anything if the default color scheme is selected.
     385        if ( 'default' === $color_scheme_option ) {
     386                return;
     387        }
     388
     389        $color_scheme = twentysixteen_get_color_scheme();
     390
     391        // Convert main text hex color to rgba.
     392        $color_textcolor_rgb = twentysixteen_hex2rgb( $color_scheme[3] );
     393
     394        // If the rgba values are empty return early.
     395        if ( empty( $color_textcolor_rgb ) ) {
     396                return;
     397        }
     398
     399        // If we get this far, we have a custom color scheme.
     400        $colors = array(
     401                'background_color'      => $color_scheme[0],
     402                'page_background_color' => $color_scheme[1],
     403                'link_color'            => $color_scheme[2],
     404                'main_text_color'       => $color_scheme[3],
     405                'secondary_text_color'  => $color_scheme[4],
     406                'border_color'          => vsprintf( 'rgba( %1$s, %2$s, %3$s, 0.2)', $color_textcolor_rgb ),
     407
     408        );
     409
     410        $color_scheme_css = twentysixteen_get_color_scheme_css( $colors );
     411
     412        wp_add_inline_style( 'twentysixteen-style', $color_scheme_css );
     413}
     414add_action( 'wp_enqueue_scripts', 'twentysixteen_color_scheme_css' );
     415
     416/**
     417 * Binds the JS listener to make Customizer color_scheme control.
     418 *
     419 * Passes color scheme data as colorScheme global.
     420 *
     421 * @since Twenty Sixteen 1.0
     422 */
     423function twentysixteen_customize_control_js() {
     424        wp_enqueue_script( 'color-scheme-control', get_template_directory_uri() . '/js/color-scheme-control.js', array( 'customize-controls', 'iris', 'underscore', 'wp-util' ), '20160816', true );
     425        wp_localize_script( 'color-scheme-control', 'colorScheme', twentysixteen_get_color_schemes() );
     426}
     427add_action( 'customize_controls_enqueue_scripts', 'twentysixteen_customize_control_js' );
     428
     429/**
     430 * Binds JS handlers to make the Customizer preview reload changes asynchronously.
     431 *
     432 * @since Twenty Sixteen 1.0
     433 */
     434function twentysixteen_customize_preview_js() {
     435        wp_enqueue_script( 'twentysixteen-customize-preview', get_template_directory_uri() . '/js/customize-preview.js', array( 'customize-preview' ), '20160816', true );
     436}
     437add_action( 'customize_preview_init', 'twentysixteen_customize_preview_js' );
     438
     439/**
     440 * Returns CSS for the color schemes.
     441 *
     442 * @since Twenty Sixteen 1.0
     443 *
     444 * @param array $colors Color scheme colors.
     445 * @return string Color scheme CSS.
     446 */
     447function twentysixteen_get_color_scheme_css( $colors ) {
     448        $colors = wp_parse_args( $colors, array(
     449                'background_color'      => '',
     450                'page_background_color' => '',
     451                'link_color'            => '',
     452                'main_text_color'       => '',
     453                'secondary_text_color'  => '',
     454                'border_color'          => '',
     455        ) );
     456
     457        return <<<CSS
     458        /* Color Scheme */
     459
     460        /* Background Color */
     461        body {
     462                background-color: {$colors['background_color']};
     463        }
     464
     465        /* Page Background Color */
     466        .site {
     467                background-color: {$colors['page_background_color']};
     468        }
     469
     470        mark,
     471        ins,
     472        button,
     473        button[disabled]:hover,
     474        button[disabled]:focus,
     475        input[type="button"],
     476        input[type="button"][disabled]:hover,
     477        input[type="button"][disabled]:focus,
     478        input[type="reset"],
     479        input[type="reset"][disabled]:hover,
     480        input[type="reset"][disabled]:focus,
     481        input[type="submit"],
     482        input[type="submit"][disabled]:hover,
     483        input[type="submit"][disabled]:focus,
     484        .menu-toggle.toggled-on,
     485        .menu-toggle.toggled-on:hover,
     486        .menu-toggle.toggled-on:focus,
     487        .pagination .prev,
     488        .pagination .next,
     489        .pagination .prev:hover,
     490        .pagination .prev:focus,
     491        .pagination .next:hover,
     492        .pagination .next:focus,
     493        .pagination .nav-links:before,
     494        .pagination .nav-links:after,
     495        .widget_calendar tbody a,
     496        .widget_calendar tbody a:hover,
     497        .widget_calendar tbody a:focus,
     498        .page-links a,
     499        .page-links a:hover,
     500        .page-links a:focus {
     501                color: {$colors['page_background_color']};
     502        }
     503
     504        /* Link Color */
     505        .menu-toggle:hover,
     506        .menu-toggle:focus,
     507        a,
     508        .main-navigation a:hover,
     509        .main-navigation a:focus,
     510        .dropdown-toggle:hover,
     511        .dropdown-toggle:focus,
     512        .social-navigation a:hover:before,
     513        .social-navigation a:focus:before,
     514        .post-navigation a:hover .post-title,
     515        .post-navigation a:focus .post-title,
     516        .tagcloud a:hover,
     517        .tagcloud a:focus,
     518        .site-branding .site-title a:hover,
     519        .site-branding .site-title a:focus,
     520        .entry-title a:hover,
     521        .entry-title a:focus,
     522        .entry-footer a:hover,
     523        .entry-footer a:focus,
     524        .comment-metadata a:hover,
     525        .comment-metadata a:focus,
     526        .pingback .comment-edit-link:hover,
     527        .pingback .comment-edit-link:focus,
     528        .comment-reply-link,
     529        .comment-reply-link:hover,
     530        .comment-reply-link:focus,
     531        .required,
     532        .site-info a:hover,
     533        .site-info a:focus {
     534                color: {$colors['link_color']};
     535        }
     536
     537        mark,
     538        ins,
     539        button:hover,
     540        button:focus,
     541        input[type="button"]:hover,
     542        input[type="button"]:focus,
     543        input[type="reset"]:hover,
     544        input[type="reset"]:focus,
     545        input[type="submit"]:hover,
     546        input[type="submit"]:focus,
     547        .pagination .prev:hover,
     548        .pagination .prev:focus,
     549        .pagination .next:hover,
     550        .pagination .next:focus,
     551        .widget_calendar tbody a,
     552        .page-links a:hover,
     553        .page-links a:focus {
     554                background-color: {$colors['link_color']};
     555        }
     556
     557        input[type="date"]:focus,
     558        input[type="time"]:focus,
     559        input[type="datetime-local"]:focus,
     560        input[type="week"]:focus,
     561        input[type="month"]:focus,
     562        input[type="text"]:focus,
     563        input[type="email"]:focus,
     564        input[type="url"]:focus,
     565        input[type="password"]:focus,
     566        input[type="search"]:focus,
     567        input[type="tel"]:focus,
     568        input[type="number"]:focus,
     569        textarea:focus,
     570        .tagcloud a:hover,
     571        .tagcloud a:focus,
     572        .menu-toggle:hover,
     573        .menu-toggle:focus {
     574                border-color: {$colors['link_color']};
     575        }
     576
     577        /* Main Text Color */
     578        body,
     579        blockquote cite,
     580        blockquote small,
     581        .main-navigation a,
     582        .menu-toggle,
     583        .dropdown-toggle,
     584        .social-navigation a,
     585        .post-navigation a,
     586        .pagination a:hover,
     587        .pagination a:focus,
     588        .widget-title a,
     589        .site-branding .site-title a,
     590        .entry-title a,
     591        .page-links > .page-links-title,
     592        .comment-author,
     593        .comment-reply-title small a:hover,
     594        .comment-reply-title small a:focus {
     595                color: {$colors['main_text_color']};
     596        }
     597
     598        blockquote,
     599        .menu-toggle.toggled-on,
     600        .menu-toggle.toggled-on:hover,
     601        .menu-toggle.toggled-on:focus,
     602        .post-navigation,
     603        .post-navigation div + div,
     604        .pagination,
     605        .widget,
     606        .page-header,
     607        .page-links a,
     608        .comments-title,
     609        .comment-reply-title {
     610                border-color: {$colors['main_text_color']};
     611        }
     612
     613        button,
     614        button[disabled]:hover,
     615        button[disabled]:focus,
     616        input[type="button"],
     617        input[type="button"][disabled]:hover,
     618        input[type="button"][disabled]:focus,
     619        input[type="reset"],
     620        input[type="reset"][disabled]:hover,
     621        input[type="reset"][disabled]:focus,
     622        input[type="submit"],
     623        input[type="submit"][disabled]:hover,
     624        input[type="submit"][disabled]:focus,
     625        .menu-toggle.toggled-on,
     626        .menu-toggle.toggled-on:hover,
     627        .menu-toggle.toggled-on:focus,
     628        .pagination:before,
     629        .pagination:after,
     630        .pagination .prev,
     631        .pagination .next,
     632        .page-links a {
     633                background-color: {$colors['main_text_color']};
     634        }
     635
     636        /* Secondary Text Color */
     637
     638        /**
     639         * IE8 and earlier will drop any block with CSS3 selectors.
     640         * Do not combine these styles with the next block.
     641         */
     642        body:not(.search-results) .entry-summary {
     643                color: {$colors['secondary_text_color']};
     644        }
     645
     646        blockquote,
     647        .post-password-form label,
     648        a:hover,
     649        a:focus,
     650        a:active,
     651        .post-navigation .meta-nav,
     652        .image-navigation,
     653        .comment-navigation,
     654        .widget_recent_entries .post-date,
     655        .widget_rss .rss-date,
     656        .widget_rss cite,
     657        .site-description,
     658        .author-bio,
     659        .entry-footer,
     660        .entry-footer a,
     661        .sticky-post,
     662        .taxonomy-description,
     663        .entry-caption,
     664        .comment-metadata,
     665        .pingback .edit-link,
     666        .comment-metadata a,
     667        .pingback .comment-edit-link,
     668        .comment-form label,
     669        .comment-notes,
     670        .comment-awaiting-moderation,
     671        .logged-in-as,
     672        .form-allowed-tags,
     673        .site-info,
     674        .site-info a,
     675        .wp-caption .wp-caption-text,
     676        .gallery-caption,
     677        .widecolumn label,
     678        .widecolumn .mu_register label {
     679                color: {$colors['secondary_text_color']};
     680        }
     681
     682        .widget_calendar tbody a:hover,
     683        .widget_calendar tbody a:focus {
     684                background-color: {$colors['secondary_text_color']};
     685        }
     686
     687        /* Border Color */
     688        fieldset,
     689        pre,
     690        abbr,
     691        acronym,
     692        table,
     693        th,
     694        td,
     695        input[type="date"],
     696        input[type="time"],
     697        input[type="datetime-local"],
     698        input[type="week"],
     699        input[type="month"],
     700        input[type="text"],
     701        input[type="email"],
     702        input[type="url"],
     703        input[type="password"],
     704        input[type="search"],
     705        input[type="tel"],
     706        input[type="number"],
     707        textarea,
     708        .main-navigation li,
     709        .main-navigation .primary-menu,
     710        .menu-toggle,
     711        .dropdown-toggle:after,
     712        .social-navigation a,
     713        .image-navigation,
     714        .comment-navigation,
     715        .tagcloud a,
     716        .entry-content,
     717        .entry-summary,
     718        .page-links a,
     719        .page-links > span,
     720        .comment-list article,
     721        .comment-list .pingback,
     722        .comment-list .trackback,
     723        .comment-reply-link,
     724        .no-comments,
     725        .widecolumn .mu_register .mu_alert {
     726                border-color: {$colors['main_text_color']}; /* Fallback for IE7 and IE8 */
     727                border-color: {$colors['border_color']};
     728        }
     729
     730        hr,
     731        code {
     732                background-color: {$colors['main_text_color']}; /* Fallback for IE7 and IE8 */
     733                background-color: {$colors['border_color']};
     734        }
     735
     736        @media screen and (min-width: 56.875em) {
     737                .main-navigation li:hover > a,
     738                .main-navigation li.focus > a {
     739                        color: {$colors['link_color']};
     740                }
     741
     742                .main-navigation ul ul,
     743                .main-navigation ul ul li {
     744                        border-color: {$colors['border_color']};
     745                }
     746
     747                .main-navigation ul ul:before {
     748                        border-top-color: {$colors['border_color']};
     749                        border-bottom-color: {$colors['border_color']};
     750                }
     751
     752                .main-navigation ul ul li {
     753                        background-color: {$colors['page_background_color']};
     754                }
     755
     756                .main-navigation ul ul:after {
     757                        border-top-color: {$colors['page_background_color']};
     758                        border-bottom-color: {$colors['page_background_color']};
     759                }
     760        }
     761
     762CSS;
     763}
     764
     765
     766/**
     767 * Outputs an Underscore template for generating CSS for the color scheme.
     768 *
     769 * The template generates the css dynamically for instant display in the
     770 * Customizer preview.
     771 *
     772 * @since Twenty Sixteen 1.0
     773 */
     774function twentysixteen_color_scheme_css_template() {
     775        $colors = array(
     776                'background_color'      => '{{ data.background_color }}',
     777                'page_background_color' => '{{ data.page_background_color }}',
     778                'link_color'            => '{{ data.link_color }}',
     779                'main_text_color'       => '{{ data.main_text_color }}',
     780                'secondary_text_color'  => '{{ data.secondary_text_color }}',
     781                'border_color'          => '{{ data.border_color }}',
     782        );
     783        ?>
     784        <script type="text/html" id="tmpl-twentysixteen-color-scheme">
     785                <?php echo twentysixteen_get_color_scheme_css( $colors ); ?>
     786        </script>
     787        <?php
     788}
     789add_action( 'customize_controls_print_footer_scripts', 'twentysixteen_color_scheme_css_template' );
     790
     791/**
     792 * Enqueues front-end CSS for the page background color.
     793 *
     794 * @since Twenty Sixteen 1.0
     795 *
     796 * @see wp_add_inline_style()
     797 */
     798function twentysixteen_page_background_color_css() {
     799        $color_scheme          = twentysixteen_get_color_scheme();
     800        $default_color         = $color_scheme[1];
     801        $page_background_color = get_theme_mod( 'page_background_color', $default_color );
     802
     803        // Don't do anything if the current color is the default.
     804        if ( $page_background_color === $default_color ) {
     805                return;
     806        }
     807
     808        $css = '
     809                /* Custom Page Background Color */
     810                .site {
     811                        background-color: %1$s;
     812                }
     813
     814                mark,
     815                ins,
     816                button,
     817                button[disabled]:hover,
     818                button[disabled]:focus,
     819                input[type="button"],
     820                input[type="button"][disabled]:hover,
     821                input[type="button"][disabled]:focus,
     822                input[type="reset"],
     823                input[type="reset"][disabled]:hover,
     824                input[type="reset"][disabled]:focus,
     825                input[type="submit"],
     826                input[type="submit"][disabled]:hover,
     827                input[type="submit"][disabled]:focus,
     828                .menu-toggle.toggled-on,
     829                .menu-toggle.toggled-on:hover,
     830                .menu-toggle.toggled-on:focus,
     831                .pagination .prev,
     832                .pagination .next,
     833                .pagination .prev:hover,
     834                .pagination .prev:focus,
     835                .pagination .next:hover,
     836                .pagination .next:focus,
     837                .pagination .nav-links:before,
     838                .pagination .nav-links:after,
     839                .widget_calendar tbody a,
     840                .widget_calendar tbody a:hover,
     841                .widget_calendar tbody a:focus,
     842                .page-links a,
     843                .page-links a:hover,
     844                .page-links a:focus {
     845                        color: %1$s;
     846                }
     847
     848                @media screen and (min-width: 56.875em) {
     849                        .main-navigation ul ul li {
     850                                background-color: %1$s;
     851                        }
     852
     853                        .main-navigation ul ul:after {
     854                                border-top-color: %1$s;
     855                                border-bottom-color: %1$s;
     856                        }
     857                }
     858        ';
     859
     860        wp_add_inline_style( 'twentysixteen-style', sprintf( $css, $page_background_color ) );
     861}
     862add_action( 'wp_enqueue_scripts', 'twentysixteen_page_background_color_css', 11 );
     863
     864/**
     865 * Enqueues front-end CSS for the link color.
     866 *
     867 * @since Twenty Sixteen 1.0
     868 *
     869 * @see wp_add_inline_style()
     870 */
     871function twentysixteen_link_color_css() {
     872        $color_scheme    = twentysixteen_get_color_scheme();
     873        $default_color   = $color_scheme[2];
     874        $link_color = get_theme_mod( 'link_color', $default_color );
     875
     876        // Don't do anything if the current color is the default.
     877        if ( $link_color === $default_color ) {
     878                return;
     879        }
     880
     881        $css = '
     882                /* Custom Link Color */
     883                .menu-toggle:hover,
     884                .menu-toggle:focus,
     885                a,
     886                .main-navigation a:hover,
     887                .main-navigation a:focus,
     888                .dropdown-toggle:hover,
     889                .dropdown-toggle:focus,
     890                .social-navigation a:hover:before,
     891                .social-navigation a:focus:before,
     892                .post-navigation a:hover .post-title,
     893                .post-navigation a:focus .post-title,
     894                .tagcloud a:hover,
     895                .tagcloud a:focus,
     896                .site-branding .site-title a:hover,
     897                .site-branding .site-title a:focus,
     898                .entry-title a:hover,
     899                .entry-title a:focus,
     900                .entry-footer a:hover,
     901                .entry-footer a:focus,
     902                .comment-metadata a:hover,
     903                .comment-metadata a:focus,
     904                .pingback .comment-edit-link:hover,
     905                .pingback .comment-edit-link:focus,
     906                .comment-reply-link,
     907                .comment-reply-link:hover,
     908                .comment-reply-link:focus,
     909                .required,
     910                .site-info a:hover,
     911                .site-info a:focus {
     912                        color: %1$s;
     913                }
     914
     915                mark,
     916                ins,
     917                button:hover,
     918                button:focus,
     919                input[type="button"]:hover,
     920                input[type="button"]:focus,
     921                input[type="reset"]:hover,
     922                input[type="reset"]:focus,
     923                input[type="submit"]:hover,
     924                input[type="submit"]:focus,
     925                .pagination .prev:hover,
     926                .pagination .prev:focus,
     927                .pagination .next:hover,
     928                .pagination .next:focus,
     929                .widget_calendar tbody a,
     930                .page-links a:hover,
     931                .page-links a:focus {
     932                        background-color: %1$s;
     933                }
     934
     935                input[type="date"]:focus,
     936                input[type="time"]:focus,
     937                input[type="datetime-local"]:focus,
     938                input[type="week"]:focus,
     939                input[type="month"]:focus,
     940                input[type="text"]:focus,
     941                input[type="email"]:focus,
     942                input[type="url"]:focus,
     943                input[type="password"]:focus,
     944                input[type="search"]:focus,
     945                input[type="tel"]:focus,
     946                input[type="number"]:focus,
     947                textarea:focus,
     948                .tagcloud a:hover,
     949                .tagcloud a:focus,
     950                .menu-toggle:hover,
     951                .menu-toggle:focus {
     952                        border-color: %1$s;
     953                }
     954
     955                @media screen and (min-width: 56.875em) {
     956                        .main-navigation li:hover > a,
     957                        .main-navigation li.focus > a {
     958                                color: %1$s;
     959                        }
     960                }
     961        ';
     962
     963        wp_add_inline_style( 'twentysixteen-style', sprintf( $css, $link_color ) );
     964}
     965add_action( 'wp_enqueue_scripts', 'twentysixteen_link_color_css', 11 );
     966
     967/**
     968 * Enqueues front-end CSS for the main text color.
     969 *
     970 * @since Twenty Sixteen 1.0
     971 *
     972 * @see wp_add_inline_style()
     973 */
     974function twentysixteen_main_text_color_css() {
     975        $color_scheme    = twentysixteen_get_color_scheme();
     976        $default_color   = $color_scheme[3];
     977        $main_text_color = get_theme_mod( 'main_text_color', $default_color );
     978
     979        // Don't do anything if the current color is the default.
     980        if ( $main_text_color === $default_color ) {
     981                return;
     982        }
     983
     984        // Convert main text hex color to rgba.
     985        $main_text_color_rgb = twentysixteen_hex2rgb( $main_text_color );
     986
     987        // If the rgba values are empty return early.
     988        if ( empty( $main_text_color_rgb ) ) {
     989                return;
     990        }
     991
     992        // If we get this far, we have a custom color scheme.
     993        $border_color = vsprintf( 'rgba( %1$s, %2$s, %3$s, 0.2)', $main_text_color_rgb );
     994
     995        $css = '
     996                /* Custom Main Text Color */
     997                body,
     998                blockquote cite,
     999                blockquote small,
     1000                .main-navigation a,
     1001                .menu-toggle,
     1002                .dropdown-toggle,
     1003                .social-navigation a,
     1004                .post-navigation a,
     1005                .pagination a:hover,
     1006                .pagination a:focus,
     1007                .widget-title a,
     1008                .site-branding .site-title a,
     1009                .entry-title a,
     1010                .page-links > .page-links-title,
     1011                .comment-author,
     1012                .comment-reply-title small a:hover,
     1013                .comment-reply-title small a:focus {
     1014                        color: %1$s
     1015                }
     1016
     1017                blockquote,
     1018                .menu-toggle.toggled-on,
     1019                .menu-toggle.toggled-on:hover,
     1020                .menu-toggle.toggled-on:focus,
     1021                .post-navigation,
     1022                .post-navigation div + div,
     1023                .pagination,
     1024                .widget,
     1025                .page-header,
     1026                .page-links a,
     1027                .comments-title,
     1028                .comment-reply-title {
     1029                        border-color: %1$s;
     1030                }
     1031
     1032                button,
     1033                button[disabled]:hover,
     1034                button[disabled]:focus,
     1035                input[type="button"],
     1036                input[type="button"][disabled]:hover,
     1037                input[type="button"][disabled]:focus,
     1038                input[type="reset"],
     1039                input[type="reset"][disabled]:hover,
     1040                input[type="reset"][disabled]:focus,
     1041                input[type="submit"],
     1042                input[type="submit"][disabled]:hover,
     1043                input[type="submit"][disabled]:focus,
     1044                .menu-toggle.toggled-on,
     1045                .menu-toggle.toggled-on:hover,
     1046                .menu-toggle.toggled-on:focus,
     1047                .pagination:before,
     1048                .pagination:after,
     1049                .pagination .prev,
     1050                .pagination .next,
     1051                .page-links a {
     1052                        background-color: %1$s;
     1053                }
     1054
     1055                /* Border Color */
     1056                fieldset,
     1057                pre,
     1058                abbr,
     1059                acronym,
     1060                table,
     1061                th,
     1062                td,
     1063                input[type="date"],
     1064                input[type="time"],
     1065                input[type="datetime-local"],
     1066                input[type="week"],
     1067                input[type="month"],
     1068                input[type="text"],
     1069                input[type="email"],
     1070                input[type="url"],
     1071                input[type="password"],
     1072                input[type="search"],
     1073                input[type="tel"],
     1074                input[type="number"],
     1075                textarea,
     1076                .main-navigation li,
     1077                .main-navigation .primary-menu,
     1078                .menu-toggle,
     1079                .dropdown-toggle:after,
     1080                .social-navigation a,
     1081                .image-navigation,
     1082                .comment-navigation,
     1083                .tagcloud a,
     1084                .entry-content,
     1085                .entry-summary,
     1086                .page-links a,
     1087                .page-links > span,
     1088                .comment-list article,
     1089                .comment-list .pingback,
     1090                .comment-list .trackback,
     1091                .comment-reply-link,
     1092                .no-comments,
     1093                .widecolumn .mu_register .mu_alert {
     1094                        border-color: %1$s; /* Fallback for IE7 and IE8 */
     1095                        border-color: %2$s;
     1096                }
     1097
     1098                hr,
     1099                code {
     1100                        background-color: %1$s; /* Fallback for IE7 and IE8 */
     1101                        background-color: %2$s;
     1102                }
     1103
     1104                @media screen and (min-width: 56.875em) {
     1105                        .main-navigation ul ul,
     1106                        .main-navigation ul ul li {
     1107                                border-color: %2$s;
     1108                        }
     1109
     1110                        .main-navigation ul ul:before {
     1111                                border-top-color: %2$s;
     1112                                border-bottom-color: %2$s;
     1113                        }
     1114                }
     1115        ';
     1116
     1117        wp_add_inline_style( 'twentysixteen-style', sprintf( $css, $main_text_color, $border_color ) );
     1118}
     1119add_action( 'wp_enqueue_scripts', 'twentysixteen_main_text_color_css', 11 );
     1120
     1121/**
     1122 * Enqueues front-end CSS for the secondary text color.
     1123 *
     1124 * @since Twenty Sixteen 1.0
     1125 *
     1126 * @see wp_add_inline_style()
     1127 */
     1128function twentysixteen_secondary_text_color_css() {
     1129        $color_scheme    = twentysixteen_get_color_scheme();
     1130        $default_color   = $color_scheme[4];
     1131        $secondary_text_color = get_theme_mod( 'secondary_text_color', $default_color );
     1132
     1133        // Don't do anything if the current color is the default.
     1134        if ( $secondary_text_color === $default_color ) {
     1135                return;
     1136        }
     1137
     1138        $css = '
     1139                /* Custom Secondary Text Color */
     1140
     1141                /**
     1142                 * IE8 and earlier will drop any block with CSS3 selectors.
     1143                 * Do not combine these styles with the next block.
     1144                 */
     1145                body:not(.search-results) .entry-summary {
     1146                        color: %1$s;
     1147                }
     1148
     1149                blockquote,
     1150                .post-password-form label,
     1151                a:hover,
     1152                a:focus,
     1153                a:active,
     1154                .post-navigation .meta-nav,
     1155                .image-navigation,
     1156                .comment-navigation,
     1157                .widget_recent_entries .post-date,
     1158                .widget_rss .rss-date,
     1159                .widget_rss cite,
     1160                .site-description,
     1161                .author-bio,
     1162                .entry-footer,
     1163                .entry-footer a,
     1164                .sticky-post,
     1165                .taxonomy-description,
     1166                .entry-caption,
     1167                .comment-metadata,
     1168                .pingback .edit-link,
     1169                .comment-metadata a,
     1170                .pingback .comment-edit-link,
     1171                .comment-form label,
     1172                .comment-notes,
     1173                .comment-awaiting-moderation,
     1174                .logged-in-as,
     1175                .form-allowed-tags,
     1176                .site-info,
     1177                .site-info a,
     1178                .wp-caption .wp-caption-text,
     1179                .gallery-caption,
     1180                .widecolumn label,
     1181                .widecolumn .mu_register label {
     1182                        color: %1$s;
     1183                }
     1184
     1185                .widget_calendar tbody a:hover,
     1186                .widget_calendar tbody a:focus {
     1187                        background-color: %1$s;
     1188                }
     1189        ';
     1190
     1191        wp_add_inline_style( 'twentysixteen-style', sprintf( $css, $secondary_text_color ) );
     1192}
     1193add_action( 'wp_enqueue_scripts', 'twentysixteen_secondary_text_color_css', 11 );
  • src/wp-content/themes/twentysixteen/inc/template-tags.php

     
     1<?php
     2/**
     3 * Custom Twenty Sixteen template tags
     4 *
     5 * Eventually, some of the functionality here could be replaced by core features.
     6 *
     7 * @package WordPress
     8 * @subpackage Twenty_Sixteen
     9 * @since Twenty Sixteen 1.0
     10 */
     11
     12if ( ! function_exists( 'twentysixteen_entry_meta' ) ) :
     13/**
     14 * Prints HTML with meta information for the categories, tags.
     15 *
     16 * Create your own twentysixteen_entry_meta() function to override in a child theme.
     17 *
     18 * @since Twenty Sixteen 1.0
     19 */
     20function twentysixteen_entry_meta() {
     21        if ( 'post' === get_post_type() ) {
     22                $author_avatar_size = apply_filters( 'twentysixteen_author_avatar_size', 49 );
     23                printf( '<span class="byline"><span class="author vcard">%1$s<span class="screen-reader-text">%2$s </span> <a class="url fn n" href="%3$s">%4$s</a></span></span>',
     24                        get_avatar( get_the_author_meta( 'user_email' ), $author_avatar_size ),
     25                        _x( 'Author', 'Used before post author name.', 'twentysixteen' ),
     26                        esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ),
     27                        get_the_author()
     28                );
     29        }
     30
     31        if ( in_array( get_post_type(), array( 'post', 'attachment' ) ) ) {
     32                twentysixteen_entry_date();
     33        }
     34
     35        $format = get_post_format();
     36        if ( current_theme_supports( 'post-formats', $format ) ) {
     37                printf( '<span class="entry-format">%1$s<a href="%2$s">%3$s</a></span>',
     38                        sprintf( '<span class="screen-reader-text">%s </span>', _x( 'Format', 'Used before post format.', 'twentysixteen' ) ),
     39                        esc_url( get_post_format_link( $format ) ),
     40                        get_post_format_string( $format )
     41                );
     42        }
     43
     44        if ( 'post' === get_post_type() ) {
     45                twentysixteen_entry_taxonomies();
     46        }
     47
     48        if ( ! is_singular() && ! post_password_required() && ( comments_open() || get_comments_number() ) ) {
     49                echo '<span class="comments-link">';
     50                comments_popup_link( sprintf( __( 'Leave a comment<span class="screen-reader-text"> on %s</span>', 'twentysixteen' ), get_the_title() ) );
     51                echo '</span>';
     52        }
     53}
     54endif;
     55
     56if ( ! function_exists( 'twentysixteen_entry_date' ) ) :
     57/**
     58 * Prints HTML with date information for current post.
     59 *
     60 * Create your own twentysixteen_entry_date() function to override in a child theme.
     61 *
     62 * @since Twenty Sixteen 1.0
     63 */
     64function twentysixteen_entry_date() {
     65        $time_string = '<time class="entry-date published updated" datetime="%1$s">%2$s</time>';
     66
     67        if ( get_the_time( 'U' ) !== get_the_modified_time( 'U' ) ) {
     68                $time_string = '<time class="entry-date published" datetime="%1$s">%2$s</time><time class="updated" datetime="%3$s">%4$s</time>';
     69        }
     70
     71        $time_string = sprintf( $time_string,
     72                esc_attr( get_the_date( 'c' ) ),
     73                get_the_date(),
     74                esc_attr( get_the_modified_date( 'c' ) ),
     75                get_the_modified_date()
     76        );
     77
     78        printf( '<span class="posted-on"><span class="screen-reader-text">%1$s </span><a href="%2$s" rel="bookmark">%3$s</a></span>',
     79                _x( 'Posted on', 'Used before publish date.', 'twentysixteen' ),
     80                esc_url( get_permalink() ),
     81                $time_string
     82        );
     83}
     84endif;
     85
     86if ( ! function_exists( 'twentysixteen_entry_taxonomies' ) ) :
     87/**
     88 * Prints HTML with category and tags for current post.
     89 *
     90 * Create your own twentysixteen_entry_taxonomies() function to override in a child theme.
     91 *
     92 * @since Twenty Sixteen 1.0
     93 */
     94function twentysixteen_entry_taxonomies() {
     95        $categories_list = get_the_category_list( _x( ', ', 'Used between list items, there is a space after the comma.', 'twentysixteen' ) );
     96        if ( $categories_list && twentysixteen_categorized_blog() ) {
     97                printf( '<span class="cat-links"><span class="screen-reader-text">%1$s </span>%2$s</span>',
     98                        _x( 'Categories', 'Used before category names.', 'twentysixteen' ),
     99                        $categories_list
     100                );
     101        }
     102
     103        $tags_list = get_the_tag_list( '', _x( ', ', 'Used between list items, there is a space after the comma.', 'twentysixteen' ) );
     104        if ( $tags_list ) {
     105                printf( '<span class="tags-links"><span class="screen-reader-text">%1$s </span>%2$s</span>',
     106                        _x( 'Tags', 'Used before tag names.', 'twentysixteen' ),
     107                        $tags_list
     108                );
     109        }
     110}
     111endif;
     112
     113if ( ! function_exists( 'twentysixteen_post_thumbnail' ) ) :
     114/**
     115 * Displays an optional post thumbnail.
     116 *
     117 * Wraps the post thumbnail in an anchor element on index views, or a div
     118 * element when on single views.
     119 *
     120 * Create your own twentysixteen_post_thumbnail() function to override in a child theme.
     121 *
     122 * @since Twenty Sixteen 1.0
     123 */
     124function twentysixteen_post_thumbnail() {
     125        if ( post_password_required() || is_attachment() || ! has_post_thumbnail() ) {
     126                return;
     127        }
     128
     129        if ( is_singular() ) :
     130        ?>
     131
     132        <div class="post-thumbnail">
     133                <?php the_post_thumbnail(); ?>
     134        </div><!-- .post-thumbnail -->
     135
     136        <?php else : ?>
     137
     138        <a class="post-thumbnail" href="<?php the_permalink(); ?>" aria-hidden="true">
     139                <?php the_post_thumbnail( 'post-thumbnail', array( 'alt' => the_title_attribute( 'echo=0' ) ) ); ?>
     140        </a>
     141
     142        <?php endif; // End is_singular()
     143}
     144endif;
     145
     146if ( ! function_exists( 'twentysixteen_excerpt' ) ) :
     147        /**
     148         * Displays the optional excerpt.
     149         *
     150         * Wraps the excerpt in a div element.
     151         *
     152         * Create your own twentysixteen_excerpt() function to override in a child theme.
     153         *
     154         * @since Twenty Sixteen 1.0
     155         *
     156         * @param string $class Optional. Class string of the div element. Defaults to 'entry-summary'.
     157         */
     158        function twentysixteen_excerpt( $class = 'entry-summary' ) {
     159                $class = esc_attr( $class );
     160
     161                if ( has_excerpt() || is_search() ) : ?>
     162                        <div class="<?php echo $class; ?>">
     163                                <?php the_excerpt(); ?>
     164                        </div><!-- .<?php echo $class; ?> -->
     165                <?php endif;
     166        }
     167endif;
     168
     169if ( ! function_exists( 'twentysixteen_excerpt_more' ) && ! is_admin() ) :
     170/**
     171 * Replaces "[...]" (appended to automatically generated excerpts) with ... and
     172 * a 'Continue reading' link.
     173 *
     174 * Create your own twentysixteen_excerpt_more() function to override in a child theme.
     175 *
     176 * @since Twenty Sixteen 1.0
     177 *
     178 * @return string 'Continue reading' link prepended with an ellipsis.
     179 */
     180function twentysixteen_excerpt_more() {
     181        $link = sprintf( '<a href="%1$s" class="more-link">%2$s</a>',
     182                esc_url( get_permalink( get_the_ID() ) ),
     183                /* translators: %s: Name of current post */
     184                sprintf( __( 'Continue reading<span class="screen-reader-text"> "%s"</span>', 'twentysixteen' ), get_the_title( get_the_ID() ) )
     185        );
     186        return ' &hellip; ' . $link;
     187}
     188add_filter( 'excerpt_more', 'twentysixteen_excerpt_more' );
     189endif;
     190
     191if ( ! function_exists( 'twentysixteen_categorized_blog' ) ) :
     192/**
     193 * Determines whether blog/site has more than one category.
     194 *
     195 * Create your own twentysixteen_categorized_blog() function to override in a child theme.
     196 *
     197 * @since Twenty Sixteen 1.0
     198 *
     199 * @return bool True if there is more than one category, false otherwise.
     200 */
     201function twentysixteen_categorized_blog() {
     202        if ( false === ( $all_the_cool_cats = get_transient( 'twentysixteen_categories' ) ) ) {
     203                // Create an array of all the categories that are attached to posts.
     204                $all_the_cool_cats = get_categories( array(
     205                        'fields'     => 'ids',
     206                        // We only need to know if there is more than one category.
     207                        'number'     => 2,
     208                ) );
     209
     210                // Count the number of categories that are attached to the posts.
     211                $all_the_cool_cats = count( $all_the_cool_cats );
     212
     213                set_transient( 'twentysixteen_categories', $all_the_cool_cats );
     214        }
     215
     216        if ( $all_the_cool_cats > 1 ) {
     217                // This blog has more than 1 category so twentysixteen_categorized_blog should return true.
     218                return true;
     219        } else {
     220                // This blog has only 1 category so twentysixteen_categorized_blog should return false.
     221                return false;
     222        }
     223}
     224endif;
     225
     226/**
     227 * Flushes out the transients used in twentysixteen_categorized_blog().
     228 *
     229 * @since Twenty Sixteen 1.0
     230 */
     231function twentysixteen_category_transient_flusher() {
     232        if ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) {
     233                return;
     234        }
     235        // Like, beat it. Dig?
     236        delete_transient( 'twentysixteen_categories' );
     237}
     238add_action( 'edit_category', 'twentysixteen_category_transient_flusher' );
     239add_action( 'save_post',     'twentysixteen_category_transient_flusher' );
     240
     241if ( ! function_exists( 'twentysixteen_the_custom_logo' ) ) :
     242/**
     243 * Displays the optional custom logo.
     244 *
     245 * Does nothing if the custom logo is not available.
     246 *
     247 * @since Twenty Sixteen 1.2
     248 */
     249function twentysixteen_the_custom_logo() {
     250        if ( function_exists( 'the_custom_logo' ) ) {
     251                the_custom_logo();
     252        }
     253}
     254endif;
  • src/wp-content/themes/twentysixteen/index.php

     
     1<?php
     2/**
     3 * The main template file
     4 *
     5 * This is the most generic template file in a WordPress theme
     6 * and one of the two required files for a theme (the other being style.css).
     7 * It is used to display a page when nothing more specific matches a query.
     8 * E.g., it puts together the home page when no home.php file exists.
     9 *
     10 * @link http://codex.wordpress.org/Template_Hierarchy
     11 *
     12 * @package WordPress
     13 * @subpackage Twenty_Sixteen
     14 * @since Twenty Sixteen 1.0
     15 */
     16
     17get_header(); ?>
     18
     19        <div id="primary" class="content-area">
     20                <main id="main" class="site-main" role="main">
     21
     22                <?php if ( have_posts() ) : ?>
     23
     24                        <?php if ( is_home() && ! is_front_page() ) : ?>
     25                                <header>
     26                                        <h1 class="page-title screen-reader-text"><?php single_post_title(); ?></h1>
     27                                </header>
     28                        <?php endif; ?>
     29
     30                        <?php
     31                        // Start the loop.
     32                        while ( have_posts() ) : the_post();
     33
     34                                /*
     35                                 * Include the Post-Format-specific template for the content.
     36                                 * If you want to override this in a child theme, then include a file
     37                                 * called content-___.php (where ___ is the Post Format name) and that will be used instead.
     38                                 */
     39                                get_template_part( 'template-parts/content', get_post_format() );
     40
     41                        // End the loop.
     42                        endwhile;
     43
     44                        // Previous/next page navigation.
     45                        the_posts_pagination( array(
     46                                'prev_text'          => __( 'Previous page', 'twentysixteen' ),
     47                                'next_text'          => __( 'Next page', 'twentysixteen' ),
     48                                'before_page_number' => '<span class="meta-nav screen-reader-text">' . __( 'Page', 'twentysixteen' ) . ' </span>',
     49                        ) );
     50
     51                // If no content, include the "No posts found" template.
     52                else :
     53                        get_template_part( 'template-parts/content', 'none' );
     54
     55                endif;
     56                ?>
     57
     58                </main><!-- .site-main -->
     59        </div><!-- .content-area -->
     60
     61<?php get_sidebar(); ?>
     62<?php get_footer(); ?>
  • src/wp-content/themes/twentysixteen/js/color-scheme-control.js

     
     1/* global colorScheme, Color */
     2/**
     3 * Add a listener to the Color Scheme control to update other color controls to new values/defaults.
     4 * Also trigger an update of the Color Scheme CSS when a color is changed.
     5 */
     6
     7( function( api ) {
     8        var cssTemplate = wp.template( 'twentysixteen-color-scheme' ),
     9                colorSchemeKeys = [
     10                        'background_color',
     11                        'page_background_color',
     12                        'link_color',
     13                        'main_text_color',
     14                        'secondary_text_color'
     15                ],
     16                colorSettings = [
     17                        'background_color',
     18                        'page_background_color',
     19                        'link_color',
     20                        'main_text_color',
     21                        'secondary_text_color'
     22                ];
     23
     24        api.controlConstructor.select = api.Control.extend( {
     25                ready: function() {
     26                        if ( 'color_scheme' === this.id ) {
     27                                this.setting.bind( 'change', function( value ) {
     28                                        var colors = colorScheme[value].colors;
     29
     30                                        // Update Background Color.
     31                                        var color = colors[0];
     32                                        api( 'background_color' ).set( color );
     33                                        api.control( 'background_color' ).container.find( '.color-picker-hex' )
     34                                                .data( 'data-default-color', color )
     35                                                .wpColorPicker( 'defaultColor', color );
     36
     37                                        // Update Page Background Color.
     38                                        color = colors[1];
     39                                        api( 'page_background_color' ).set( color );
     40                                        api.control( 'page_background_color' ).container.find( '.color-picker-hex' )
     41                                                .data( 'data-default-color', color )
     42                                                .wpColorPicker( 'defaultColor', color );
     43
     44                                        // Update Link Color.
     45                                        color = colors[2];
     46                                        api( 'link_color' ).set( color );
     47                                        api.control( 'link_color' ).container.find( '.color-picker-hex' )
     48                                                .data( 'data-default-color', color )
     49                                                .wpColorPicker( 'defaultColor', color );
     50
     51                                        // Update Main Text Color.
     52                                        color = colors[3];
     53                                        api( 'main_text_color' ).set( color );
     54                                        api.control( 'main_text_color' ).container.find( '.color-picker-hex' )
     55                                                .data( 'data-default-color', color )
     56                                                .wpColorPicker( 'defaultColor', color );
     57
     58                                        // Update Secondary Text Color.
     59                                        color = colors[4];
     60                                        api( 'secondary_text_color' ).set( color );
     61                                        api.control( 'secondary_text_color' ).container.find( '.color-picker-hex' )
     62                                                .data( 'data-default-color', color )
     63                                                .wpColorPicker( 'defaultColor', color );
     64                                } );
     65                        }
     66                }
     67        } );
     68
     69        // Generate the CSS for the current Color Scheme.
     70        function updateCSS() {
     71                var scheme = api( 'color_scheme' )(),
     72                        css,
     73                        colors = _.object( colorSchemeKeys, colorScheme[ scheme ].colors );
     74
     75                // Merge in color scheme overrides.
     76                _.each( colorSettings, function( setting ) {
     77                        colors[ setting ] = api( setting )();
     78                } );
     79
     80                // Add additional color.
     81                // jscs:disable
     82                colors.border_color = Color( colors.main_text_color ).toCSS( 'rgba', 0.2 );
     83                // jscs:enable
     84
     85                css = cssTemplate( colors );
     86
     87                api.previewer.send( 'update-color-scheme-css', css );
     88        }
     89
     90        // Update the CSS whenever a color setting is changed.
     91        _.each( colorSettings, function( setting ) {
     92                api( setting, function( setting ) {
     93                        setting.bind( updateCSS );
     94                } );
     95        } );
     96} )( wp.customize );
  • src/wp-content/themes/twentysixteen/js/customize-preview.js

     
     1/**
     2 * Live-update changed settings in real time in the Customizer preview.
     3 */
     4
     5( function( $ ) {
     6        var style = $( '#twentysixteen-color-scheme-css' ),
     7                api = wp.customize;
     8
     9        if ( ! style.length ) {
     10                style = $( 'head' ).append( '<style type="text/css" id="twentysixteen-color-scheme-css" />' )
     11                                    .find( '#twentysixteen-color-scheme-css' );
     12        }
     13
     14        // Site title.
     15        api( 'blogname', function( value ) {
     16                value.bind( function( to ) {
     17                        $( '.site-title a' ).text( to );
     18                } );
     19        } );
     20
     21        // Site tagline.
     22        api( 'blogdescription', function( value ) {
     23                value.bind( function( to ) {
     24                        $( '.site-description' ).text( to );
     25                } );
     26        } );
     27
     28        // Add custom-background-image body class when background image is added.
     29        api( 'background_image', function( value ) {
     30                value.bind( function( to ) {
     31                        $( 'body' ).toggleClass( 'custom-background-image', '' !== to );
     32                } );
     33        } );
     34
     35        // Color Scheme CSS.
     36        api.bind( 'preview-ready', function() {
     37                api.preview.bind( 'update-color-scheme-css', function( css ) {
     38                        style.html( css );
     39                } );
     40        } );
     41} )( jQuery );
  • src/wp-content/themes/twentysixteen/js/functions.js

     
     1/* global screenReaderText */
     2/**
     3 * Theme functions file.
     4 *
     5 * Contains handlers for navigation and widget area.
     6 */
     7
     8( function( $ ) {
     9        var body, masthead, menuToggle, siteNavigation, socialNavigation, siteHeaderMenu, resizeTimer;
     10
     11        function initMainNavigation( container ) {
     12
     13                // Add dropdown toggle that displays child menu items.
     14                var dropdownToggle = $( '<button />', {
     15                        'class': 'dropdown-toggle',
     16                        'aria-expanded': false
     17                } ).append( $( '<span />', {
     18                        'class': 'screen-reader-text',
     19                        text: screenReaderText.expand
     20                } ) );
     21
     22                container.find( '.menu-item-has-children > a' ).after( dropdownToggle );
     23
     24                // Toggle buttons and submenu items with active children menu items.
     25                container.find( '.current-menu-ancestor > button' ).addClass( 'toggled-on' );
     26                container.find( '.current-menu-ancestor > .sub-menu' ).addClass( 'toggled-on' );
     27
     28                // Add menu items with submenus to aria-haspopup="true".
     29                container.find( '.menu-item-has-children' ).attr( 'aria-haspopup', 'true' );
     30
     31                container.find( '.dropdown-toggle' ).click( function( e ) {
     32                        var _this            = $( this ),
     33                                screenReaderSpan = _this.find( '.screen-reader-text' );
     34
     35                        e.preventDefault();
     36                        _this.toggleClass( 'toggled-on' );
     37                        _this.next( '.children, .sub-menu' ).toggleClass( 'toggled-on' );
     38
     39                        // jscs:disable
     40                        _this.attr( 'aria-expanded', _this.attr( 'aria-expanded' ) === 'false' ? 'true' : 'false' );
     41                        // jscs:enable
     42                        screenReaderSpan.text( screenReaderSpan.text() === screenReaderText.expand ? screenReaderText.collapse : screenReaderText.expand );
     43                } );
     44        }
     45        initMainNavigation( $( '.main-navigation' ) );
     46
     47        masthead         = $( '#masthead' );
     48        menuToggle       = masthead.find( '#menu-toggle' );
     49        siteHeaderMenu   = masthead.find( '#site-header-menu' );
     50        siteNavigation   = masthead.find( '#site-navigation' );
     51        socialNavigation = masthead.find( '#social-navigation' );
     52
     53        // Enable menuToggle.
     54        ( function() {
     55
     56                // Return early if menuToggle is missing.
     57                if ( ! menuToggle.length ) {
     58                        return;
     59                }
     60
     61                // Add an initial values for the attribute.
     62                menuToggle.add( siteNavigation ).add( socialNavigation ).attr( 'aria-expanded', 'false' );
     63
     64                menuToggle.on( 'click.twentysixteen', function() {
     65                        $( this ).add( siteHeaderMenu ).toggleClass( 'toggled-on' );
     66
     67                        // jscs:disable
     68                        $( this ).add( siteNavigation ).add( socialNavigation ).attr( 'aria-expanded', $( this ).add( siteNavigation ).add( socialNavigation ).attr( 'aria-expanded' ) === 'false' ? 'true' : 'false' );
     69                        // jscs:enable
     70                } );
     71        } )();
     72
     73        // Fix sub-menus for touch devices and better focus for hidden submenu items for accessibility.
     74        ( function() {
     75                if ( ! siteNavigation.length || ! siteNavigation.children().length ) {
     76                        return;
     77                }
     78
     79                // Toggle `focus` class to allow submenu access on tablets.
     80                function toggleFocusClassTouchScreen() {
     81                        if ( window.innerWidth >= 910 ) {
     82                                $( document.body ).on( 'touchstart.twentysixteen', function( e ) {
     83                                        if ( ! $( e.target ).closest( '.main-navigation li' ).length ) {
     84                                                $( '.main-navigation li' ).removeClass( 'focus' );
     85                                        }
     86                                } );
     87                                siteNavigation.find( '.menu-item-has-children > a' ).on( 'touchstart.twentysixteen', function( e ) {
     88                                        var el = $( this ).parent( 'li' );
     89
     90                                        if ( ! el.hasClass( 'focus' ) ) {
     91                                                e.preventDefault();
     92                                                el.toggleClass( 'focus' );
     93                                                el.siblings( '.focus' ).removeClass( 'focus' );
     94                                        }
     95                                } );
     96                        } else {
     97                                siteNavigation.find( '.menu-item-has-children > a' ).unbind( 'touchstart.twentysixteen' );
     98                        }
     99                }
     100
     101                if ( 'ontouchstart' in window ) {
     102                        $( window ).on( 'resize.twentysixteen', toggleFocusClassTouchScreen );
     103                        toggleFocusClassTouchScreen();
     104                }
     105
     106                siteNavigation.find( 'a' ).on( 'focus.twentysixteen blur.twentysixteen', function() {
     107                        $( this ).parents( '.menu-item' ).toggleClass( 'focus' );
     108                } );
     109        } )();
     110
     111        // Add the default ARIA attributes for the menu toggle and the navigations.
     112        function onResizeARIA() {
     113                if ( window.innerWidth < 910 ) {
     114                        if ( menuToggle.hasClass( 'toggled-on' ) ) {
     115                                menuToggle.attr( 'aria-expanded', 'true' );
     116                        } else {
     117                                menuToggle.attr( 'aria-expanded', 'false' );
     118                        }
     119
     120                        if ( siteHeaderMenu.hasClass( 'toggled-on' ) ) {
     121                                siteNavigation.attr( 'aria-expanded', 'true' );
     122                                socialNavigation.attr( 'aria-expanded', 'true' );
     123                        } else {
     124                                siteNavigation.attr( 'aria-expanded', 'false' );
     125                                socialNavigation.attr( 'aria-expanded', 'false' );
     126                        }
     127
     128                        menuToggle.attr( 'aria-controls', 'site-navigation social-navigation' );
     129                } else {
     130                        menuToggle.removeAttr( 'aria-expanded' );
     131                        siteNavigation.removeAttr( 'aria-expanded' );
     132                        socialNavigation.removeAttr( 'aria-expanded' );
     133                        menuToggle.removeAttr( 'aria-controls' );
     134                }
     135        }
     136
     137        // Add 'below-entry-meta' class to elements.
     138        function belowEntryMetaClass( param ) {
     139                if ( body.hasClass( 'page' ) || body.hasClass( 'search' ) || body.hasClass( 'single-attachment' ) || body.hasClass( 'error404' ) ) {
     140                        return;
     141                }
     142
     143                $( '.entry-content' ).find( param ).each( function() {
     144                        var element              = $( this ),
     145                                elementPos           = element.offset(),
     146                                elementPosTop        = elementPos.top,
     147                                entryFooter          = element.closest( 'article' ).find( '.entry-footer' ),
     148                                entryFooterPos       = entryFooter.offset(),
     149                                entryFooterPosBottom = entryFooterPos.top + ( entryFooter.height() + 28 ),
     150                                caption              = element.closest( 'figure' ),
     151                                newImg;
     152
     153                        // Add 'below-entry-meta' to elements below the entry meta.
     154                        if ( elementPosTop > entryFooterPosBottom ) {
     155
     156                                // Check if full-size images and captions are larger than or equal to 840px.
     157                                if ( 'img.size-full' === param ) {
     158
     159                                        // Create an image to find native image width of resized images (i.e. max-width: 100%).
     160                                        newImg = new Image();
     161                                        newImg.src = element.attr( 'src' );
     162
     163                                        $( newImg ).on( 'load.twentysixteen', function() {
     164                                                if ( newImg.width >= 840  ) {
     165                                                        element.addClass( 'below-entry-meta' );
     166
     167                                                        if ( caption.hasClass( 'wp-caption' ) ) {
     168                                                                caption.addClass( 'below-entry-meta' );
     169                                                                caption.removeAttr( 'style' );
     170                                                        }
     171                                                }
     172                                        } );
     173                                } else {
     174                                        element.addClass( 'below-entry-meta' );
     175                                }
     176                        } else {
     177                                element.removeClass( 'below-entry-meta' );
     178                                caption.removeClass( 'below-entry-meta' );
     179                        }
     180                } );
     181        }
     182
     183        $( document ).ready( function() {
     184                body = $( document.body );
     185
     186                $( window )
     187                        .on( 'load.twentysixteen', onResizeARIA )
     188                        .on( 'resize.twentysixteen', function() {
     189                                clearTimeout( resizeTimer );
     190                                resizeTimer = setTimeout( function() {
     191                                        belowEntryMetaClass( 'img.size-full' );
     192                                        belowEntryMetaClass( 'blockquote.alignleft, blockquote.alignright' );
     193                                }, 300 );
     194                                onResizeARIA();
     195                        } );
     196
     197                belowEntryMetaClass( 'img.size-full' );
     198                belowEntryMetaClass( 'blockquote.alignleft, blockquote.alignright' );
     199        } );
     200} )( jQuery );
  • src/wp-content/themes/twentysixteen/js/html5.js

     
     1/**
     2* @preserve HTML5 Shiv 3.7.3 | @afarkas @jdalton @jon_neal @rem | MIT/GPL2 Licensed
     3*/
     4;(function(window, document) {
     5/*jshint evil:true */
     6  /** version */
     7  var version = '3.7.3';
     8
     9  /** Preset options */
     10  var options = window.html5 || {};
     11
     12  /** Used to skip problem elements */
     13  var reSkip = /^<|^(?:button|map|select|textarea|object|iframe|option|optgroup)$/i;
     14
     15  /** Not all elements can be cloned in IE **/
     16  var saveClones = /^(?:a|b|code|div|fieldset|h1|h2|h3|h4|h5|h6|i|label|li|ol|p|q|span|strong|style|table|tbody|td|th|tr|ul)$/i;
     17
     18  /** Detect whether the browser supports default html5 styles */
     19  var supportsHtml5Styles;
     20
     21  /** Name of the expando, to work with multiple documents or to re-shiv one document */
     22  var expando = '_html5shiv';
     23
     24  /** The id for the the documents expando */
     25  var expanID = 0;
     26
     27  /** Cached data for each document */
     28  var expandoData = {};
     29
     30  /** Detect whether the browser supports unknown elements */
     31  var supportsUnknownElements;
     32
     33  (function() {
     34    try {
     35        var a = document.createElement('a');
     36        a.innerHTML = '<xyz></xyz>';
     37        //if the hidden property is implemented we can assume, that the browser supports basic HTML5 Styles
     38        supportsHtml5Styles = ('hidden' in a);
     39
     40        supportsUnknownElements = a.childNodes.length == 1 || (function() {
     41          // assign a false positive if unable to shiv
     42          (document.createElement)('a');
     43          var frag = document.createDocumentFragment();
     44          return (
     45            typeof frag.cloneNode == 'undefined' ||
     46            typeof frag.createDocumentFragment == 'undefined' ||
     47            typeof frag.createElement == 'undefined'
     48          );
     49        }());
     50    } catch(e) {
     51      // assign a false positive if detection fails => unable to shiv
     52      supportsHtml5Styles = true;
     53      supportsUnknownElements = true;
     54    }
     55
     56  }());
     57
     58  /*--------------------------------------------------------------------------*/
     59
     60  /**
     61   * Creates a style sheet with the given CSS text and adds it to the document.
     62   * @private
     63   * @param {Document} ownerDocument The document.
     64   * @param {String} cssText The CSS text.
     65   * @returns {StyleSheet} The style element.
     66   */
     67  function addStyleSheet(ownerDocument, cssText) {
     68    var p = ownerDocument.createElement('p'),
     69        parent = ownerDocument.getElementsByTagName('head')[0] || ownerDocument.documentElement;
     70
     71    p.innerHTML = 'x<style>' + cssText + '</style>';
     72    return parent.insertBefore(p.lastChild, parent.firstChild);
     73  }
     74
     75  /**
     76   * Returns the value of `html5.elements` as an array.
     77   * @private
     78   * @returns {Array} An array of shived element node names.
     79   */
     80  function getElements() {
     81    var elements = html5.elements;
     82    return typeof elements == 'string' ? elements.split(' ') : elements;
     83  }
     84
     85  /**
     86   * Extends the built-in list of html5 elements
     87   * @memberOf html5
     88   * @param {String|Array} newElements whitespace separated list or array of new element names to shiv
     89   * @param {Document} ownerDocument The context document.
     90   */
     91  function addElements(newElements, ownerDocument) {
     92    var elements = html5.elements;
     93    if(typeof elements != 'string'){
     94      elements = elements.join(' ');
     95    }
     96    if(typeof newElements != 'string'){
     97      newElements = newElements.join(' ');
     98    }
     99    html5.elements = elements +' '+ newElements;
     100    shivDocument(ownerDocument);
     101  }
     102
     103   /**
     104   * Returns the data associated to the given document
     105   * @private
     106   * @param {Document} ownerDocument The document.
     107   * @returns {Object} An object of data.
     108   */
     109  function getExpandoData(ownerDocument) {
     110    var data = expandoData[ownerDocument[expando]];
     111    if (!data) {
     112        data = {};
     113        expanID++;
     114        ownerDocument[expando] = expanID;
     115        expandoData[expanID] = data;
     116    }
     117    return data;
     118  }
     119
     120  /**
     121   * returns a shived element for the given nodeName and document
     122   * @memberOf html5
     123   * @param {String} nodeName name of the element
     124   * @param {Document|DocumentFragment} ownerDocument The context document.
     125   * @returns {Object} The shived element.
     126   */
     127  function createElement(nodeName, ownerDocument, data){
     128    if (!ownerDocument) {
     129        ownerDocument = document;
     130    }
     131    if(supportsUnknownElements){
     132        return ownerDocument.createElement(nodeName);
     133    }
     134    if (!data) {
     135        data = getExpandoData(ownerDocument);
     136    }
     137    var node;
     138
     139    if (data.cache[nodeName]) {
     140        node = data.cache[nodeName].cloneNode();
     141    } else if (saveClones.test(nodeName)) {
     142        node = (data.cache[nodeName] = data.createElem(nodeName)).cloneNode();
     143    } else {
     144        node = data.createElem(nodeName);
     145    }
     146
     147    // Avoid adding some elements to fragments in IE < 9 because
     148    // * Attributes like `name` or `type` cannot be set/changed once an element
     149    //   is inserted into a document/fragment
     150    // * Link elements with `src` attributes that are inaccessible, as with
     151    //   a 403 response, will cause the tab/window to crash
     152    // * Script elements appended to fragments will execute when their `src`
     153    //   or `text` property is set
     154    return node.canHaveChildren && !reSkip.test(nodeName) && !node.tagUrn ? data.frag.appendChild(node) : node;
     155  }
     156
     157  /**
     158   * returns a shived DocumentFragment for the given document
     159   * @memberOf html5
     160   * @param {Document} ownerDocument The context document.
     161   * @returns {Object} The shived DocumentFragment.
     162   */
     163  function createDocumentFragment(ownerDocument, data){
     164    if (!ownerDocument) {
     165        ownerDocument = document;
     166    }
     167    if(supportsUnknownElements){
     168        return ownerDocument.createDocumentFragment();
     169    }
     170    data = data || getExpandoData(ownerDocument);
     171    var clone = data.frag.cloneNode(),
     172        i = 0,
     173        elems = getElements(),
     174        l = elems.length;
     175    for(;i<l;i++){
     176        clone.createElement(elems[i]);
     177    }
     178    return clone;
     179  }
     180
     181  /**
     182   * Shivs the `createElement` and `createDocumentFragment` methods of the document.
     183   * @private
     184   * @param {Document|DocumentFragment} ownerDocument The document.
     185   * @param {Object} data of the document.
     186   */
     187  function shivMethods(ownerDocument, data) {
     188    if (!data.cache) {
     189        data.cache = {};
     190        data.createElem = ownerDocument.createElement;
     191        data.createFrag = ownerDocument.createDocumentFragment;
     192        data.frag = data.createFrag();
     193    }
     194
     195
     196    ownerDocument.createElement = function(nodeName) {
     197      //abort shiv
     198      if (!html5.shivMethods) {
     199          return data.createElem(nodeName);
     200      }
     201      return createElement(nodeName, ownerDocument, data);
     202    };
     203
     204    ownerDocument.createDocumentFragment = Function('h,f', 'return function(){' +
     205      'var n=f.cloneNode(),c=n.createElement;' +
     206      'h.shivMethods&&(' +
     207        // unroll the `createElement` calls
     208        getElements().join().replace(/[\w\-:]+/g, function(nodeName) {
     209          data.createElem(nodeName);
     210          data.frag.createElement(nodeName);
     211          return 'c("' + nodeName + '")';
     212        }) +
     213      ');return n}'
     214    )(html5, data.frag);
     215  }
     216
     217  /*--------------------------------------------------------------------------*/
     218
     219  /**
     220   * Shivs the given document.
     221   * @memberOf html5
     222   * @param {Document} ownerDocument The document to shiv.
     223   * @returns {Document} The shived document.
     224   */
     225  function shivDocument(ownerDocument) {
     226    if (!ownerDocument) {
     227        ownerDocument = document;
     228    }
     229    var data = getExpandoData(ownerDocument);
     230
     231    if (html5.shivCSS && !supportsHtml5Styles && !data.hasCSS) {
     232      data.hasCSS = !!addStyleSheet(ownerDocument,
     233        // corrects block display not defined in IE6/7/8/9
     234        'article,aside,dialog,figcaption,figure,footer,header,hgroup,main,nav,section{display:block}' +
     235        // adds styling not present in IE6/7/8/9
     236        'mark{background:#FF0;color:#000}' +
     237        // hides non-rendered elements
     238        'template{display:none}'
     239      );
     240    }
     241    if (!supportsUnknownElements) {
     242      shivMethods(ownerDocument, data);
     243    }
     244    return ownerDocument;
     245  }
     246
     247  /*--------------------------------------------------------------------------*/
     248
     249  /**
     250   * The `html5` object is exposed so that more elements can be shived and
     251   * existing shiving can be detected on iframes.
     252   * @type Object
     253   * @example
     254   *
     255   * // options can be changed before the script is included
     256   * html5 = { 'elements': 'mark section', 'shivCSS': false, 'shivMethods': false };
     257   */
     258  var html5 = {
     259
     260    /**
     261     * An array or space separated string of node names of the elements to shiv.
     262     * @memberOf html5
     263     * @type Array|String
     264     */
     265    'elements': options.elements || 'abbr article aside audio bdi canvas data datalist details dialog figcaption figure footer header hgroup main mark meter nav output picture progress section summary template time video',
     266
     267    /**
     268     * current version of html5shiv
     269     */
     270    'version': version,
     271
     272    /**
     273     * A flag to indicate that the HTML5 style sheet should be inserted.
     274     * @memberOf html5
     275     * @type Boolean
     276     */
     277    'shivCSS': (options.shivCSS !== false),
     278
     279    /**
     280     * Is equal to true if a browser supports creating unknown/HTML5 elements
     281     * @memberOf html5
     282     * @type boolean
     283     */
     284    'supportsUnknownElements': supportsUnknownElements,
     285
     286    /**
     287     * A flag to indicate that the document's `createElement` and `createDocumentFragment`
     288     * methods should be overwritten.
     289     * @memberOf html5
     290     * @type Boolean
     291     */
     292    'shivMethods': (options.shivMethods !== false),
     293
     294    /**
     295     * A string to describe the type of `html5` object ("default" or "default print").
     296     * @memberOf html5
     297     * @type String
     298     */
     299    'type': 'default',
     300
     301    // shivs the document according to the specified `html5` object options
     302    'shivDocument': shivDocument,
     303
     304    //creates a shived element
     305    createElement: createElement,
     306
     307    //creates a shived documentFragment
     308    createDocumentFragment: createDocumentFragment,
     309
     310    //extends list of elements
     311    addElements: addElements
     312  };
     313
     314  /*--------------------------------------------------------------------------*/
     315
     316  // expose html5
     317  window.html5 = html5;
     318
     319  // shiv the document
     320  shivDocument(document);
     321
     322  if(typeof module == 'object' && module.exports){
     323    module.exports = html5;
     324  }
     325
     326}(typeof window !== "undefined" ? window : this, document));
     327 No newline at end of file
  • src/wp-content/themes/twentysixteen/js/keyboard-image-navigation.js

     
     1/**
     2 * Twenty Sixteen keyboard support for image navigation.
     3 */
     4
     5( function( $ ) {
     6        $( document ).on( 'keydown.twentysixteen', function( e ) {
     7                var url = false;
     8
     9                // Left arrow key code.
     10                if ( 37 === e.which ) {
     11                        url = $( '.nav-previous a' ).attr( 'href' );
     12
     13                // Right arrow key code.
     14                } else if ( 39 === e.which ) {
     15                        url = $( '.nav-next a' ).attr( 'href' );
     16
     17                // Other key code.
     18                } else {
     19                        return;
     20                }
     21
     22                if ( url && ! $( 'textarea, input' ).is( ':focus' ) ) {
     23                        window.location = url;
     24                }
     25        } );
     26} )( jQuery );
  • src/wp-content/themes/twentysixteen/js/skip-link-focus-fix.js

     
     1/**
     2 * Makes "skip to content" link work correctly in IE9, Chrome, and Opera
     3 * for better accessibility.
     4 *
     5 * @link http://www.nczonline.net/blog/2013/01/15/fixing-skip-to-content-links/
     6 */
     7
     8 ( function() {
     9        var isWebkit = navigator.userAgent.toLowerCase().indexOf( 'webkit' ) > -1,
     10                isOpera  = navigator.userAgent.toLowerCase().indexOf( 'opera' )  > -1,
     11                isIE     = navigator.userAgent.toLowerCase().indexOf( 'msie' )   > -1;
     12
     13        if ( ( isWebkit || isOpera || isIE ) && document.getElementById && window.addEventListener ) {
     14                window.addEventListener( 'hashchange', function() {
     15                        var id = location.hash.substring( 1 ),
     16                                element;
     17
     18                        if ( ! ( /^[A-z0-9_-]+$/.test( id ) ) ) {
     19                                return;
     20                        }
     21
     22                        element = document.getElementById( id );
     23
     24                        if ( element ) {
     25                                if ( ! ( /^(?:a|select|input|button|textarea)$/i.test( element.tagName ) ) ) {
     26                                        element.tabIndex = -1;
     27                                }
     28
     29                                element.focus();
     30
     31                                // Repositions the window on jump-to-anchor to account for admin bar and border height.
     32                                window.scrollBy( 0, -53 );
     33                        }
     34                }, false );
     35        }
     36} )();
  • src/wp-content/themes/twentysixteen/page.php

     
     1<?php
     2/**
     3 * The template for displaying pages
     4 *
     5 * This is the template that displays all pages by default.
     6 * Please note that this is the WordPress construct of pages and that
     7 * other "pages" on your WordPress site will use a different template.
     8 *
     9 * @package WordPress
     10 * @subpackage Twenty_Sixteen
     11 * @since Twenty Sixteen 1.0
     12 */
     13
     14get_header(); ?>
     15
     16<div id="primary" class="content-area">
     17        <main id="main" class="site-main" role="main">
     18                <?php
     19                // Start the loop.
     20                while ( have_posts() ) : the_post();
     21
     22                        // Include the page content template.
     23                        get_template_part( 'template-parts/content', 'page' );
     24
     25                        // If comments are open or we have at least one comment, load up the comment template.
     26                        if ( comments_open() || get_comments_number() ) {
     27                                comments_template();
     28                        }
     29
     30                        // End of the loop.
     31                endwhile;
     32                ?>
     33
     34        </main><!-- .site-main -->
     35
     36        <?php get_sidebar( 'content-bottom' ); ?>
     37
     38</div><!-- .content-area -->
     39
     40<?php get_sidebar(); ?>
     41<?php get_footer(); ?>
  • src/wp-content/themes/twentysixteen/readme.txt

     
     1=== Twenty Sixteen ===
     2Contributors: the WordPress team
     3Requires at least: WordPress 4.4
     4Tested up to: WordPress 4.5
     5Version: 1.3
     6License: GPLv2 or later
     7License URI: http://www.gnu.org/licenses/gpl-2.0.html
     8Tags: one-column, two-columns, right-sidebar, accessibility-ready, custom-background, custom-colors, custom-header, custom-menu, editor-style, featured-images, flexible-header, microformats, post-formats, rtl-language-support, sticky-post, threaded-comments, translation-ready, blog
     9
     10== Description ==
     11Twenty Sixteen is a modernized take on an ever-popular WordPress layout — the horizontal masthead with an optional right sidebar that works perfectly for blogs and websites. It has custom color options with beautiful default color schemes, a harmonious fluid grid using a mobile-first approach, and impeccable polish in every detail. Twenty Sixteen will make your WordPress look beautiful everywhere.
     12
     13* Mobile-first, Responsive Layout
     14* Custom Colors
     15* Custom Header
     16* Social Links
     17* Post Formats
     18* The GPL v2.0 or later license. :) Use it to make something cool.
     19
     20For more information about Twenty Sixteen please go to https://codex.wordpress.org/Twenty_Sixteen.
     21
     22== Installation ==
     23
     241. In your admin panel, go to Appearance -> Themes and click the 'Add New' button.
     252. Type in Twenty Sixteen in the search form and press the 'Enter' key on your keyboard.
     263. Click on the 'Activate' button to use your new theme right away.
     274. Go to https://codex.wordpress.org/Twenty_Sixteen for a guide on how to customize this theme.
     285. Navigate to Appearance > Customize in your admin panel and customize to taste.
     29
     30== Copyright ==
     31
     32Twenty Sixteen WordPress Theme, Copyright 2014-2015 WordPress.org
     33Twenty Sixteen is distributed under the terms of the GNU GPL
     34
     35This program is free software: you can redistribute it and/or modify
     36it under the terms of the GNU General Public License as published by
     37the Free Software Foundation, either version 2 of the License, or
     38(at your option) any later version.
     39
     40This program is distributed in the hope that it will be useful,
     41but WITHOUT ANY WARRANTY; without even the implied warranty of
     42MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
     43GNU General Public License for more details.
     44
     45Twenty Sixteen Theme bundles the following third-party resources:
     46
     47HTML5 Shiv v3.7.0, Copyright 2014 Alexander Farkas
     48Licenses: MIT/GPL2
     49Source: https://github.com/aFarkas/html5shiv
     50
     51Genericons icon font, Copyright 2013-2015 Automattic.com
     52License: GNU GPL, Version 2 (or later)
     53Source: http://www.genericons.com
     54
     55Image used in screenshot.png: A photo by Austin Schmid (https://unsplash.com/schmidy/), licensed under Creative Commons Zero(http://creativecommons.org/publicdomain/zero/1.0/)
     56
     57== Changelog ==
     58
     59= 1.3 =
     60* Released: August 16, 2016
     61
     62https://codex.wordpress.org/Twenty_Sixteen_Theme_Changelog#Version_1.3
     63
     64= 1.2 =
     65* Released: April 12, 2016
     66
     67https://codex.wordpress.org/Twenty_Sixteen_Theme_Changelog#Version_1.2
     68
     69= 1.1 =
     70* Released: January 6, 2016
     71
     72https://codex.wordpress.org/Twenty_Sixteen_Theme_Changelog#Version_1.1
     73
     74= 1.0 =
     75* Released: December 8, 2015
     76
     77Initial release
     78
     79== Notes ==
     80
     81Only the default and dark color schemes are accessibility ready.
  • src/wp-content/themes/twentysixteen/rtl.css

     
     1/*
     2Theme Name: Twenty Sixteen
     3Description: Adds support for languages written in a Right To Left (RTL) direction.
     4It's easy, just a matter of overwriting all the horizontal positioning attributes
     5of your CSS stylesheet in a separate stylesheet file named rtl.css.
     6
     7See: https://codex.wordpress.org/Right_to_Left_Language_Support
     8*/
     9
     10/**
     11 * Table of Contents:
     12 *
     13 * 1.0 - Normalize
     14 * 2.0 - Typography
     15 * 3.0 - Elements
     16 * 4.0 - Forms
     17 * 5.0 - Navigations
     18 * 6.0 - Accessibility
     19 * 7.0 - Widgets
     20 * 8.0 - Content
     21 *   8.1 - Header
     22 *   8.2 - Posts and pages
     23 *   8.3 - Comments
     24 *   8.4 - Footer
     25 * 9.0 - Multisites
     26 * 10.0 - Media Queries
     27 *    10.1 - >= 710px
     28 *    10.2 - >= 910px
     29 *    10.3 - >= 985px
     30 *    10.4 - >= 1200px
     31 */
     32
     33
     34/**
     35 * 1.0 - Normalize
     36 */
     37
     38body {
     39        direction: rtl;
     40        unicode-bidi: embed;
     41}
     42
     43input[type="checkbox"],
     44input[type="radio"] {
     45        margin-right: auto;
     46        margin-left: 0.4375em;
     47}
     48
     49
     50/**
     51 * 2.0 - Typography
     52 */
     53
     54body,
     55button,
     56button[disabled]:hover,
     57button[disabled]:focus,
     58input[type="button"],
     59input[type="button"][disabled]:hover,
     60input[type="button"][disabled]:focus,
     61input[type="reset"],
     62input[type="reset"][disabled]:hover,
     63input[type="reset"][disabled]:focus,
     64input[type="submit"],
     65input[type="submit"][disabled]:hover,
     66input[type="submit"][disabled]:focus,
     67input,
     68select,
     69textarea,
     70.post-password-form label,
     71.main-navigation,
     72.post-navigation,
     73.post-navigation .post-title,
     74.pagination,
     75.image-navigation,
     76.comment-navigation,
     77.site .skip-link,
     78.logged-in .site .skip-link,
     79.widget .widget-title,
     80.widget_recent_entries .post-date,
     81.widget_rss .rss-date,
     82.widget_rss cite,
     83.tagcloud a,
     84.site-title,
     85.entry-title,
     86.entry-footer,
     87.sticky-post,
     88.page-title,
     89.page-links,
     90.comments-title,
     91.comment-reply-title,
     92.comment-metadata,
     93.pingback .edit-link,
     94.comment-reply-link,
     95.comment-form label,
     96.no-comments,
     97.required,
     98.site-footer .site-title,
     99.site-footer .site-title:after,
     100.widecolumn label,
     101.widecolumn .mu_register label {
     102        font-family: Arial, Tahoma, sans-serif;
     103}
     104
     105::-webkit-input-placeholder {
     106        font-family: Arial, Tahoma, sans-serif;
     107}
     108
     109:-moz-placeholder {
     110        font-family: Arial, Tahoma, sans-serif;
     111}
     112
     113::-moz-placeholder {
     114        font-family: Arial, Tahoma, sans-serif;
     115}
     116
     117:-ms-input-placeholder {
     118        font-family: Arial, Tahoma, sans-serif;
     119}
     120
     121blockquote {
     122        border-right-width: 4px;
     123        border-left-width: 0;
     124        padding-right: 1.263157895em;
     125        padding-left: 0;
     126}
     127
     128.entry-content h1,
     129.entry-content h2,
     130.entry-content h3,
     131.entry-content h4,
     132.entry-content h5,
     133.entry-content h6,
     134.entry-summary h1,
     135.entry-summary h2,
     136.entry-summary h3,
     137.entry-summary h4,
     138.entry-summary h5,
     139.entry-summary h6,
     140.comment-content h1,
     141.comment-content h2,
     142.comment-content h3,
     143.comment-content h4,
     144.comment-content h5,
     145.comment-content h6,
     146.textwidget h1,
     147.textwidget h2,
     148.textwidget h3,
     149.textwidget h4,
     150.textwidget h5,
     151.textwidget h6,
     152.entry-content .author-title,
     153.widget_calendar caption,
     154.widecolumn h2 {
     155        font-weight: 700;
     156}
     157
     158
     159/**
     160 * 3.0 - Elements
     161 */
     162
     163ul,
     164ol {
     165        margin: 0 1.25em 1.75em 0;
     166}
     167
     168ol {
     169        margin-right: 1.5em;
     170        margin-left: 0;
     171}
     172
     173caption,
     174th,
     175td {
     176        text-align: right;
     177}
     178
     179
     180/**
     181 * 4.0 - Forms
     182 */
     183
     184input[type="search"].search-field {
     185        border-radius: 0 2px 2px 0;
     186}
     187
     188.search-submit:before {
     189        left: 1px;
     190}
     191
     192.search-submit {
     193        border-radius: 2px 0 0 2px;
     194        left: 0;
     195        right: auto;
     196}
     197
     198
     199/**
     200 * 5.0 - Navigation
     201 */
     202
     203.main-navigation ul ul {
     204        margin-right: 0.875em;
     205        margin-left: auto;
     206}
     207
     208.main-navigation .menu-item-has-children > a {
     209        margin-right: auto;
     210        margin-left: 56px;
     211}
     212
     213.dropdown-toggle {
     214        left: 0;
     215        right: auto;
     216}
     217
     218.dropdown-toggle:after {
     219        border-right-width: 1px;
     220        border-left-width: 0;
     221        left: auto;
     222        right: 1px;
     223}
     224
     225.social-navigation li {
     226        float: right;
     227        margin: 0 0 0.4375em 0.4375em;
     228}
     229
     230.pagination:before {
     231        left: 0;
     232        right: auto;
     233}
     234
     235.pagination:after {
     236        left: 54px;
     237        right: auto;
     238}
     239
     240.pagination .nav-links {
     241        padding-right: 0;
     242        padding-left: 106px;
     243}
     244
     245.pagination .nav-links:before {
     246        content: "\f430";
     247        left: -1px;
     248        right: auto;
     249}
     250
     251.pagination .nav-links:after {
     252        content: "\f429";
     253        left: 55px;
     254        right: auto;
     255}
     256
     257.pagination .page-numbers {
     258        margin: 0 -0.7368421053em 0 0.7368421053em;
     259}
     260
     261.pagination .prev,
     262.pagination .next {
     263        margin: 0;
     264}
     265
     266.pagination .prev {
     267        left: 54px;
     268        right: auto;
     269}
     270
     271.pagination .prev:before {
     272        content: "\f429";
     273        left: auto;
     274        right: -1px;
     275}
     276
     277.pagination .next {
     278        left: 0;
     279        right: auto;
     280}
     281
     282.pagination .next:before {
     283        content: "\f430";
     284        left: -1px;
     285        right: auto;
     286}
     287
     288.comment-navigation {
     289        margin-right: 0;
     290        margin-left: 0;
     291}
     292
     293
     294/**
     295 * 6.0 - Accessibility
     296 */
     297
     298.site .skip-link {
     299        left: auto;
     300        right: -9999em;
     301}
     302
     303.site .skip-link:focus {
     304        left: auto;
     305        right: 6px;
     306}
     307
     308
     309/**
     310 * 7.0 - Widgets
     311 */
     312
     313.tagcloud a {
     314        margin-right: 0;
     315        margin-left: 0.1875em;
     316}
     317
     318
     319/**
     320 * 8.0 - Content
     321 */
     322
     323
     324/**
     325 * 8.1 - Header
     326 */
     327
     328.site-branding {
     329        margin-right: 0;
     330        margin-left: auto;
     331}
     332
     333
     334/**
     335 * 8.2 - Posts and pages
     336 */
     337
     338.author-avatar .avatar {
     339        float: right;
     340        margin-right: 0;
     341        margin-left: 1.75em;
     342}
     343
     344.entry-footer .avatar {
     345        margin-right: 0;
     346        margin-left: 0.5384615385em;
     347}
     348
     349.page-links a,
     350.page-links > span {
     351        margin-right: auto;
     352        margin-left: 0.3076923077em;
     353}
     354
     355.page-links > .page-links-title {
     356        padding-right: 0;
     357        padding-left: 0.6153846154em;
     358}
     359
     360body:not(.search-results) .entry-summary .alignright {
     361        margin: 0.2631578947em 0 1.4736842105em 1.4736842105em;
     362}
     363
     364body:not(.search-results) .entry-summary .alignleft {
     365        margin: 0.2631578947em 1.4736842105em 1.4736842105em 0;
     366}
     367
     368
     369/**
     370 * 8.3 - Comments
     371 */
     372
     373.comment-list .children > li {
     374        padding-right: 0.875em;
     375        padding-left: 0;
     376}
     377
     378.comment-author .avatar {
     379        float: right;
     380        margin-right: auto;
     381        margin-left: 0.875em;
     382}
     383
     384.bypostauthor > article .fn:after {
     385        left: auto;
     386        right: 3px;
     387}
     388
     389.comment-content ul,
     390.comment-content ol {
     391        margin: 0 1.25em 1.5em 0;
     392}
     393
     394.comment-reply-title small a {
     395        float: left;
     396}
     397
     398
     399/**
     400 * 8.4 - Footer
     401 */
     402
     403.site-footer .site-title:after {
     404        padding-right: 0.538461538em;
     405        padding-left: 0.307692308em;
     406}
     407
     408
     409/**
     410 * 9.0 - Multisites
     411 */
     412
     413.widecolumn .mu_register label {
     414        margin-right: 0;
     415        margin-left: 0.7692307692em;
     416}
     417
     418
     419/**
     420 * 10.0 - Media Queries
     421 */
     422
     423
     424/**
     425 * 10.1 - >= 710px
     426 */
     427
     428@media screen and (min-width: 44.375em) {
     429        .pagination {
     430                margin: 0 7.6923% 4.421052632em 23.0769%;
     431        }
     432
     433        .entry-header,
     434        .post-thumbnail,
     435        .entry-content,
     436        .entry-summary,
     437        .entry-footer,
     438        .comments-area,
     439        .image-navigation,
     440        .post-navigation,
     441        .page-header,
     442        .page-content,
     443        .content-bottom-widgets {
     444                margin-right: 7.6923%;
     445                margin-left: 23.0769%;
     446        }
     447
     448        .entry-content blockquote:not(.alignright):not(.alignleft),
     449        .entry-summary blockquote,
     450        .comment-content blockquote {
     451                margin-right: -1.473684211em;
     452                margin-left: auto;
     453        }
     454
     455        .entry-content blockquote blockquote:not(.alignright):not(.alignleft),
     456        .entry-summary blockquote blockquote,
     457        .comment-content blockquote blockquote {
     458                margin-right: 0;
     459                margin-left: auto;
     460        }
     461
     462        .entry-content ul,
     463        .entry-summary ul,
     464        .comment-content ul,
     465        .entry-content ol,
     466        .entry-summary ol,
     467        .comment-content ol {
     468                margin-right: 0;
     469                margin-left: auto;
     470        }
     471
     472        .entry-content li > ul,
     473        .entry-summary li > ul,
     474        .comment-content li > ul,
     475        .entry-content blockquote > ul,
     476        .entry-summary blockquote > ul,
     477        .comment-content blockquote > ul {
     478                margin-right: 1.25em;
     479                margin-left: auto;
     480        }
     481
     482        .entry-content li > ol,
     483        .entry-summary li > ol,
     484        .comment-content li > ol,
     485        .entry-content blockquote > ol,
     486        .entry-summary blockquote > ol,
     487        .comment-content blockquote > ol {
     488                margin-right: 1.5em;
     489                margin-left: auto;
     490        }
     491
     492        .comment-list .children > li {
     493                padding-right: 1.75em;
     494                padding-left: 0;
     495        }
     496
     497        .sidebar,
     498        .widecolumn {
     499                padding-right: 7.6923%;
     500                padding-left: 23.0769%;
     501        }
     502
     503        body:not(.search-results) .entry-summary li > ul,
     504        body:not(.search-results) .entry-summary blockquote > ul {
     505                margin-right: 1.157894737em;
     506                margin-left: auto;
     507        }
     508
     509        body:not(.search-results) .entry-summary li > ol,
     510        body:not(.search-results) .entry-summary blockquote > ol {
     511                margin-right: 1.473684211em;
     512                margin-left: auto;
     513        }
     514}
     515
     516
     517/**
     518 * 10.2 - >= 910px
     519 */
     520
     521@media screen and (min-width: 56.875em) {
     522        .main-navigation .primary-menu > li {
     523                float: right;
     524        }
     525
     526        .main-navigation ul ul {
     527                left: auto;
     528                margin: 0;
     529                right: -999em;
     530        }
     531
     532        .main-navigation ul ul:before {
     533                left: 9px;
     534                right: auto;
     535        }
     536
     537        .main-navigation ul ul:after {
     538                left: 11px;
     539                right: auto;
     540        }
     541
     542        .main-navigation li:hover > ul,
     543        .main-navigation li.focus > ul {
     544                left: 0;
     545                right: auto;
     546        }
     547
     548        .main-navigation ul ul li:hover > ul,
     549        .main-navigation ul ul li.focus > ul {
     550                left: 100%;
     551                right: auto;
     552        }
     553
     554        .main-navigation .menu-item-has-children > a {
     555                margin: 0;
     556                padding-right: 0.875em;
     557                padding-left: 2.25em;
     558        }
     559
     560        .main-navigation .menu-item-has-children > a:after {
     561                left: 0.625em;
     562                right: auto;
     563        }
     564
     565        .main-navigation ul ul .menu-item-has-children > a {
     566                padding-right: 0.875em;
     567                padding-left: 2.0625em;
     568        }
     569
     570        .main-navigation ul ul .menu-item-has-children > a:after {
     571                left: 0.5625em;
     572                right: auto;
     573                top: 0.8125em;
     574                -webkit-transform: rotate(-90deg);
     575                -moz-transform: rotate(-90deg);
     576                -ms-transform: rotate(-90deg);
     577                transform: rotate(-90deg);
     578        }
     579
     580        .content-area {
     581                float: right;
     582                margin-right: auto;
     583                margin-left: -100%;
     584        }
     585
     586        .entry-header,
     587        .post-thumbnail,
     588        .entry-content,
     589        .entry-summary,
     590        .entry-footer,
     591        .comments-area,
     592        .image-navigation,
     593        .post-navigation,
     594        .pagination,
     595        .page-header,
     596        .page-content,
     597        .content-bottom-widgets {
     598                margin-right: 0;
     599                margin-left: 0;
     600        }
     601
     602        .sidebar {
     603                float: right;
     604                margin-right: 75%;
     605                margin-left: auto;
     606                padding: 0;
     607        }
     608
     609        .widget blockquote {
     610                padding-right: 1.0625em;
     611                padding-left: 0;
     612        }
     613
     614        .widget .alignright {
     615                margin: 0.2307692308em 0 1.6153846154em 1.6153846154em;
     616        }
     617
     618        .widget .alignleft {
     619                margin: 0.2307692308em 1.6153846154em 1.6153846154em 0;
     620        }
     621
     622        .tagcloud a {
     623                margin: 0 0 0.5384615385em 0.2307692308em;
     624        }
     625
     626        .content-bottom-widgets .widget-area:nth-child(1):nth-last-child(2),
     627        .content-bottom-widgets .widget-area:nth-child(2):nth-last-child(1) {
     628                float: right;
     629                margin-right: auto;
     630                margin-left: 7.1428571%;
     631        }
     632
     633        .content-bottom-widgets .widget-area:nth-child(2):nth-last-child(1):last-of-type {
     634                margin-right: auto;
     635                margin-left: 0;
     636        }
     637
     638        .site-info {
     639                margin: 0.538461538em 0 0.538461538em auto;
     640        }
     641
     642        .no-sidebar .entry-header,
     643        .no-sidebar .entry-content,
     644        .no-sidebar .entry-summary,
     645        .no-sidebar .entry-footer,
     646        .no-sidebar .comments-area,
     647        .no-sidebar .image-navigation,
     648        .no-sidebar .post-navigation,
     649        .no-sidebar .pagination,
     650        .no-sidebar .page-header,
     651        .no-sidebar .page-content,
     652        .no-sidebar .content-bottom-widgets {
     653                margin-right: 15%;
     654                margin-left: 15%;
     655        }
     656
     657        .no-sidebar .post-thumbnail {
     658                margin-right: 0;
     659                margin-left: 0;
     660        }
     661
     662        .widecolumn {
     663                padding-right: 15%;
     664                padding-left: 15%;
     665        }
     666}
     667
     668
     669/**
     670 * 10.3 - >= 985px
     671 */
     672
     673@media screen and (min-width: 61.5625em) {
     674        body:not(.search-results) article:not(.type-page) .entry-content {
     675                float: left;
     676        }
     677
     678        body:not(.search-results) article:not(.type-page) .entry-content > blockquote.alignleft.below-entry-meta {
     679                margin-right: 1.473684211em;
     680                margin-left: 0;
     681                width: -webkit-calc(50% - 0.736842105em);
     682                width: calc(50% - 0.736842105em);;
     683        }
     684
     685        body:not(.search-results) article:not(.type-page) .entry-content > blockquote.alignright.below-entry-meta {
     686                margin-right: -40%;
     687                margin-left: 1.473684211em;
     688                width: -webkit-calc(60% - 1.4736842105em);
     689                width: calc(60% - 1.4736842105em);
     690        }
     691
     692        body:not(.search-results) article:not(.type-page) img.below-entry-meta,
     693        body:not(.search-results) article:not(.type-page) figure.below-entry-meta {
     694                margin-right: -40%;
     695                margin-left: 0;
     696        }
     697
     698        body:not(.search-results) article:not(.type-page) .entry-footer {
     699                float: right;
     700        }
     701
     702        body.no-sidebar:not(.search-results) article:not(.type-page) .entry-content {
     703                float: right;
     704                margin-right: 34.99999999%;
     705                margin-left: -100%;
     706        }
     707
     708        body.no-sidebar:not(.search-results) article:not(.type-page) .entry-footer {
     709                margin-right: 15%;
     710                margin-left: -100%;
     711        }
     712}
     713
     714
     715/**
     716 * 10.4 - >= 1200px
     717 */
     718
     719@media screen and (min-width: 75em) {
     720        body:not(.search-results) .entry-summary li > ul,
     721        body:not(.search-results) .entry-summary blockquote > ul {
     722                margin-right: 0.956521739em;
     723                margin-left: auto;
     724        }
     725
     726        body:not(.search-results) .entry-summary li > ol,
     727        body:not(.search-results) .entry-summary blockquote > ol {
     728                margin-right: 1.52173913em;
     729                margin-left: auto;
     730        }
     731
     732        body:not(.search-results) .entry-summary blockquote {
     733                padding-right: 1.347826087em;
     734                padding-left: 0;
     735        }
     736
     737        body:not(.search-results) .entry-summary blockquote:not(.alignright):not(.alignleft) {
     738                margin-right: -1.52173913em;
     739                margin-left: auto;
     740        }
     741
     742        body:not(.search-results) .entry-summary blockquote blockquote:not(.alignright):not(.alignleft) {
     743                margin-right: 0;
     744                margin-left: auto;
     745        }
     746
     747        body:not(.search-results) .entry-summary .alignright {
     748                margin: 0.2608695652em 0 1.5217391304em 1.5217391304em;
     749        }
     750
     751        body:not(.search-results) .entry-summary .alignleft {
     752                margin: 0.2608695652em 1.5217391304em 1.5217391304em 0;
     753        }
     754}
  • src/wp-content/themes/twentysixteen/screenshot.png

    Cannot display: file marked as a binary type.
    svn:mime-type = application/octet-stream
  • src/wp-content/themes/twentysixteen/search.php

    Property changes on: src/wp-content/themes/twentysixteen/screenshot.png
    ___________________________________________________________________
    Added: svn:mime-type
    ## -0,0 +1 ##
    +application/octet-stream
    \ No newline at end of property
     
     1<?php
     2/**
     3 * The template for displaying search results pages
     4 *
     5 * @package WordPress
     6 * @subpackage Twenty_Sixteen
     7 * @since Twenty Sixteen 1.0
     8 */
     9
     10get_header(); ?>
     11
     12        <section id="primary" class="content-area">
     13                <main id="main" class="site-main" role="main">
     14
     15                <?php if ( have_posts() ) : ?>
     16
     17                        <header class="page-header">
     18                                <h1 class="page-title"><?php printf( __( 'Search Results for: %s', 'twentysixteen' ), '<span>' . esc_html( get_search_query() ) . '</span>' ); ?></h1>
     19                        </header><!-- .page-header -->
     20
     21                        <?php
     22                        // Start the loop.
     23                        while ( have_posts() ) : the_post();
     24
     25                                /**
     26                                 * Run the loop for the search to output the results.
     27                                 * If you want to overload this in a child theme then include a file
     28                                 * called content-search.php and that will be used instead.
     29                                 */
     30                                get_template_part( 'template-parts/content', 'search' );
     31
     32                        // End the loop.
     33                        endwhile;
     34
     35                        // Previous/next page navigation.
     36                        the_posts_pagination( array(
     37                                'prev_text'          => __( 'Previous page', 'twentysixteen' ),
     38                                'next_text'          => __( 'Next page', 'twentysixteen' ),
     39                                'before_page_number' => '<span class="meta-nav screen-reader-text">' . __( 'Page', 'twentysixteen' ) . ' </span>',
     40                        ) );
     41
     42                // If no content, include the "No posts found" template.
     43                else :
     44                        get_template_part( 'template-parts/content', 'none' );
     45
     46                endif;
     47                ?>
     48
     49                </main><!-- .site-main -->
     50        </section><!-- .content-area -->
     51
     52<?php get_sidebar(); ?>
     53<?php get_footer(); ?>
  • src/wp-content/themes/twentysixteen/searchform.php

     
     1<?php
     2/**
     3 * Template for displaying search forms in Twenty Sixteen
     4 *
     5 * @package WordPress
     6 * @subpackage Twenty_Sixteen
     7 * @since Twenty Sixteen 1.0
     8 */
     9?>
     10
     11<form role="search" method="get" class="search-form" action="<?php echo esc_url( home_url( '/' ) ); ?>">
     12        <label>
     13                <span class="screen-reader-text"><?php echo _x( 'Search for:', 'label', 'twentysixteen' ); ?></span>
     14                <input type="search" class="search-field" placeholder="<?php echo esc_attr_x( 'Search &hellip;', 'placeholder', 'twentysixteen' ); ?>" value="<?php echo get_search_query(); ?>" name="s" />
     15        </label>
     16        <button type="submit" class="search-submit"><span class="screen-reader-text"><?php echo _x( 'Search', 'submit button', 'twentysixteen' ); ?></span></button>
     17</form>
  • src/wp-content/themes/twentysixteen/sidebar-content-bottom.php

     
     1<?php
     2/**
     3 * The template for the content bottom widget areas on posts and pages
     4 *
     5 * @package WordPress
     6 * @subpackage Twenty_Sixteen
     7 * @since Twenty Sixteen 1.0
     8 */
     9
     10if ( ! is_active_sidebar( 'sidebar-2' ) && ! is_active_sidebar( 'sidebar-3' ) ) {
     11        return;
     12}
     13
     14// If we get this far, we have widgets. Let's do this.
     15?>
     16<aside id="content-bottom-widgets" class="content-bottom-widgets" role="complementary">
     17        <?php if ( is_active_sidebar( 'sidebar-2' ) ) : ?>
     18                <div class="widget-area">
     19                        <?php dynamic_sidebar( 'sidebar-2' ); ?>
     20                </div><!-- .widget-area -->
     21        <?php endif; ?>
     22
     23        <?php if ( is_active_sidebar( 'sidebar-3' ) ) : ?>
     24                <div class="widget-area">
     25                        <?php dynamic_sidebar( 'sidebar-3' ); ?>
     26                </div><!-- .widget-area -->
     27        <?php endif; ?>
     28</aside><!-- .content-bottom-widgets -->
  • src/wp-content/themes/twentysixteen/sidebar.php

     
     1<?php
     2/**
     3 * The template for the sidebar containing the main widget area
     4 *
     5 * @package WordPress
     6 * @subpackage Twenty_Sixteen
     7 * @since Twenty Sixteen 1.0
     8 */
     9?>
     10
     11<?php if ( is_active_sidebar( 'sidebar-1' )  ) : ?>
     12        <aside id="secondary" class="sidebar widget-area" role="complementary">
     13                <?php dynamic_sidebar( 'sidebar-1' ); ?>
     14        </aside><!-- .sidebar .widget-area -->
     15<?php endif; ?>
  • src/wp-content/themes/twentysixteen/single.php

     
     1<?php
     2/**
     3 * The template for displaying all single posts and attachments
     4 *
     5 * @package WordPress
     6 * @subpackage Twenty_Sixteen
     7 * @since Twenty Sixteen 1.0
     8 */
     9
     10get_header(); ?>
     11
     12<div id="primary" class="content-area">
     13        <main id="main" class="site-main" role="main">
     14                <?php
     15                // Start the loop.
     16                while ( have_posts() ) : the_post();
     17
     18                        // Include the single post content template.
     19                        get_template_part( 'template-parts/content', 'single' );
     20
     21                        // If comments are open or we have at least one comment, load up the comment template.
     22                        if ( comments_open() || get_comments_number() ) {
     23                                comments_template();
     24                        }
     25
     26                        if ( is_singular( 'attachment' ) ) {
     27                                // Parent post navigation.
     28                                the_post_navigation( array(
     29                                        'prev_text' => _x( '<span class="meta-nav">Published in</span><span class="post-title">%title</span>', 'Parent post link', 'twentysixteen' ),
     30                                ) );
     31                        } elseif ( is_singular( 'post' ) ) {
     32                                // Previous/next post navigation.
     33                                the_post_navigation( array(
     34                                        'next_text' => '<span class="meta-nav" aria-hidden="true">' . __( 'Next', 'twentysixteen' ) . '</span> ' .
     35                                                '<span class="screen-reader-text">' . __( 'Next post:', 'twentysixteen' ) . '</span> ' .
     36                                                '<span class="post-title">%title</span>',
     37                                        'prev_text' => '<span class="meta-nav" aria-hidden="true">' . __( 'Previous', 'twentysixteen' ) . '</span> ' .
     38                                                '<span class="screen-reader-text">' . __( 'Previous post:', 'twentysixteen' ) . '</span> ' .
     39                                                '<span class="post-title">%title</span>',
     40                                ) );
     41                        }
     42
     43                        // End of the loop.
     44                endwhile;
     45                ?>
     46
     47        </main><!-- .site-main -->
     48
     49        <?php get_sidebar( 'content-bottom' ); ?>
     50
     51</div><!-- .content-area -->
     52
     53<?php get_sidebar(); ?>
     54<?php get_footer(); ?>
  • src/wp-content/themes/twentysixteen/style.css

     
     1/*
     2Theme Name: Twenty Sixteen
     3Theme URI: https://wordpress.org/themes/twentysixteen/
     4Author: the WordPress team
     5Author URI: https://wordpress.org/
     6Description: Twenty Sixteen is a modernized take on an ever-popular WordPress layout — the horizontal masthead with an optional right sidebar that works perfectly for blogs and websites. It has custom color options with beautiful default color schemes, a harmonious fluid grid using a mobile-first approach, and impeccable polish in every detail. Twenty Sixteen will make your WordPress look beautiful everywhere.
     7Version: 1.3
     8License: GNU General Public License v2 or later
     9License URI: http://www.gnu.org/licenses/gpl-2.0.html
     10Tags: one-column, two-columns, right-sidebar, accessibility-ready, custom-background, custom-colors, custom-header, custom-menu, editor-style, featured-images, flexible-header, microformats, post-formats, rtl-language-support, sticky-post, threaded-comments, translation-ready, blog
     11Text Domain: twentysixteen
     12
     13This theme, like WordPress, is licensed under the GPL.
     14Use it to make something cool, have fun, and share what you've learned with others.
     15*/
     16
     17
     18/**
     19 * Table of Contents
     20 *
     21 * 1.0 - Normalize
     22 * 2.0 - Genericons
     23 * 3.0 - Typography
     24 * 4.0 - Elements
     25 * 5.0 - Forms
     26 * 6.0 - Navigation
     27 *   6.1 - Links
     28 *   6.2 - Menus
     29 * 7.0 - Accessibility
     30 * 8.0 - Alignments
     31 * 9.0 - Clearings
     32 * 10.0 - Widgets
     33 * 11.0 - Content
     34 *    11.1 - Header
     35 *    11.2 - Posts and pages
     36 *    11.3 - Post Formats
     37 *    11.4 - Comments
     38 *    11.5 - Sidebar
     39 *    11.6 - Footer
     40 * 12.0 - Media
     41 *    12.1 - Captions
     42 *    12.2 - Galleries
     43 * 13.0 - Multisite
     44 * 14.0 - Media Queries
     45 *    14.1 - >= 710px
     46 *    14.2 - >= 783px
     47 *    14.3 - >= 910px
     48 *    14.4 - >= 985px
     49 *    14.5 - >= 1200px
     50 * 15.0 - Print
     51 */
     52
     53
     54/**
     55 * 1.0 - Normalize
     56 *
     57 * Normalizing styles have been helped along thanks to the fine work of
     58 * Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
     59 */
     60
     61html {
     62        font-family: sans-serif;
     63        -webkit-text-size-adjust: 100%;
     64        -ms-text-size-adjust: 100%;
     65}
     66
     67body {
     68        margin: 0;
     69}
     70
     71article,
     72aside,
     73details,
     74figcaption,
     75figure,
     76footer,
     77header,
     78main,
     79menu,
     80nav,
     81section,
     82summary {
     83        display: block;
     84}
     85
     86audio,
     87canvas,
     88progress,
     89video {
     90        display: inline-block;
     91        vertical-align: baseline;
     92}
     93
     94audio:not([controls]) {
     95        display: none;
     96        height: 0;
     97}
     98
     99[hidden],
     100template {
     101        display: none;
     102}
     103
     104a {
     105        background-color: transparent;
     106}
     107
     108abbr[title] {
     109        border-bottom: 1px dotted;
     110}
     111
     112b,
     113strong {
     114        font-weight: 700;
     115}
     116
     117small {
     118        font-size: 80%;
     119}
     120
     121sub,
     122sup {
     123        font-size: 75%;
     124        line-height: 0;
     125        position: relative;
     126        vertical-align: baseline;
     127}
     128
     129sup {
     130        top: -0.5em;
     131}
     132
     133sub {
     134        bottom: -0.25em;
     135}
     136
     137img {
     138        border: 0;
     139}
     140
     141svg:not(:root) {
     142        overflow: hidden;
     143}
     144
     145figure {
     146        margin: 0;
     147}
     148
     149hr {
     150        -webkit-box-sizing: content-box;
     151        -moz-box-sizing: content-box;
     152        box-sizing: content-box;
     153}
     154
     155code,
     156kbd,
     157pre,
     158samp {
     159        font-size: 1em;
     160}
     161
     162button,
     163input,
     164optgroup,
     165select,
     166textarea {
     167        color: inherit;
     168        font: inherit;
     169        margin: 0;
     170}
     171
     172select {
     173        text-transform: none;
     174}
     175
     176button {
     177        overflow: visible;
     178}
     179
     180button,
     181input,
     182select,
     183textarea {
     184        max-width: 100%;
     185}
     186
     187button,
     188html input[type="button"],
     189input[type="reset"],
     190input[type="submit"] {
     191        -webkit-appearance: button;
     192        cursor: pointer;
     193}
     194
     195button[disabled],
     196html input[disabled] {
     197        cursor: default;
     198        opacity: .5;
     199}
     200
     201button::-moz-focus-inner,
     202input::-moz-focus-inner {
     203        border: 0;
     204        padding: 0;
     205}
     206
     207input[type="checkbox"],
     208input[type="radio"] {
     209        -webkit-box-sizing: border-box;
     210        -moz-box-sizing: border-box;
     211        box-sizing: border-box;
     212        margin-right: 0.4375em;
     213        padding: 0;
     214}
     215
     216input[type="date"]::-webkit-inner-spin-button,
     217input[type="date"]::-webkit-outer-spin-button,
     218input[type="time"]::-webkit-inner-spin-button,
     219input[type="time"]::-webkit-outer-spin-button,
     220input[type="datetime-local"]::-webkit-inner-spin-button,
     221input[type="datetime-local"]::-webkit-outer-spin-button,
     222input[type="week"]::-webkit-inner-spin-button,
     223input[type="week"]::-webkit-outer-spin-button,
     224input[type="month"]::-webkit-inner-spin-button,
     225input[type="month"]::-webkit-outer-spin-button,
     226input[type="number"]::-webkit-inner-spin-button,
     227input[type="number"]::-webkit-outer-spin-button {
     228        height: auto;
     229}
     230
     231input[type="search"] {
     232        -webkit-appearance: textfield;
     233}
     234
     235input[type="search"]::-webkit-search-cancel-button,
     236input[type="search"]::-webkit-search-decoration {
     237        -webkit-appearance: none;
     238}
     239
     240fieldset {
     241        border: 1px solid #d1d1d1;
     242        margin: 0 0 1.75em;
     243        min-width: inherit;
     244        padding: 0.875em;
     245}
     246
     247fieldset > :last-child {
     248        margin-bottom: 0;
     249}
     250
     251legend {
     252        border: 0;
     253        padding: 0;
     254}
     255
     256textarea {
     257        overflow: auto;
     258        vertical-align: top;
     259}
     260
     261optgroup {
     262        font-weight: bold;
     263}
     264
     265
     266/**
     267 * 2.0 - Genericons
     268 */
     269
     270.menu-item-has-children a:after,
     271.social-navigation a:before,
     272.dropdown-toggle:after,
     273.bypostauthor > article .fn:after,
     274.comment-reply-title small a:before,
     275.pagination .prev:before,
     276.pagination .next:before,
     277.pagination .nav-links:before,
     278.pagination .nav-links:after,
     279.search-submit:before {
     280        -moz-osx-font-smoothing: grayscale;
     281        -webkit-font-smoothing: antialiased;
     282        display: inline-block;
     283        font-family: "Genericons";
     284        font-size: 16px;
     285        font-style: normal;
     286        font-variant: normal;
     287        font-weight: normal;
     288        line-height: 1;
     289        speak: none;
     290        text-align: center;
     291        text-decoration: inherit;
     292        text-transform: none;
     293        vertical-align: top;
     294}
     295
     296
     297/**
     298 * 3.0 - Typography
     299 */
     300
     301body,
     302button,
     303input,
     304select,
     305textarea {
     306        color: #1a1a1a;
     307        font-family: Merriweather, Georgia, serif;
     308        font-size: 16px;
     309        font-size: 1rem;
     310        line-height: 1.75;
     311}
     312
     313h1,
     314h2,
     315h3,
     316h4,
     317h5,
     318h6 {
     319        clear: both;
     320        font-weight: 700;
     321        margin: 0;
     322        text-rendering: optimizeLegibility;
     323}
     324
     325p {
     326        margin: 0 0 1.75em;
     327}
     328
     329dfn,
     330cite,
     331em,
     332i {
     333        font-style: italic;
     334}
     335
     336blockquote {
     337        border: 0 solid #1a1a1a;
     338        border-left-width: 4px;
     339        color: #686868;
     340        font-size: 19px;
     341        font-size: 1.1875rem;
     342        font-style: italic;
     343        line-height: 1.4736842105;
     344        margin: 0 0 1.4736842105em;
     345        overflow: hidden;
     346        padding: 0 0 0 1.263157895em;
     347}
     348
     349blockquote,
     350q {
     351        quotes: none;
     352}
     353
     354blockquote:before,
     355blockquote:after,
     356q:before,
     357q:after {
     358        content: "";
     359}
     360
     361blockquote p {
     362        margin-bottom: 1.4736842105em;
     363}
     364
     365blockquote cite,
     366blockquote small {
     367        color: #1a1a1a;
     368        display: block;
     369        font-size: 16px;
     370        font-size: 1rem;
     371        line-height: 1.75;
     372}
     373
     374blockquote cite:before,
     375blockquote small:before {
     376        content: "\2014\00a0";
     377}
     378
     379blockquote em,
     380blockquote i,
     381blockquote cite {
     382        font-style: normal;
     383}
     384
     385blockquote strong,
     386blockquote b {
     387        font-weight: 400;
     388}
     389
     390blockquote > :last-child {
     391        margin-bottom: 0;
     392}
     393
     394address {
     395        font-style: italic;
     396        margin: 0 0 1.75em;
     397}
     398
     399code,
     400kbd,
     401tt,
     402var,
     403samp,
     404pre {
     405        font-family: Inconsolata, monospace;
     406}
     407
     408pre {
     409        border: 1px solid #d1d1d1;
     410        font-size: 16px;
     411        font-size: 1rem;
     412        line-height: 1.3125;
     413        margin: 0 0 1.75em;
     414        max-width: 100%;
     415        overflow: auto;
     416        padding: 1.75em;
     417        white-space: pre;
     418        white-space: pre-wrap;
     419        word-wrap: break-word;
     420}
     421
     422code {
     423        background-color: #d1d1d1;
     424        padding: 0.125em 0.25em;
     425}
     426
     427abbr,
     428acronym {
     429        border-bottom: 1px dotted #d1d1d1;
     430        cursor: help;
     431}
     432
     433mark,
     434ins {
     435        background: #007acc;
     436        color: #fff;
     437        padding: 0.125em 0.25em;
     438        text-decoration: none;
     439}
     440
     441big {
     442        font-size: 125%;
     443}
     444
     445
     446/**
     447 * 4.0 - Elements
     448 */
     449
     450html {
     451        -webkit-box-sizing: border-box;
     452        -moz-box-sizing: border-box;
     453        box-sizing: border-box;
     454}
     455
     456*,
     457*:before,
     458*:after {
     459        /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
     460        -webkit-box-sizing: inherit;
     461        -moz-box-sizing: inherit;
     462        box-sizing: inherit;
     463}
     464
     465body {
     466        background: #1a1a1a;
     467        /* Fallback for when there is no custom background color defined. */
     468}
     469
     470hr {
     471        background-color: #d1d1d1;
     472        border: 0;
     473        height: 1px;
     474        margin: 0 0 1.75em;
     475}
     476
     477ul,
     478ol {
     479        margin: 0 0 1.75em 1.25em;
     480        padding: 0;
     481}
     482
     483ul {
     484        list-style: disc;
     485}
     486
     487ol {
     488        list-style: decimal;
     489        margin-left: 1.5em;
     490}
     491
     492li > ul,
     493li > ol {
     494        margin-bottom: 0;
     495}
     496
     497dl {
     498        margin: 0 0 1.75em;
     499}
     500
     501dt {
     502        font-weight: 700;
     503}
     504
     505dd {
     506        margin: 0 0 1.75em;
     507}
     508
     509img {
     510        height: auto;
     511        /* Make sure images are scaled correctly. */
     512        max-width: 100%;
     513        /* Adhere to container width. */
     514        vertical-align: middle;
     515}
     516
     517del {
     518        opacity: 0.8;
     519}
     520
     521table,
     522th,
     523td {
     524        border: 1px solid #d1d1d1;
     525}
     526
     527table {
     528        border-collapse: separate;
     529        border-spacing: 0;
     530        border-width: 1px 0 0 1px;
     531        margin: 0 0 1.75em;
     532        table-layout: fixed;
     533        /* Prevents HTML tables from becoming too wide */
     534        width: 100%;
     535}
     536
     537caption,
     538th,
     539td {
     540        font-weight: normal;
     541        text-align: left;
     542}
     543
     544th {
     545        border-width: 0 1px 1px 0;
     546        font-weight: 700;
     547}
     548
     549td {
     550        border-width: 0 1px 1px 0;
     551}
     552
     553th,
     554td {
     555        padding: 0.4375em;
     556}
     557
     558/* Placeholder text color -- selectors need to be separate to work. */
     559::-webkit-input-placeholder {
     560        color: #686868;
     561        font-family: Montserrat, "Helvetica Neue", sans-serif;
     562}
     563
     564:-moz-placeholder {
     565        color: #686868;
     566        font-family: Montserrat, "Helvetica Neue", sans-serif;
     567}
     568
     569::-moz-placeholder {
     570        color: #686868;
     571        font-family: Montserrat, "Helvetica Neue", sans-serif;
     572        opacity: 1;
     573        /* Since FF19 lowers the opacity of the placeholder by default */
     574}
     575
     576:-ms-input-placeholder {
     577        color: #686868;
     578        font-family: Montserrat, "Helvetica Neue", sans-serif;
     579}
     580
     581
     582/**
     583 * 5.0 - Forms
     584 */
     585
     586input {
     587        line-height: normal;
     588}
     589
     590button,
     591button[disabled]:hover,
     592button[disabled]:focus,
     593input[type="button"],
     594input[type="button"][disabled]:hover,
     595input[type="button"][disabled]:focus,
     596input[type="reset"],
     597input[type="reset"][disabled]:hover,
     598input[type="reset"][disabled]:focus,
     599input[type="submit"],
     600input[type="submit"][disabled]:hover,
     601input[type="submit"][disabled]:focus {
     602        background: #1a1a1a;
     603        border: 0;
     604        border-radius: 2px;
     605        color: #fff;
     606        font-family: Montserrat, "Helvetica Neue", sans-serif;
     607        font-weight: 700;
     608        letter-spacing: 0.046875em;
     609        line-height: 1;
     610        padding: 0.84375em 0.875em 0.78125em;
     611        text-transform: uppercase;
     612}
     613
     614button:hover,
     615button:focus,
     616input[type="button"]:hover,
     617input[type="button"]:focus,
     618input[type="reset"]:hover,
     619input[type="reset"]:focus,
     620input[type="submit"]:hover,
     621input[type="submit"]:focus {
     622        background: #007acc;
     623}
     624
     625button:focus,
     626input[type="button"]:focus,
     627input[type="reset"]:focus,
     628input[type="submit"]:focus {
     629        outline: thin dotted;
     630        outline-offset: -4px;
     631}
     632
     633input[type="date"],
     634input[type="time"],
     635input[type="datetime-local"],
     636input[type="week"],
     637input[type="month"],
     638input[type="text"],
     639input[type="email"],
     640input[type="url"],
     641input[type="password"],
     642input[type="search"],
     643input[type="tel"],
     644input[type="number"],
     645textarea {
     646        background: #f7f7f7;
     647        background-image: -webkit-linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0));
     648        border: 1px solid #d1d1d1;
     649        border-radius: 2px;
     650        color: #686868;
     651        padding: 0.625em 0.4375em;
     652        width: 100%;
     653}
     654
     655input[type="date"]:focus,
     656input[type="time"]:focus,
     657input[type="datetime-local"]:focus,
     658input[type="week"]:focus,
     659input[type="month"]:focus,
     660input[type="text"]:focus,
     661input[type="email"]:focus,
     662input[type="url"]:focus,
     663input[type="password"]:focus,
     664input[type="search"]:focus,
     665input[type="tel"]:focus,
     666input[type="number"]:focus,
     667textarea:focus {
     668        background-color: #fff;
     669        border-color: #007acc;
     670        color: #1a1a1a;
     671        outline: 0;
     672}
     673
     674.post-password-form {
     675        margin-bottom: 1.75em;
     676}
     677
     678.post-password-form label {
     679        color: #686868;
     680        display: block;
     681        font-family: Montserrat, "Helvetica Neue", sans-serif;
     682        font-size: 13px;
     683        font-size: 0.8125rem;
     684        letter-spacing: 0.076923077em;
     685        line-height: 1.6153846154;
     686        margin-bottom: 1.75em;
     687        text-transform: uppercase;
     688}
     689
     690.post-password-form input[type="password"] {
     691        margin-top: 0.4375em;
     692}
     693
     694.post-password-form > :last-child {
     695        margin-bottom: 0;
     696}
     697
     698.search-form {
     699        position: relative;
     700}
     701
     702input[type="search"].search-field {
     703        border-radius: 2px 0 0 2px;
     704        width: -webkit-calc(100% - 42px);
     705        width: calc(100% - 42px);
     706}
     707
     708.search-submit:before {
     709        content: "\f400";
     710        font-size: 24px;
     711        left: 2px;
     712        line-height: 42px;
     713        position: relative;
     714        width: 40px;
     715}
     716
     717.search-submit {
     718        border-radius: 0 2px 2px 0;
     719        bottom: 0;
     720        overflow: hidden;
     721        padding: 0;
     722        position: absolute;
     723        right: 0;
     724        top: 0;
     725        width: 42px;
     726}
     727
     728
     729/**
     730 * 6.0 - Navigation
     731 */
     732
     733/**
     734 * 6.1 - Links
     735 */
     736
     737a {
     738        color: #007acc;
     739        text-decoration: none;
     740}
     741
     742a:hover,
     743a:focus,
     744a:active {
     745        color: #686868;
     746}
     747
     748a:focus {
     749        outline: thin dotted;
     750}
     751
     752a:hover,
     753a:active {
     754        outline: 0;
     755}
     756
     757.entry-content a,
     758.entry-summary a,
     759.taxonomy-description a,
     760.logged-in-as a,
     761.comment-content a,
     762.pingback .comment-body > a,
     763.textwidget a,
     764.entry-footer a:hover,
     765.site-info a:hover {
     766        box-shadow: 0 1px 0 0 currentColor;
     767}
     768
     769.entry-content a:hover,
     770.entry-content a:focus,
     771.entry-summary a:hover,
     772.entry-summary a:focus,
     773.taxonomy-description a:hover,
     774.taxonomy-description a:focus,
     775.logged-in-as a:hover,
     776.logged-in-as a:focus,
     777.comment-content a:hover,
     778.comment-content a:focus,
     779.pingback .comment-body > a:hover,
     780.pingback .comment-body > a:focus,
     781.textwidget a:hover,
     782.textwidget a:focus {
     783        box-shadow: none;
     784}
     785
     786
     787/**
     788 * 6.2 - Menus
     789 */
     790
     791.site-header-menu {
     792        display: none;
     793        -webkit-flex: 0 1 100%;
     794        -ms-flex: 0 1 100%;
     795        flex: 0 1 100%;
     796        margin: 0.875em 0;
     797}
     798
     799.site-header-menu.toggled-on,
     800.no-js .site-header-menu {
     801        display: block;
     802}
     803
     804.main-navigation {
     805        font-family: Montserrat, "Helvetica Neue", sans-serif;
     806}
     807
     808.site-footer .main-navigation {
     809        margin-bottom: 1.75em;
     810}
     811
     812.main-navigation ul {
     813        list-style: none;
     814        margin: 0;
     815}
     816
     817.main-navigation li {
     818        border-top: 1px solid #d1d1d1;
     819        position: relative;
     820}
     821
     822.main-navigation a {
     823        color: #1a1a1a;
     824        display: block;
     825        line-height: 1.3125;
     826        outline-offset: -1px;
     827        padding: 0.84375em 0;
     828}
     829
     830.main-navigation a:hover,
     831.main-navigation a:focus {
     832        color: #007acc;
     833}
     834
     835.main-navigation .current-menu-item > a,
     836.main-navigation .current-menu-ancestor > a {
     837        font-weight: 700;
     838}
     839
     840.main-navigation ul ul {
     841        display: none;
     842        margin-left: 0.875em;
     843}
     844
     845.no-js .main-navigation ul ul {
     846        display: block;
     847}
     848
     849.main-navigation ul .toggled-on {
     850        display: block;
     851}
     852
     853.main-navigation .primary-menu {
     854        border-bottom: 1px solid #d1d1d1;
     855}
     856
     857.main-navigation .menu-item-has-children > a {
     858        margin-right: 56px;
     859}
     860
     861.dropdown-toggle {
     862        background-color: transparent;
     863        border: 0;
     864        border-radius: 0;
     865        color: #1a1a1a;
     866        content: "";
     867        height: 48px;
     868        padding: 0;
     869        position: absolute;
     870        right: 0;
     871        text-transform: none;
     872        top: 0;
     873        width: 48px;
     874}
     875
     876.dropdown-toggle:after {
     877        border: 0 solid #d1d1d1;
     878        border-left-width: 1px;
     879        content: "\f431";
     880        font-size: 24px;
     881        left: 1px;
     882        position: relative;
     883        width: 48px;
     884}
     885
     886.dropdown-toggle:hover,
     887.dropdown-toggle:focus {
     888        background-color: transparent;
     889        color: #007acc;
     890}
     891
     892.dropdown-toggle:focus {
     893        outline: thin dotted;
     894        outline-offset: -1px;
     895}
     896
     897.dropdown-toggle:focus:after {
     898        border-color: transparent;
     899}
     900
     901.dropdown-toggle.toggled-on:after {
     902        content: "\f432";
     903}
     904
     905.site-header .main-navigation + .social-navigation {
     906        margin-top: 1.75em;
     907}
     908
     909.site-footer .social-navigation {
     910        margin-bottom: 1.75em;
     911}
     912
     913.social-navigation ul {
     914        list-style: none;
     915        margin: 0 0 -0.4375em;
     916}
     917
     918.social-navigation li {
     919        float: left;
     920        margin: 0 0.4375em 0.4375em 0;
     921}
     922
     923.social-navigation a {
     924        border: 1px solid #d1d1d1;
     925        border-radius: 50%;
     926        color: #1a1a1a;
     927        display: block;
     928        height: 35px;
     929        position: relative;
     930        width: 35px;
     931}
     932
     933.social-navigation a:before {
     934        content: "\f415";
     935        height: 33px;
     936        line-height: 33px;
     937        text-align: center;
     938        width: 33px;
     939}
     940
     941.social-navigation a:hover:before,
     942.social-navigation a:focus:before {
     943        color: #007acc;
     944}
     945
     946.social-navigation a[href*="codepen.io"]:before {
     947        content: "\f216";
     948}
     949
     950.social-navigation a[href*="digg.com"]:before {
     951        content: "\f221";
     952}
     953
     954.social-navigation a[href*="dribbble.com"]:before {
     955        content: "\f201";
     956}
     957
     958.social-navigation a[href*="dropbox.com"]:before {
     959        content: "\f225";
     960}
     961
     962.social-navigation a[href*="facebook.com"]:before {
     963        content: "\f203";
     964}
     965
     966.social-navigation a[href*="flickr.com"]:before {
     967        content: "\f211";
     968}
     969
     970.social-navigation a[href*="foursquare.com"]:before {
     971        content: "\f226";
     972}
     973
     974.social-navigation a[href*="plus.google.com"]:before {
     975        content: "\f206";
     976}
     977
     978.social-navigation a[href*="github.com"]:before {
     979        content: "\f200";
     980}
     981
     982.social-navigation a[href*="instagram.com"]:before {
     983        content: "\f215";
     984}
     985
     986.social-navigation a[href*="linkedin.com"]:before {
     987        content: "\f208";
     988}
     989
     990.social-navigation a[href*="path.com"]:before {
     991        content: "\f219";
     992}
     993
     994.social-navigation a[href*="pinterest.com"]:before {
     995        content: "\f210";
     996}
     997
     998.social-navigation a[href*="getpocket.com"]:before {
     999        content: "\f224";
     1000}
     1001
     1002.social-navigation a[href*="polldaddy.com"]:before {
     1003        content: "\f217";
     1004}
     1005
     1006.social-navigation a[href*="reddit.com"]:before {
     1007        content: "\f222";
     1008}
     1009
     1010.social-navigation a[href*="skype.com"]:before {
     1011        content: "\f220";
     1012}
     1013
     1014.social-navigation a[href*="stumbleupon.com"]:before {
     1015        content: "\f223";
     1016}
     1017
     1018.social-navigation a[href*="tumblr.com"]:before {
     1019        content: "\f214";
     1020}
     1021
     1022.social-navigation a[href*="twitter.com"]:before {
     1023        content: "\f202";
     1024}
     1025
     1026.social-navigation a[href*="vimeo.com"]:before {
     1027        content: "\f212";
     1028}
     1029
     1030.social-navigation a[href*="wordpress.com"]:before,
     1031.social-navigation a[href*="wordpress.org"]:before {
     1032        content: "\f205";
     1033}
     1034
     1035.social-navigation a[href*="youtube.com"]:before {
     1036        content: "\f213";
     1037}
     1038
     1039.social-navigation a[href^="mailto:"]:before {
     1040        content: "\f410";
     1041}
     1042
     1043.social-navigation a[href*="spotify.com"]:before {
     1044        content: "\f515";
     1045}
     1046
     1047.social-navigation a[href*="twitch.tv"]:before {
     1048        content: "\f516";
     1049}
     1050
     1051.social-navigation a[href$="/feed/"]:before {
     1052        content: "\f413";
     1053}
     1054
     1055.post-navigation {
     1056        border-top: 4px solid #1a1a1a;
     1057        border-bottom: 4px solid #1a1a1a;
     1058        clear: both;
     1059        font-family: Montserrat, "Helvetica Neue", sans-serif;
     1060        margin: 0 7.6923% 3.5em;
     1061}
     1062
     1063.post-navigation a {
     1064        color: #1a1a1a;
     1065        display: block;
     1066        padding: 1.75em 0;
     1067}
     1068
     1069.post-navigation span {
     1070        display: block;
     1071}
     1072
     1073.post-navigation .meta-nav {
     1074        color: #686868;
     1075        font-size: 13px;
     1076        font-size: 0.8125rem;
     1077        letter-spacing: 0.076923077em;
     1078        line-height: 1.6153846154;
     1079        margin-bottom: 0.5384615385em;
     1080        text-transform: uppercase;
     1081}
     1082
     1083.post-navigation .post-title {
     1084        display: inline;
     1085        font-family: Montserrat, "Helvetica Neue", sans-serif;
     1086        font-size: 23px;
     1087        font-size: 1.4375rem;
     1088        font-weight: 700;
     1089        line-height: 1.2173913043;
     1090        text-rendering: optimizeLegibility;
     1091}
     1092
     1093.post-navigation a:hover .post-title,
     1094.post-navigation a:focus .post-title {
     1095        color: #007acc;
     1096}
     1097
     1098.post-navigation div + div {
     1099        border-top: 4px solid #1a1a1a;
     1100}
     1101
     1102.pagination {
     1103        border-top: 4px solid #1a1a1a;
     1104        font-family: Montserrat, "Helvetica Neue", sans-serif;
     1105        font-size: 19px;
     1106        font-size: 1.1875rem;
     1107        margin: 0 7.6923% 2.947368421em;
     1108        min-height: 56px;
     1109        position: relative;
     1110}
     1111
     1112.pagination:before,
     1113.pagination:after {
     1114        background-color: #1a1a1a;
     1115        content: "";
     1116        height: 52px;
     1117        position: absolute;
     1118        top:0;
     1119        width: 52px;
     1120        z-index: 0;
     1121}
     1122
     1123.pagination:before {
     1124        right: 0;
     1125}
     1126
     1127.pagination:after {
     1128        right: 54px;
     1129}
     1130
     1131.pagination a:hover,
     1132.pagination a:focus {
     1133        color: #1a1a1a;
     1134}
     1135
     1136.pagination .nav-links {
     1137        padding-right: 106px;
     1138        position: relative;
     1139}
     1140
     1141.pagination .nav-links:before,
     1142.pagination .nav-links:after {
     1143        color: #fff;
     1144        font-size: 32px;
     1145        line-height: 51px;
     1146        opacity: 0.3;
     1147        position: absolute;
     1148        width: 52px;
     1149        z-index: 1;
     1150}
     1151
     1152.pagination .nav-links:before {
     1153        content: "\f429";
     1154        right: -1px;
     1155}
     1156
     1157.pagination .nav-links:after {
     1158        content: "\f430";
     1159        right: 55px;
     1160}
     1161
     1162/* reset screen-reader-text */
     1163.pagination .current .screen-reader-text {
     1164        position: static !important;
     1165}
     1166
     1167.pagination .page-numbers {
     1168        display: none;
     1169        letter-spacing: 0.013157895em;
     1170        line-height: 1;
     1171        margin: 0 0.7368421053em 0 -0.7368421053em;
     1172        padding: 0.8157894737em 0.7368421053em 0.3947368421em;
     1173        text-transform: uppercase;
     1174}
     1175
     1176.pagination .current {
     1177        display: inline-block;
     1178        font-weight: 700;
     1179}
     1180
     1181.pagination .prev,
     1182.pagination .next {
     1183        background-color: #1a1a1a;
     1184        color: #fff;
     1185        display: inline-block;
     1186        height: 52px;
     1187        margin: 0;
     1188        overflow: hidden;
     1189        padding: 0;
     1190        position: absolute;
     1191        top: 0;
     1192        width: 52px;
     1193        z-index: 2;
     1194}
     1195
     1196.pagination .prev:before,
     1197.pagination .next:before {
     1198        font-size: 32px;
     1199        height: 53px;
     1200        line-height: 52px;
     1201        position: relative;
     1202        width: 53px;
     1203}
     1204
     1205.pagination .prev:hover,
     1206.pagination .prev:focus,
     1207.pagination .next:hover,
     1208.pagination .next:focus {
     1209        background-color: #007acc;
     1210        color: #fff;
     1211}
     1212
     1213.pagination .prev:focus,
     1214.pagination .next:focus {
     1215        outline: 0;
     1216}
     1217
     1218.pagination .prev {
     1219        right: 54px;
     1220}
     1221
     1222.pagination .prev:before {
     1223        content: "\f430";
     1224        left: -1px;
     1225        top: -1px;
     1226}
     1227
     1228.pagination .next {
     1229        right: 0;
     1230}
     1231
     1232.pagination .next:before {
     1233        content: "\f429";
     1234        right: -1px;
     1235        top: -1px;
     1236}
     1237
     1238.image-navigation,
     1239.comment-navigation {
     1240        border-top: 1px solid #d1d1d1;
     1241        border-bottom: 1px solid #d1d1d1;
     1242        color: #686868;
     1243        font-family: Montserrat, "Helvetica Neue", sans-serif;
     1244        font-size: 13px;
     1245        font-size: 0.8125rem;
     1246        line-height: 1.6153846154;
     1247        margin: 0 7.6923% 2.1538461538em;
     1248        padding: 1.0769230769em 0;
     1249}
     1250
     1251.comment-navigation {
     1252        margin-right: 0;
     1253        margin-left: 0;
     1254}
     1255
     1256.comments-title + .comment-navigation {
     1257        border-bottom: 0;
     1258        margin-bottom: 0;
     1259}
     1260
     1261.image-navigation .nav-previous:not(:empty),
     1262.image-navigation .nav-next:not(:empty),
     1263.comment-navigation .nav-previous:not(:empty),
     1264.comment-navigation .nav-next:not(:empty) {
     1265        display: inline-block;
     1266}
     1267
     1268.image-navigation .nav-previous:not(:empty) + .nav-next:not(:empty):before,
     1269.comment-navigation .nav-previous:not(:empty) + .nav-next:not(:empty):before {
     1270        content: "\002f";
     1271        display: inline-block;
     1272        opacity: 0.7;
     1273        padding: 0 0.538461538em;
     1274}
     1275
     1276
     1277/**
     1278 * 7.0 - Accessibility
     1279 */
     1280
     1281/* Text meant only for screen readers */
     1282.says,
     1283.screen-reader-text {
     1284        clip: rect(1px, 1px, 1px, 1px);
     1285        height: 1px;
     1286        overflow: hidden;
     1287        position: absolute !important;
     1288        width: 1px;
     1289        /* many screen reader and browser combinations announce broken words as they would appear visually */
     1290        word-wrap: normal !important;
     1291}
     1292
     1293/* must have higher specificity than alternative color schemes inline styles */
     1294.site .skip-link {
     1295        background-color: #f1f1f1;
     1296        box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.2);
     1297        color: #21759b;
     1298        display: block;
     1299        font-family: Montserrat, "Helvetica Neue", sans-serif;
     1300        font-size: 14px;
     1301        font-weight: 700;
     1302        left: -9999em;
     1303        outline: none;
     1304        padding: 15px 23px 14px;
     1305        text-decoration: none;
     1306        text-transform: none;
     1307        top: -9999em;
     1308}
     1309
     1310.logged-in .site .skip-link {
     1311        box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.2);
     1312        font-family: "Open Sans", sans-serif;
     1313}
     1314
     1315.site .skip-link:focus {
     1316        clip: auto;
     1317        height: auto;
     1318        left: 6px;
     1319        top: 7px;
     1320        width: auto;
     1321        z-index: 100000;
     1322}
     1323
     1324
     1325/**
     1326 * 8.0 - Alignments
     1327 */
     1328
     1329.alignleft {
     1330        float: left;
     1331        margin: 0.375em 1.75em 1.75em 0;
     1332}
     1333
     1334.alignright {
     1335        float: right;
     1336        margin: 0.375em 0 1.75em 1.75em;
     1337}
     1338
     1339.aligncenter {
     1340        clear: both;
     1341        display: block;
     1342        margin: 0 auto 1.75em;
     1343}
     1344
     1345blockquote.alignleft {
     1346        margin: 0.3157894737em 1.4736842105em 1.473684211em 0;
     1347}
     1348
     1349blockquote.alignright {
     1350        margin: 0.3157894737em 0 1.473684211em 1.4736842105em;
     1351}
     1352
     1353blockquote.aligncenter {
     1354        margin-bottom: 1.473684211em;
     1355}
     1356
     1357
     1358/**
     1359 * 9.0 - Clearings
     1360 */
     1361
     1362.clear:before,
     1363.clear:after,
     1364blockquote:before,
     1365blockquote:after,
     1366.entry-content:before,
     1367.entry-content:after,
     1368.entry-summary:before,
     1369.entry-summary:after,
     1370.comment-content:before,
     1371.comment-content:after,
     1372.site-content:before,
     1373.site-content:after,
     1374.site-main > article:before,
     1375.site-main > article:after,
     1376.primary-menu:before,
     1377.primary-menu:after,
     1378.social-links-menu:before,
     1379.social-links-menu:after,
     1380.textwidget:before,
     1381.textwidget:after,
     1382.content-bottom-widgets:before,
     1383.content-bottom-widgets:after {
     1384        content: "";
     1385        display: table;
     1386}
     1387
     1388.clear:after,
     1389blockquote:after,
     1390.entry-content:after,
     1391.entry-summary:after,
     1392.comment-content:after,
     1393.site-content:after,
     1394.site-main > article:after,
     1395.primary-menu:after,
     1396.social-links-menu:after,
     1397.textwidget:after,
     1398.content-bottom-widgets:after {
     1399        clear: both;
     1400}
     1401
     1402
     1403/**
     1404 * 10.0 - Widgets
     1405 */
     1406
     1407.widget {
     1408        border-top: 4px solid #1a1a1a;
     1409        margin-bottom: 3.5em;
     1410        padding-top: 1.75em;
     1411}
     1412
     1413.widget-area > :last-child,
     1414.widget > :last-child {
     1415        margin-bottom: 0;
     1416}
     1417
     1418.widget .widget-title {
     1419        font-family: Montserrat, "Helvetica Neue", sans-serif;
     1420        font-size: 16px;
     1421        font-size: 1rem;
     1422        letter-spacing: 0.046875em;
     1423        line-height: 1.3125;
     1424        margin: 0 0 1.75em;
     1425        text-transform: uppercase;
     1426}
     1427
     1428.widget .widget-title:empty {
     1429        margin-bottom: 0;
     1430}
     1431
     1432.widget-title a {
     1433        color: #1a1a1a;
     1434}
     1435
     1436/* Calendar widget */
     1437.widget.widget_calendar table {
     1438        margin: 0;
     1439}
     1440
     1441.widget_calendar td,
     1442.widget_calendar th {
     1443        line-height: 2.5625;
     1444        padding: 0;
     1445        text-align: center;
     1446}
     1447
     1448.widget_calendar caption {
     1449        font-weight: 900;
     1450        margin-bottom: 1.75em;
     1451}
     1452
     1453.widget_calendar tbody a {
     1454        background-color: #007acc;
     1455        color: #fff;
     1456        display: block;
     1457        font-weight: 700;
     1458}
     1459
     1460.widget_calendar tbody a:hover,
     1461.widget_calendar tbody a:focus {
     1462        background-color: #686868;
     1463        color: #fff;
     1464}
     1465
     1466/* Recent Posts widget */
     1467.widget_recent_entries .post-date {
     1468        color: #686868;
     1469        display: block;
     1470        font-family: Montserrat, "Helvetica Neue", sans-serif;
     1471        font-size: 13px;
     1472        font-size: 0.8125rem;
     1473        line-height: 1.615384615;
     1474        margin-bottom: 0.538461538em;
     1475}
     1476
     1477.widget_recent_entries li:last-child .post-date {
     1478        margin-bottom: 0;
     1479}
     1480
     1481/* RSS widget */
     1482.widget_rss .rsswidget img {
     1483        margin-top: -0.375em;
     1484}
     1485
     1486.widget_rss .rss-date,
     1487.widget_rss cite {
     1488        color: #686868;
     1489        display: block;
     1490        font-family: Montserrat, "Helvetica Neue", sans-serif;
     1491        font-size: 13px;
     1492        font-size: 0.8125rem;
     1493        font-style: normal;
     1494        line-height: 1.615384615;
     1495        margin-bottom: 0.538461538em;
     1496}
     1497
     1498.widget_rss .rssSummary:last-child {
     1499        margin-bottom: 2.1538461538em;
     1500}
     1501
     1502.widget_rss li:last-child :last-child {
     1503        margin-bottom: 0;
     1504}
     1505
     1506/* Tag Cloud widget */
     1507.tagcloud a {
     1508        border: 1px solid #d1d1d1;
     1509        border-radius: 2px;
     1510        display: inline-block;
     1511        font-family: Montserrat, "Helvetica Neue", sans-serif;
     1512        line-height: 1;
     1513        margin: 0 0.1875em 0.4375em 0;
     1514        padding: 0.5625em 0.4375em 0.5em;
     1515}
     1516
     1517.tagcloud a:hover,
     1518.tagcloud a:focus {
     1519        border-color: #007acc;
     1520        color: #007acc;
     1521        outline: 0;
     1522}
     1523
     1524
     1525/**
     1526 * 11.0 - Content
     1527 */
     1528
     1529.site {
     1530        background-color: #fff;
     1531}
     1532
     1533.site-inner {
     1534        margin: 0 auto;
     1535        max-width: 1320px;
     1536        position: relative;
     1537}
     1538
     1539.site-content {
     1540        word-wrap: break-word;
     1541}
     1542
     1543/* Do not show the outline on the skip link target. */
     1544#content[tabindex="-1"]:focus {
     1545        outline: 0;
     1546}
     1547
     1548.site-main {
     1549        margin-bottom: 3.5em;
     1550}
     1551
     1552.site-main > :last-child {
     1553        margin-bottom: 0;
     1554}
     1555
     1556
     1557/**
     1558 * 11.1 - Header
     1559 */
     1560
     1561.site-header {
     1562        padding: 2.625em 7.6923%;
     1563}
     1564
     1565.site-header-main {
     1566        -webkit-align-items: center;
     1567        -ms-flex-align: center;
     1568        align-items: center;
     1569        display: -webkit-flex;
     1570        display: -ms-flexbox;
     1571        display: flex;
     1572        -webkit-flex-wrap: wrap;
     1573        -ms-flex-wrap: wrap;
     1574        flex-wrap: wrap;
     1575}
     1576
     1577.site-branding {
     1578        margin: 0.875em auto 0.875em 0;
     1579        /* Avoid overflowing wide custom logo in small screens in Firefox and IEs */
     1580        max-width: 100%;
     1581        min-width: 0;
     1582        overflow: hidden;
     1583}
     1584
     1585.custom-logo-link {
     1586        display: block;
     1587}
     1588
     1589.custom-logo {
     1590        max-width: 180px;
     1591}
     1592
     1593.site-title {
     1594        font-family: Montserrat, "Helvetica Neue", sans-serif;
     1595        font-size: 23px;
     1596        font-size: 1.4375rem;
     1597        font-weight: 700;
     1598        line-height: 1.2173913043;
     1599        margin: 0;
     1600}
     1601
     1602.site-branding .site-title a {
     1603        color: #1a1a1a;
     1604}
     1605
     1606.site-branding .site-title a:hover,
     1607.site-branding .site-title a:focus {
     1608        color: #007acc;
     1609}
     1610
     1611.wp-custom-logo .site-title {
     1612        margin-top: 0.608695652em;
     1613}
     1614
     1615.site-description {
     1616        color: #686868;
     1617        display: none;
     1618        font-size: 13px;
     1619        font-size: 0.8125rem;
     1620        font-weight: 400;
     1621        line-height: 1.0769230769;
     1622        margin: 0.538461538em 0 0;
     1623}
     1624
     1625.menu-toggle {
     1626        background-color: transparent;
     1627        border: 1px solid #d1d1d1;
     1628        color: #1a1a1a;
     1629        font-size: 13px;
     1630        font-size: 0.8125rem;
     1631        margin: 1.076923077em 0;
     1632        padding: 0.769230769em;
     1633}
     1634
     1635.no-js .menu-toggle {
     1636        display: none;
     1637}
     1638
     1639.menu-toggle:hover,
     1640.menu-toggle:focus {
     1641        background-color: transparent;
     1642        border-color: #007acc;
     1643        color: #007acc;
     1644}
     1645
     1646.menu-toggle.toggled-on,
     1647.menu-toggle.toggled-on:hover,
     1648.menu-toggle.toggled-on:focus {
     1649        background-color: #1a1a1a;
     1650        border-color: #1a1a1a;
     1651        color: #fff;
     1652}
     1653
     1654.menu-toggle:focus {
     1655        outline: 0;
     1656}
     1657
     1658.menu-toggle.toggled-on:focus {
     1659        outline: thin dotted;
     1660}
     1661
     1662.header-image {
     1663        clear: both;
     1664        margin: 0.875em 0;
     1665}
     1666
     1667.header-image a {
     1668        display: block;
     1669}
     1670
     1671.header-image a:hover img,
     1672.header-image a:focus img {
     1673        opacity: 0.85;
     1674}
     1675
     1676/**
     1677 * 11.2 - Posts and pages
     1678 */
     1679
     1680.site-main > article {
     1681        margin-bottom: 3.5em;
     1682        position: relative;
     1683}
     1684
     1685.entry-header,
     1686.entry-summary,
     1687.entry-content,
     1688.entry-footer,
     1689.page-content {
     1690        margin-right: 7.6923%;
     1691        margin-left: 7.6923%;
     1692}
     1693
     1694.entry-title {
     1695        font-family: Montserrat, "Helvetica Neue", sans-serif;
     1696        font-size: 28px;
     1697        font-size: 1.75rem;
     1698        font-weight: 700;
     1699        line-height: 1.25;
     1700        margin-bottom: 1em;
     1701}
     1702
     1703.entry-title a {
     1704        color: #1a1a1a;
     1705}
     1706
     1707.entry-title a:hover,
     1708.entry-title a:focus {
     1709        color: #007acc;
     1710}
     1711
     1712.post-thumbnail {
     1713        display: block;
     1714        margin: 0 7.6923% 1.75em;
     1715}
     1716
     1717.post-thumbnail img {
     1718        display: block;
     1719}
     1720
     1721.no-sidebar .post-thumbnail img {
     1722        margin: 0 auto;
     1723}
     1724
     1725a.post-thumbnail:hover,
     1726a.post-thumbnail:focus {
     1727        opacity: 0.85;
     1728}
     1729
     1730.entry-content,
     1731.entry-summary {
     1732        border-color: #d1d1d1;
     1733}
     1734
     1735.entry-content h1,
     1736.entry-summary h1,
     1737.comment-content h1,
     1738.textwidget h1 {
     1739        font-size: 28px;
     1740        font-size: 1.75rem;
     1741        line-height: 1.25;
     1742        margin-top: 2em;
     1743        margin-bottom: 1em;
     1744}
     1745
     1746.entry-content h2,
     1747.entry-summary h2,
     1748.comment-content h2,
     1749.textwidget h2 {
     1750        font-size: 23px;
     1751        font-size: 1.4375rem;
     1752        line-height: 1.2173913043;
     1753        margin-top: 2.4347826087em;
     1754        margin-bottom: 1.2173913043em;
     1755}
     1756
     1757.entry-content h3,
     1758.entry-summary h3,
     1759.comment-content h3,
     1760.textwidget h3 {
     1761        font-size: 19px;
     1762        font-size: 1.1875rem;
     1763        line-height: 1.1052631579;
     1764        margin-top: 2.9473684211em;
     1765        margin-bottom: 1.4736842105em;
     1766}
     1767
     1768.entry-content h4,
     1769.entry-content h5,
     1770.entry-content h6,
     1771.entry-summary h4,
     1772.entry-summary h5,
     1773.entry-summary h6,
     1774.comment-content h4,
     1775.comment-content h5,
     1776.comment-content h6,
     1777.textwidget h4,
     1778.textwidget h5,
     1779.textwidget h6 {
     1780        font-size: 16px;
     1781        font-size: 1rem;
     1782        line-height: 1.3125;
     1783        margin-top: 3.5em;
     1784        margin-bottom: 1.75em;
     1785}
     1786
     1787.entry-content h4,
     1788.entry-summary h4,
     1789.comment-content h4,
     1790.textwidget h4 {
     1791        letter-spacing: 0.140625em;
     1792        text-transform: uppercase;
     1793}
     1794
     1795.entry-content h6,
     1796.entry-summary h6,
     1797.comment-content h6,
     1798.textwidget h6 {
     1799        font-style: italic;
     1800}
     1801
     1802.entry-content h1,
     1803.entry-content h2,
     1804.entry-content h3,
     1805.entry-content h4,
     1806.entry-content h5,
     1807.entry-content h6,
     1808.entry-summary h1,
     1809.entry-summary h2,
     1810.entry-summary h3,
     1811.entry-summary h4,
     1812.entry-summary h5,
     1813.entry-summary h6,
     1814.comment-content h1,
     1815.comment-content h2,
     1816.comment-content h3,
     1817.comment-content h4,
     1818.comment-content h5,
     1819.comment-content h6,
     1820.textwidget h1,
     1821.textwidget h2,
     1822.textwidget h3,
     1823.textwidget h4,
     1824.textwidget h5,
     1825.textwidget h6 {
     1826        font-weight: 900;
     1827}
     1828
     1829.entry-content h1:first-child,
     1830.entry-content h2:first-child,
     1831.entry-content h3:first-child,
     1832.entry-content h4:first-child,
     1833.entry-content h5:first-child,
     1834.entry-content h6:first-child,
     1835.entry-summary h1:first-child,
     1836.entry-summary h2:first-child,
     1837.entry-summary h3:first-child,
     1838.entry-summary h4:first-child,
     1839.entry-summary h5:first-child,
     1840.entry-summary h6:first-child,
     1841.comment-content h1:first-child,
     1842.comment-content h2:first-child,
     1843.comment-content h3:first-child,
     1844.comment-content h4:first-child,
     1845.comment-content h5:first-child,
     1846.comment-content h6:first-child,
     1847.textwidget h1:first-child,
     1848.textwidget h2:first-child,
     1849.textwidget h3:first-child,
     1850.textwidget h4:first-child,
     1851.textwidget h5:first-child,
     1852.textwidget h6:first-child {
     1853        margin-top: 0;
     1854}
     1855
     1856.post-navigation .post-title,
     1857.entry-title,
     1858.comments-title {
     1859        -webkit-hyphens: auto;
     1860        -moz-hyphens: auto;
     1861        -ms-hyphens: auto;
     1862        hyphens: auto;
     1863}
     1864
     1865body:not(.search-results) .entry-summary {
     1866        color: #686868;
     1867        font-size: 19px;
     1868        font-size: 1.1875rem;
     1869        line-height: 1.4736842105;
     1870        margin-bottom: 1.4736842105em;
     1871}
     1872
     1873body:not(.search-results) .entry-header + .entry-summary {
     1874        margin-top: -0.736842105em;
     1875}
     1876
     1877body:not(.search-results) .entry-summary p,
     1878body:not(.search-results) .entry-summary address,
     1879body:not(.search-results) .entry-summary hr,
     1880body:not(.search-results) .entry-summary ul,
     1881body:not(.search-results) .entry-summary ol,
     1882body:not(.search-results) .entry-summary dl,
     1883body:not(.search-results) .entry-summary dd,
     1884body:not(.search-results) .entry-summary table {
     1885        margin-bottom: 1.4736842105em;
     1886}
     1887
     1888body:not(.search-results) .entry-summary li > ul,
     1889body:not(.search-results) .entry-summary li > ol {
     1890        margin-bottom: 0;
     1891}
     1892
     1893body:not(.search-results) .entry-summary th,
     1894body:not(.search-results) .entry-summary td {
     1895        padding: 0.3684210526em;
     1896}
     1897
     1898body:not(.search-results) .entry-summary fieldset {
     1899        margin-bottom: 1.4736842105em;
     1900        padding: 0.3684210526em;
     1901}
     1902
     1903body:not(.search-results) .entry-summary blockquote {
     1904        border-color: currentColor;
     1905}
     1906
     1907body:not(.search-results) .entry-summary blockquote > :last-child {
     1908        margin-bottom: 0;
     1909}
     1910
     1911body:not(.search-results) .entry-summary .alignleft {
     1912        margin: 0.2631578947em 1.4736842105em 1.4736842105em 0;
     1913}
     1914
     1915body:not(.search-results) .entry-summary .alignright {
     1916        margin: 0.2631578947em 0 1.4736842105em 1.4736842105em;
     1917}
     1918
     1919body:not(.search-results) .entry-summary .aligncenter {
     1920        margin-bottom: 1.4736842105em;
     1921}
     1922
     1923.entry-content > :last-child,
     1924.entry-summary > :last-child,
     1925body:not(.search-results) .entry-summary > :last-child,
     1926.page-content > :last-child,
     1927.comment-content > :last-child,
     1928.textwidget > :last-child {
     1929        margin-bottom: 0;
     1930}
     1931
     1932.more-link {
     1933        white-space: nowrap;
     1934}
     1935
     1936.author-info {
     1937        border-color: inherit;
     1938        border-style: solid;
     1939        border-width: 1px 0 1px 0;
     1940        clear: both;
     1941        padding-top: 1.75em;
     1942        padding-bottom: 1.75em;
     1943}
     1944
     1945.author-avatar .avatar {
     1946        float: left;
     1947        height: 42px;
     1948        margin: 0 1.75em 1.75em 0;
     1949        width: 42px;
     1950}
     1951
     1952.author-description > :last-child {
     1953        margin-bottom: 0;
     1954}
     1955
     1956.entry-content .author-title {
     1957        clear: none;
     1958        font-size: 16px;
     1959        font-size: 1rem;
     1960        font-weight: 900;
     1961        line-height: 1.75;
     1962        margin: 0;
     1963}
     1964
     1965.author-bio {
     1966        color: #686868;
     1967        font-size: 13px;
     1968        font-size: 0.8125rem;
     1969        line-height: 1.6153846154;
     1970        margin-bottom: 1.6153846154em;
     1971        overflow: hidden;
     1972}
     1973
     1974.author-link {
     1975        white-space: nowrap;
     1976}
     1977
     1978.entry-footer {
     1979        color: #686868;
     1980        font-family: Montserrat, "Helvetica Neue", sans-serif;
     1981        font-size: 13px;
     1982        font-size: 0.8125rem;
     1983        line-height: 1.6153846154;
     1984        margin-top: 2.1538461538em;
     1985}
     1986
     1987.entry-footer:empty {
     1988        margin: 0;
     1989}
     1990
     1991.entry-footer a {
     1992        color: #686868;
     1993}
     1994
     1995.entry-footer a:hover,
     1996.entry-footer a:focus {
     1997        color: #007acc;
     1998}
     1999
     2000.entry-footer > span:not(:last-child):after {
     2001        content: "\002f";
     2002        display: inline-block;
     2003        opacity: 0.7;
     2004        padding: 0 0.538461538em;
     2005}
     2006
     2007.entry-footer .avatar {
     2008        height: 21px;
     2009        margin: -0.1538461538em 0.5384615385em 0 0;
     2010        width: 21px;
     2011}
     2012
     2013.sticky-post {
     2014        color: #686868;
     2015        display: block;
     2016        font-family: Montserrat, "Helvetica Neue", sans-serif;
     2017        font-size: 13px;
     2018        font-size: 0.8125rem;
     2019        letter-spacing: 0.076923077em;
     2020        line-height: 1.6153846154;
     2021        margin-bottom: 0.5384615385em;
     2022        text-transform: uppercase;
     2023}
     2024
     2025/**
     2026 * IE8 and earlier will drop any block with CSS3 selectors.
     2027 * Do not combine these styles with the next block.
     2028 */
     2029.updated:not(.published) {
     2030        display: none;
     2031}
     2032
     2033.sticky .posted-on,
     2034.byline {
     2035        display: none;
     2036}
     2037
     2038.single .byline,
     2039.group-blog .byline {
     2040        display: inline;
     2041}
     2042
     2043.page-header {
     2044        border-top: 4px solid #1a1a1a;
     2045        margin: 0 7.6923% 3.5em;
     2046        padding-top: 1.75em;
     2047}
     2048
     2049body.error404 .page-header,
     2050body.search-no-results .page-header {
     2051        border-top: 0;
     2052        padding-top: 0;
     2053}
     2054
     2055.page-title {
     2056        font-family: Montserrat, "Helvetica Neue", sans-serif;
     2057        font-size: 23px;
     2058        font-size: 1.4375rem;
     2059        line-height: 1.2173913043;
     2060}
     2061
     2062.taxonomy-description {
     2063        color: #686868;
     2064        font-size: 13px;
     2065        font-size: 0.8125rem;
     2066        line-height: 1.6153846154;
     2067}
     2068
     2069.taxonomy-description p {
     2070        margin: 0.5384615385em 0 1.6153846154em;
     2071}
     2072
     2073.taxonomy-description > :last-child {
     2074        margin-bottom: 0;
     2075}
     2076
     2077.page-links {
     2078        clear: both;
     2079        font-family: Montserrat, "Helvetica Neue", sans-serif;
     2080        margin: 0 0 1.75em;
     2081}
     2082
     2083.page-links a,
     2084.page-links > span {
     2085        border: 1px solid #d1d1d1;
     2086        border-radius: 2px;
     2087        display: inline-block;
     2088        font-size: 13px;
     2089        font-size: 0.8125rem;
     2090        height: 1.8461538462em;
     2091        line-height: 1.6923076923em;
     2092        margin-right: 0.3076923077em;
     2093        text-align: center;
     2094        width: 1.8461538462em;
     2095}
     2096
     2097.page-links a {
     2098        background-color: #1a1a1a;
     2099        border-color: #1a1a1a;
     2100        color: #fff;
     2101}
     2102
     2103.page-links a:hover,
     2104.page-links a:focus {
     2105        background-color: #007acc;
     2106        border-color: transparent;
     2107        color: #fff;
     2108}
     2109
     2110.page-links > .page-links-title {
     2111        border: 0;
     2112        color: #1a1a1a;
     2113        height: auto;
     2114        margin: 0;
     2115        padding-right: 0.6153846154em;
     2116        width: auto;
     2117}
     2118
     2119.entry-attachment {
     2120        margin-bottom: 1.75em;
     2121}
     2122
     2123.entry-caption {
     2124        color: #686868;
     2125        font-size: 13px;
     2126        font-size: 0.8125rem;
     2127        font-style: italic;
     2128        line-height: 1.6153846154;
     2129        padding-top: 1.0769230769em;
     2130}
     2131
     2132.entry-caption > :last-child {
     2133        margin-bottom: 0;
     2134}
     2135
     2136.content-bottom-widgets {
     2137        margin: 0 7.6923%;
     2138}
     2139
     2140.content-bottom-widgets .widget-area {
     2141        margin-bottom: 3.5em;
     2142}
     2143
     2144
     2145/**
     2146 * 11.3 - Post Formats
     2147 */
     2148
     2149.format-aside .entry-title,
     2150.format-image .entry-title,
     2151.format-video .entry-title,
     2152.format-quote .entry-title,
     2153.format-gallery .entry-title,
     2154.format-status .entry-title,
     2155.format-link .entry-title,
     2156.format-audio .entry-title,
     2157.format-chat .entry-title {
     2158        font-size: 19px;
     2159        font-size: 1.1875rem;
     2160        line-height: 1.473684211;
     2161        margin-bottom: 1.473684211em;
     2162}
     2163
     2164.blog .format-status .entry-title,
     2165.archive .format-status .entry-title {
     2166        display: none;
     2167}
     2168
     2169
     2170/**
     2171 * 11.4 - Comments
     2172 */
     2173
     2174.comments-area {
     2175        margin: 0 7.6923% 3.5em;
     2176}
     2177
     2178.comment-list + .comment-respond,
     2179.comment-navigation + .comment-respond {
     2180        padding-top: 1.75em;
     2181}
     2182
     2183.comments-title,
     2184.comment-reply-title {
     2185        border-top: 4px solid #1a1a1a;
     2186        font-family: Montserrat, "Helvetica Neue", sans-serif;
     2187        font-size: 23px;
     2188        font-size: 1.4375rem;
     2189        font-weight: 700;
     2190        line-height: 1.3125;
     2191        padding-top: 1.217391304em;
     2192}
     2193
     2194.comments-title {
     2195        margin-bottom: 1.217391304em;
     2196}
     2197
     2198.comment-list {
     2199        list-style: none;
     2200        margin: 0;
     2201}
     2202
     2203.comment-list article,
     2204.comment-list .pingback,
     2205.comment-list .trackback {
     2206        border-top: 1px solid #d1d1d1;
     2207        padding: 1.75em 0;
     2208}
     2209
     2210.comment-list .children {
     2211        list-style: none;
     2212        margin: 0;
     2213}
     2214
     2215.comment-list .children > li {
     2216        padding-left: 0.875em;
     2217}
     2218
     2219.comment-author {
     2220        color: #1a1a1a;
     2221        margin-bottom: 0.4375em;
     2222}
     2223
     2224.comment-author .avatar {
     2225        float: left;
     2226        height: 28px;
     2227        margin-right: 0.875em;
     2228        position: relative;
     2229        width: 28px;
     2230}
     2231
     2232.bypostauthor > article .fn:after {
     2233        content: "\f304";
     2234        left: 3px;
     2235        position: relative;
     2236        top: 5px;
     2237}
     2238
     2239.comment-metadata,
     2240.pingback .edit-link {
     2241        color: #686868;
     2242        font-family: Montserrat, "Helvetica Neue", sans-serif;
     2243        font-size: 13px;
     2244        font-size: 0.8125rem;
     2245        line-height: 1.6153846154;
     2246}
     2247
     2248.comment-metadata {
     2249        margin-bottom: 2.1538461538em;
     2250}
     2251
     2252.comment-metadata a,
     2253.pingback .comment-edit-link {
     2254        color: #686868;
     2255}
     2256
     2257.comment-metadata a:hover,
     2258.comment-metadata a:focus,
     2259.pingback .comment-edit-link:hover,
     2260.pingback .comment-edit-link:focus {
     2261        color: #007acc;
     2262}
     2263
     2264.comment-metadata .edit-link,
     2265.pingback .edit-link {
     2266        display: inline-block;
     2267}
     2268
     2269.comment-metadata .edit-link:before,
     2270.pingback .edit-link:before {
     2271        content: "\002f";
     2272        display: inline-block;
     2273        opacity: 0.7;
     2274        padding: 0 0.538461538em;
     2275}
     2276
     2277.comment-content ul,
     2278.comment-content ol {
     2279        margin: 0 0 1.5em 1.25em;
     2280}
     2281
     2282.comment-content li > ul,
     2283.comment-content li > ol {
     2284        margin-bottom: 0;
     2285}
     2286
     2287.comment-reply-link {
     2288        border: 1px solid #d1d1d1;
     2289        border-radius: 2px;
     2290        color: #007acc;
     2291        display: inline-block;
     2292        font-family: Montserrat, "Helvetica Neue", sans-serif;
     2293        font-size: 13px;
     2294        font-size: 0.8125rem;
     2295        line-height: 1;
     2296        margin-top: 2.1538461538em;
     2297        padding: 0.5384615385em 0.5384615385em 0.4615384615em;
     2298}
     2299
     2300.comment-reply-link:hover,
     2301.comment-reply-link:focus {
     2302        border-color: currentColor;
     2303        color: #007acc;
     2304        outline: 0;
     2305}
     2306
     2307.comment-form {
     2308        padding-top: 1.75em;
     2309}
     2310
     2311.comment-form label {
     2312        color: #686868;
     2313        display: block;
     2314        font-family: Montserrat, "Helvetica Neue", sans-serif;
     2315        font-size: 13px;
     2316        font-size: 0.8125rem;
     2317        letter-spacing: 0.076923077em;
     2318        line-height: 1.6153846154;
     2319        margin-bottom: 0.5384615385em;
     2320        text-transform: uppercase;
     2321}
     2322
     2323.comment-list .comment-form {
     2324        padding-bottom: 1.75em;
     2325}
     2326
     2327.comment-notes,
     2328.comment-awaiting-moderation,
     2329.logged-in-as,
     2330.form-allowed-tags {
     2331        color: #686868;
     2332        font-size: 13px;
     2333        font-size: 0.8125rem;
     2334        line-height: 1.6153846154;
     2335        margin-bottom: 2.1538461538em;
     2336}
     2337
     2338.no-comments {
     2339        border-top: 1px solid #d1d1d1;
     2340        font-family: Montserrat, "Helvetica Neue", sans-serif;
     2341        font-weight: 700;
     2342        margin: 0;
     2343        padding-top: 1.75em;
     2344}
     2345
     2346.comment-navigation + .no-comments {
     2347        border-top: 0;
     2348        padding-top: 0;
     2349}
     2350
     2351.form-allowed-tags code {
     2352        font-family: Inconsolata, monospace;
     2353}
     2354
     2355.form-submit {
     2356        margin-bottom: 0;
     2357}
     2358
     2359.required {
     2360        color: #007acc;
     2361        font-family: Merriweather, Georgia, serif;
     2362}
     2363
     2364.comment-reply-title small {
     2365        font-size: 100%;
     2366}
     2367
     2368.comment-reply-title small a {
     2369        border: 0;
     2370        float: right;
     2371        height: 32px;
     2372        overflow: hidden;
     2373        width: 26px;
     2374}
     2375
     2376.comment-reply-title small a:hover,
     2377.comment-reply-title small a:focus {
     2378        color: #1a1a1a;
     2379}
     2380
     2381.comment-reply-title small a:before {
     2382        content: "\f405";
     2383        font-size: 32px;
     2384        position: relative;
     2385        top: -5px;
     2386}
     2387
     2388
     2389/**
     2390 * 11.5 - Sidebar
     2391 */
     2392
     2393.sidebar {
     2394        margin-bottom: 3.5em;
     2395        padding: 0 7.6923%;
     2396}
     2397
     2398
     2399/**
     2400 * 11.6 - Footer
     2401 */
     2402
     2403.site-footer {
     2404        padding: 0 7.6923% 1.75em;
     2405}
     2406
     2407.site-info {
     2408        color: #686868;
     2409        font-size: 13px;
     2410        font-size: 0.8125rem;
     2411        line-height: 1.6153846154;
     2412}
     2413
     2414.site-info a {
     2415        color: #686868;
     2416}
     2417
     2418.site-info a:hover,
     2419.site-info a:focus {
     2420        color: #007acc;
     2421}
     2422
     2423.site-footer .site-title {
     2424        font-family: inherit;
     2425        font-size: inherit;
     2426        font-weight: 400;
     2427}
     2428
     2429.site-footer .site-title:after {
     2430        content: "\002f";
     2431        display: inline-block;
     2432        font-family: Montserrat, sans-serif;
     2433        opacity: 0.7;
     2434        padding: 0 0.307692308em 0 0.538461538em;
     2435}
     2436
     2437
     2438/**
     2439 * 12.0 - Media
     2440 */
     2441
     2442.site .avatar {
     2443        border-radius: 50%;
     2444}
     2445
     2446.entry-content .wp-smiley,
     2447.entry-summary .wp-smiley,
     2448.comment-content .wp-smiley,
     2449.textwidget .wp-smiley {
     2450        border: none;
     2451        margin-top: 0;
     2452        margin-bottom: 0;
     2453        padding: 0;
     2454}
     2455
     2456.entry-content a img,
     2457.entry-summary a img,
     2458.comment-content a img,
     2459.textwidget a img {
     2460        display: block;
     2461}
     2462
     2463/* Make sure embeds and iframes fit their containers. */
     2464embed,
     2465iframe,
     2466object,
     2467video {
     2468        margin-bottom: 1.75em;
     2469        max-width: 100%;
     2470        vertical-align: middle;
     2471}
     2472
     2473p > embed,
     2474p > iframe,
     2475p > object,
     2476p > video {
     2477        margin-bottom: 0;
     2478}
     2479
     2480.entry-content .wp-audio-shortcode a,
     2481.entry-content .wp-playlist a {
     2482        box-shadow: none;
     2483}
     2484
     2485.wp-audio-shortcode,
     2486.wp-video,
     2487.wp-playlist.wp-audio-playlist {
     2488        margin-top: 0;
     2489        margin-bottom: 1.75em;
     2490}
     2491
     2492.wp-playlist.wp-audio-playlist {
     2493        padding-bottom: 0;
     2494}
     2495
     2496.wp-playlist .wp-playlist-tracks {
     2497        margin-top: 0;
     2498}
     2499
     2500.wp-playlist-item .wp-playlist-caption {
     2501        border-bottom: 0;
     2502        padding: 0.7142857143em 0;
     2503}
     2504
     2505.wp-playlist-item .wp-playlist-item-length {
     2506        top: 0.7142857143em;
     2507}
     2508
     2509
     2510/**
     2511 * 12.1 - Captions
     2512 */
     2513
     2514.wp-caption {
     2515        margin-bottom: 1.75em;
     2516        max-width: 100%;
     2517}
     2518
     2519.wp-caption img[class*="wp-image-"] {
     2520        display: block;
     2521        margin: 0;
     2522}
     2523
     2524.wp-caption .wp-caption-text {
     2525        color: #686868;
     2526        font-size: 13px;
     2527        font-size: 0.8125rem;
     2528        font-style: italic;
     2529        line-height: 1.6153846154;
     2530        padding-top: 0.5384615385em;
     2531}
     2532
     2533
     2534/**
     2535 * 12.2 - Galleries
     2536 */
     2537
     2538.gallery {
     2539        margin: 0 -1.1666667% 1.75em;
     2540}
     2541
     2542.gallery-item {
     2543        display: inline-block;
     2544        max-width: 33.33%;
     2545        padding: 0 1.1400652% 2.2801304%;
     2546        text-align: center;
     2547        vertical-align: top;
     2548        width: 100%;
     2549}
     2550
     2551.gallery-columns-1 .gallery-item {
     2552        max-width: 100%;
     2553}
     2554
     2555.gallery-columns-2 .gallery-item {
     2556        max-width: 50%;
     2557}
     2558
     2559.gallery-columns-4 .gallery-item {
     2560        max-width: 25%;
     2561}
     2562
     2563.gallery-columns-5 .gallery-item {
     2564        max-width: 20%;
     2565}
     2566
     2567.gallery-columns-6 .gallery-item {
     2568        max-width: 16.66%;
     2569}
     2570
     2571.gallery-columns-7 .gallery-item {
     2572        max-width: 14.28%;
     2573}
     2574
     2575.gallery-columns-8 .gallery-item {
     2576        max-width: 12.5%;
     2577}
     2578
     2579.gallery-columns-9 .gallery-item {
     2580        max-width: 11.11%;
     2581}
     2582
     2583.gallery-icon img {
     2584        margin: 0 auto;
     2585}
     2586
     2587.gallery-caption {
     2588        color: #686868;
     2589        display: block;
     2590        font-size: 13px;
     2591        font-size: 0.8125rem;
     2592        font-style: italic;
     2593        line-height: 1.6153846154;
     2594        padding-top: 0.5384615385em;
     2595}
     2596
     2597.gallery-columns-6 .gallery-caption,
     2598.gallery-columns-7 .gallery-caption,
     2599.gallery-columns-8 .gallery-caption,
     2600.gallery-columns-9 .gallery-caption {
     2601        display: none;
     2602}
     2603
     2604
     2605/**
     2606 * 13.0 - Multisites
     2607 */
     2608
     2609.widecolumn {
     2610        margin-bottom: 3.5em;
     2611        padding: 0 7.6923%;
     2612}
     2613
     2614.widecolumn .mu_register {
     2615        width: auto;
     2616}
     2617
     2618.widecolumn .mu_register .mu_alert {
     2619        background: transparent;
     2620        border-color: #d1d1d1;
     2621        color: inherit;
     2622        margin-bottom: 3.5em;
     2623        padding: 1.75em;
     2624}
     2625
     2626.widecolumn form,
     2627.widecolumn .mu_register form {
     2628        margin-top: 0;
     2629}
     2630
     2631.widecolumn h2 {
     2632        font-size: 23px;
     2633        font-size: 1.4375rem;
     2634        font-weight: 900;
     2635        line-height: 1.2173913043;
     2636        margin-bottom: 1.2173913043em;
     2637}
     2638
     2639.widecolumn p {
     2640        margin: 1.75em 0;
     2641}
     2642
     2643.widecolumn p + h2 {
     2644        margin-top: 2.4347826087em;
     2645}
     2646
     2647.widecolumn label,
     2648.widecolumn .mu_register label {
     2649        color: #686868;
     2650        font-family: Montserrat, "Helvetica Neue", sans-serif;
     2651        font-size: 13px;
     2652        font-size: 0.8125rem;
     2653        font-weight: 400;
     2654        letter-spacing: 0.076923077em;
     2655        line-height: 1.6153846154;
     2656        text-transform: uppercase;
     2657}
     2658
     2659.widecolumn .mu_register label {
     2660        margin: 2.1538461538em 0.7692307692em 0.5384615385em 0;
     2661}
     2662
     2663.widecolumn .mu_register label strong {
     2664        font-weight: 400;
     2665}
     2666
     2667.widecolumn #key,
     2668.widecolumn .mu_register #blog_title,
     2669.widecolumn .mu_register #user_email,
     2670.widecolumn .mu_register #blogname,
     2671.widecolumn .mu_register #user_name {
     2672        font-size: 16px;
     2673        font-size: 1rem;
     2674        width: 100%;
     2675}
     2676
     2677.widecolumn .mu_register #blogname {
     2678        margin: 0;
     2679}
     2680
     2681.widecolumn .mu_register #blog_title,
     2682.widecolumn .mu_register #user_email,
     2683.widecolumn .mu_register #user_name {
     2684        margin: 0 0 0.375em;
     2685}
     2686
     2687.widecolumn #submit,
     2688.widecolumn .mu_register input[type="submit"] {
     2689        font-size: 16px;
     2690        font-size: 1rem;
     2691        margin: 0;
     2692        width: auto;
     2693}
     2694
     2695.widecolumn .mu_register .prefix_address,
     2696.widecolumn .mu_register .suffix_address {
     2697        font-size: inherit;
     2698}
     2699
     2700.widecolumn .mu_register > :last-child,
     2701.widecolumn form > :last-child {
     2702        margin-bottom: 0;
     2703}
     2704
     2705
     2706/**
     2707 * 14.0 - Media Queries
     2708 */
     2709
     2710/**
     2711 * Does the same thing as <meta name="viewport" content="width=device-width">,
     2712 * but in the future W3C standard way. -ms- prefix is required for IE10+ to
     2713 * render responsive styling in Windows 8 "snapped" views; IE10+ does not honor
     2714 * the meta tag. See https://core.trac.wordpress.org/ticket/25888.
     2715 */
     2716@-ms-viewport {
     2717        width: device-width;
     2718}
     2719
     2720@viewport {
     2721        width: device-width;
     2722}
     2723
     2724
     2725/**
     2726 * 14.1 - >= 710px
     2727 */
     2728
     2729@media screen and (min-width: 44.375em) {
     2730        body:not(.custom-background-image):before,
     2731        body:not(.custom-background-image):after {
     2732                background: inherit;
     2733                content: "";
     2734                display: block;
     2735                height: 21px;
     2736                left: 0;
     2737                position: fixed;
     2738                width: 100%;
     2739                z-index: 99;
     2740        }
     2741
     2742        body:not(.custom-background-image):before {
     2743                top: 0;
     2744        }
     2745
     2746        body:not(.custom-background-image).admin-bar:before {
     2747                top: 46px;
     2748        }
     2749
     2750        body:not(.custom-background-image):after {
     2751                bottom: 0;
     2752        }
     2753
     2754        .site {
     2755                margin: 21px;
     2756        }
     2757
     2758        .site-main {
     2759                margin-bottom: 5.25em;
     2760        }
     2761
     2762        .site-header {
     2763                padding: 3.9375em 7.6923%;
     2764        }
     2765
     2766        .site-branding {
     2767                margin-top: 1.3125em;
     2768                margin-bottom: 1.3125em;
     2769        }
     2770
     2771        .custom-logo {
     2772                max-width: 210px;
     2773        }
     2774
     2775        .site-title {
     2776                font-size: 28px;
     2777                font-size: 1.75rem;
     2778                line-height: 1.25;
     2779        }
     2780
     2781        .wp-custom-logo .site-title {
     2782                margin-top: 0.5em;
     2783        }
     2784
     2785        .site-description {
     2786                display: block;
     2787        }
     2788
     2789        .menu-toggle {
     2790                font-size: 16px;
     2791                font-size: 1.0rem;
     2792                margin: 1.3125em 0;
     2793                padding: 0.8125em 0.875em 0.6875em;
     2794        }
     2795
     2796        .site-header-menu {
     2797                margin: 1.3125em 0;
     2798        }
     2799
     2800        .site-header .main-navigation + .social-navigation {
     2801                margin-top: 2.625em;
     2802        }
     2803
     2804        .header-image {
     2805                margin: 1.3125em 0;
     2806        }
     2807
     2808        .pagination {
     2809                margin: 0 23.0769% 4.421052632em 7.6923%
     2810        }
     2811
     2812        .post-navigation {
     2813                margin-bottom: 5.25em;
     2814        }
     2815
     2816        .post-navigation .post-title {
     2817                font-size: 28px;
     2818                font-size: 1.75rem;
     2819                line-height: 1.25;
     2820        }
     2821
     2822        /* restore screen-reader-text */
     2823        .pagination .current .screen-reader-text {
     2824                position: absolute !important;
     2825        }
     2826
     2827        .pagination .page-numbers {
     2828                display: inline-block;
     2829        }
     2830
     2831        .site-main > article {
     2832                margin-bottom: 5.25em;
     2833        }
     2834
     2835        .entry-header,
     2836        .post-thumbnail,
     2837        .entry-content,
     2838        .entry-summary,
     2839        .entry-footer,
     2840        .comments-area,
     2841        .image-navigation,
     2842        .post-navigation,
     2843        .page-header,
     2844        .page-content,
     2845        .content-bottom-widgets {
     2846                margin-right: 23.0769%;
     2847        }
     2848
     2849        .entry-title {
     2850                font-size: 33px;
     2851                font-size: 2.0625rem;
     2852                line-height: 1.2727272727;
     2853                margin-bottom: 0.8484848485em;
     2854        }
     2855
     2856        .entry-content blockquote.alignleft,
     2857        .entry-content blockquote.alignright {
     2858                border-width: 4px 0 0 0;
     2859                padding: 0.9473684211em 0 0;
     2860                width: -webkit-calc(50% - 0.736842105em);
     2861                width: calc(50% - 0.736842105em);
     2862        }
     2863
     2864        .entry-content blockquote:not(.alignleft):not(.alignright),
     2865        .entry-summary blockquote,
     2866        .comment-content blockquote {
     2867                margin-left: -1.473684211em;
     2868        }
     2869
     2870        .entry-content blockquote blockquote:not(.alignleft):not(.alignright),
     2871        .entry-summary blockquote blockquote,
     2872        .comment-content blockquote blockquote {
     2873                margin-left: 0;
     2874        }
     2875
     2876        .entry-content ul,
     2877        .entry-summary ul,
     2878        .comment-content ul,
     2879        .entry-content ol,
     2880        .entry-summary ol,
     2881        .comment-content ol {
     2882                margin-left: 0;
     2883        }
     2884
     2885        .entry-content li > ul,
     2886        .entry-summary li > ul,
     2887        .comment-content li > ul,
     2888        .entry-content blockquote > ul,
     2889        .entry-summary blockquote > ul,
     2890        .comment-content blockquote > ul {
     2891                margin-left: 1.25em;
     2892        }
     2893
     2894        .entry-content li > ol,
     2895        .entry-summary li > ol,
     2896        .comment-content li > ol,
     2897        .entry-content blockquote > ol,
     2898        .entry-summary blockquote > ol,
     2899        .comment-content blockquote > ol {
     2900                margin-left: 1.5em;
     2901        }
     2902
     2903        .comment-author {
     2904                margin-bottom: 0;
     2905        }
     2906
     2907        .comment-author .avatar {
     2908                height: 42px;
     2909                position: relative;
     2910                top: 0.25em;
     2911                width: 42px;
     2912        }
     2913
     2914        .comment-list .children > li {
     2915                padding-left: 1.75em;
     2916        }
     2917
     2918        .comment-list + .comment-respond,
     2919        .comment-navigation + .comment-respond {
     2920                padding-top: 3.5em;
     2921        }
     2922
     2923        .comments-area,
     2924        .widget,
     2925        .content-bottom-widgets .widget-area {
     2926                margin-bottom: 5.25em;
     2927        }
     2928
     2929        .sidebar,
     2930        .widecolumn {
     2931                margin-bottom: 5.25em;
     2932                padding-right: 23.0769%;
     2933        }
     2934
     2935        body:not(.search-results) .entry-summary li > ul,
     2936        body:not(.search-results) .entry-summary blockquote > ul {
     2937                margin-left: 1.157894737em;
     2938        }
     2939
     2940        body:not(.search-results) .entry-summary li > ol,
     2941        body:not(.search-results) .entry-summary blockquote > ol {
     2942                margin-left: 1.473684211em;
     2943        }
     2944}
     2945
     2946
     2947/**
     2948 * 14.2 - >= 783px
     2949 */
     2950
     2951@media screen and (min-width: 48.9375em) {
     2952        body:not(.custom-background-image).admin-bar:before {
     2953                top: 32px;
     2954        }
     2955}
     2956
     2957
     2958/**
     2959 * 14.3 - >= 910px
     2960 */
     2961
     2962@media screen and (min-width: 56.875em) {
     2963        .site-header {
     2964                padding-right: 4.5455%;
     2965                padding-left: 4.5455%;
     2966        }
     2967
     2968        .site-header-main {
     2969                -webkit-align-items: flex-start;
     2970                -ms-flex-align: start;
     2971                align-items: flex-start;
     2972        }
     2973
     2974        .wp-custom-logo .site-header-main {
     2975                -webkit-align-items: center;
     2976                -ms-flex-align: center;
     2977                align-items: center;
     2978        }
     2979
     2980        .site-header-menu {
     2981                display: block;
     2982                -webkit-flex: 0 1 auto;
     2983                -ms-flex: 0 1 auto;
     2984                flex: 0 1 auto;
     2985        }
     2986
     2987        .main-navigation {
     2988                margin: 0 -0.875em;
     2989        }
     2990
     2991        .main-navigation .primary-menu,
     2992        .main-navigation .primary-menu > li {
     2993                border: 0;
     2994        }
     2995
     2996        .main-navigation .primary-menu > li {
     2997                float: left;
     2998        }
     2999
     3000        .main-navigation a {
     3001                outline-offset: -8px;
     3002                padding: 0.65625em 0.875em;
     3003                white-space: nowrap;
     3004        }
     3005
     3006        .main-navigation li:hover > a,
     3007        .main-navigation li.focus > a {
     3008                color: #007acc;
     3009        }
     3010
     3011        .main-navigation ul ul {
     3012                border-bottom: 1px solid #d1d1d1;
     3013                display: block;
     3014                left: -999em;
     3015                margin: 0;
     3016                position: absolute;
     3017                z-index: 99999;
     3018        }
     3019
     3020        .main-navigation ul ul ul {
     3021                top: -1px;
     3022        }
     3023
     3024        .main-navigation ul ul ul:before,
     3025        .main-navigation ul ul ul:after {
     3026                border: 0;
     3027        }
     3028
     3029        .main-navigation ul ul li {
     3030                background-color: #fff;
     3031                border: 1px solid #d1d1d1;
     3032                border-bottom-width: 0;
     3033        }
     3034
     3035        .main-navigation ul ul a {
     3036                white-space: normal;
     3037                width: 12.6875em;
     3038        }
     3039
     3040        .main-navigation ul ul:before,
     3041        .main-navigation ul ul:after {
     3042                border-style: solid;
     3043                content: "";
     3044                position: absolute;
     3045        }
     3046
     3047        .main-navigation ul ul:before {
     3048                border-color: #d1d1d1 transparent;
     3049                border-width: 0 10px 10px;
     3050                right: 9px;
     3051                top: -9px;
     3052        }
     3053
     3054        .main-navigation ul ul:after {
     3055                border-color: #fff transparent;
     3056                border-width: 0 8px 8px;
     3057                right: 11px;
     3058                top: -7px;
     3059        }
     3060
     3061        .main-navigation li:hover > ul,
     3062        .main-navigation li.focus > ul {
     3063                left: auto;
     3064                right: 0;
     3065        }
     3066
     3067        .main-navigation ul ul li:hover > ul,
     3068        .main-navigation ul ul li.focus > ul {
     3069                left: auto;
     3070                right: 100%;
     3071        }
     3072
     3073        .main-navigation .menu-item-has-children > a {
     3074                margin: 0;
     3075                padding-right: 2.25em;
     3076        }
     3077
     3078        .main-navigation .menu-item-has-children > a:after {
     3079                content: "\f431";
     3080                position: absolute;
     3081                right: 0.625em;
     3082                top: 0.8125em;
     3083        }
     3084
     3085        .main-navigation ul ul .menu-item-has-children > a {
     3086                padding-right: 2.0625em;
     3087        }
     3088
     3089        .main-navigation ul ul .menu-item-has-children > a:after {
     3090                right: 0.5625em;
     3091                top: 0.875em;
     3092                -webkit-transform: rotate(90deg);
     3093                -moz-transform: rotate(90deg);
     3094                -ms-transform: rotate(90deg);
     3095                transform: rotate(90deg);
     3096        }
     3097
     3098        .dropdown-toggle,
     3099        .main-navigation ul .dropdown-toggle.toggled-on,
     3100        .menu-toggle,
     3101        .site-header .social-navigation,
     3102        .site-footer .main-navigation {
     3103                display: none;
     3104        }
     3105
     3106        .site-content {
     3107                padding: 0 4.5455%;
     3108        }
     3109
     3110        .content-area {
     3111                float: left;
     3112                margin-right: -100%;
     3113                width: 70%;
     3114        }
     3115
     3116        .entry-header,
     3117        .post-thumbnail,
     3118        .entry-content,
     3119        .entry-summary,
     3120        .entry-footer,
     3121        .comments-area,
     3122        .image-navigation,
     3123        .post-navigation,
     3124        .pagination,
     3125        .page-header,
     3126        .page-content,
     3127        .content-bottom-widgets {
     3128                margin-right: 0;
     3129                margin-left: 0;
     3130        }
     3131
     3132        .sidebar {
     3133                float: left;
     3134                margin-left: 75%;
     3135                padding: 0;
     3136                width: 25%;
     3137        }
     3138
     3139        .widget {
     3140                font-size: 13px;
     3141                font-size: 0.8125rem;
     3142                line-height: 1.6153846154;
     3143                margin-bottom: 3.230769231em;
     3144                padding-top: 1.615384615em;
     3145        }
     3146
     3147        .widget .widget-title {
     3148                margin-bottom: 1.3125em;
     3149        }
     3150
     3151        .widget p,
     3152        .widget address,
     3153        .widget hr,
     3154        .widget ul,
     3155        .widget ol,
     3156        .widget dl,
     3157        .widget dd,
     3158        .widget table {
     3159                margin-bottom: 1.6153846154em;
     3160        }
     3161
     3162        .widget li > ul,
     3163        .widget li > ol {
     3164                margin-bottom: 0;
     3165        }
     3166
     3167        .widget blockquote {
     3168                font-size: 16px;
     3169                font-size: 1rem;
     3170                line-height: 1.3125;
     3171                margin-bottom: 1.3125em;
     3172                padding-left: 1.0625em;
     3173        }
     3174
     3175        .widget blockquote cite,
     3176        .widget blockquote small {
     3177                font-size: 13px;
     3178                font-size: 0.8125rem;
     3179                line-height: 1.6153846154;
     3180        }
     3181
     3182        .widget th,
     3183        .widget td {
     3184                padding: 0.5384615385em;
     3185        }
     3186
     3187        .widget pre {
     3188                font-size: 13px;
     3189                font-size: 0.8125rem;
     3190                line-height: 1.6153846154;
     3191                margin-bottom: 1.6153846154em;
     3192                padding: 0.5384615385em;
     3193        }
     3194
     3195        .widget fieldset {
     3196                margin-bottom: 1.6153846154em;
     3197                padding: 0.5384615385em;
     3198        }
     3199
     3200        .widget button,
     3201        .widget input,
     3202        .widget select,
     3203        .widget textarea {
     3204                font-size: 13px;
     3205                font-size: 0.8125rem;
     3206                line-height: 1.6153846154;
     3207        }
     3208
     3209        .widget button,
     3210        .widget input[type="button"],
     3211        .widget input[type="reset"],
     3212        .widget input[type="submit"] {
     3213                line-height: 1;
     3214                padding: 0.846153846em;
     3215        }
     3216
     3217        .widget input[type="date"],
     3218        .widget input[type="time"],
     3219        .widget input[type="datetime-local"],
     3220        .widget input[type="week"],
     3221        .widget input[type="month"],
     3222        .widget input[type="text"],
     3223        .widget input[type="email"],
     3224        .widget input[type="url"],
     3225        .widget input[type="password"],
     3226        .widget input[type="search"],
     3227        .widget input[type="tel"],
     3228        .widget input[type="number"],
     3229        .widget textarea {
     3230                padding: 0.4615384615em 0.5384615385em;
     3231        }
     3232
     3233        .widget h1 {
     3234                font-size: 23px;
     3235                font-size: 1.4375rem;
     3236                line-height: 1.2173913043;
     3237                margin-bottom: 0.9130434783em;
     3238        }
     3239
     3240        .widget h2 {
     3241                font-size: 19px;
     3242                font-size: 1.1875rem;
     3243                line-height: 1.1052631579;
     3244                margin-bottom: 1.1052631579em;
     3245        }
     3246
     3247        .widget h3 {
     3248                font-size: 16px;
     3249                font-size: 1rem;
     3250                line-height: 1.3125;
     3251                margin-bottom: 1.3125em;
     3252        }
     3253
     3254        .widget h4,
     3255        .widget h5,
     3256        .widget h6 {
     3257                font-size: 13px;
     3258                font-size: 0.8125rem;
     3259                line-height: 1.6153846154;
     3260                margin-bottom: 0.9130434783em;
     3261        }
     3262
     3263        .widget .alignleft {
     3264                margin: 0.2307692308em 1.6153846154em 1.6153846154em 0;
     3265        }
     3266
     3267        .widget .alignright {
     3268                margin: 0.2307692308em 0 1.6153846154em 1.6153846154em;
     3269        }
     3270
     3271        .widget .aligncenter {
     3272                margin-bottom: 1.6153846154em;
     3273        }
     3274
     3275        .widget_calendar td,
     3276        .widget_calendar th {
     3277                line-height: 2.6923076923;
     3278                padding: 0;
     3279        }
     3280
     3281        .widget_rss .rssSummary:last-child {
     3282                margin-bottom: 1.615384615em;
     3283        }
     3284
     3285        .widget input[type="search"].search-field {
     3286                width: -webkit-calc(100% - 35px);
     3287                width: calc(100% - 35px);
     3288        }
     3289
     3290        .widget .search-submit:before {
     3291                font-size: 16px;
     3292                left: 1px;
     3293                line-height: 35px;
     3294                width: 34px;
     3295        }
     3296
     3297        .widget button.search-submit {
     3298                padding: 0;
     3299                width: 35px;
     3300        }
     3301
     3302        .tagcloud a {
     3303                margin: 0 0.2307692308em 0.5384615385em 0;
     3304                padding: 0.5384615385em 0.4615384615em 0.4615384615em;
     3305        }
     3306
     3307        .textwidget h1 {
     3308                margin-top: 1.8260869565em;
     3309        }
     3310
     3311        .textwidget h2 {
     3312                margin-top: 2.2105263158em;
     3313        }
     3314
     3315        .textwidget h3 {
     3316                margin-top: 2.625em;
     3317        }
     3318
     3319        .textwidget h4 {
     3320                letter-spacing: 0.153846154em;
     3321        }
     3322
     3323        .textwidget h4,
     3324        .textwidget h5,
     3325        .textwidget h6 {
     3326                margin-top: 3.2307692308em;
     3327        }
     3328
     3329        .content-bottom-widgets .widget-area:nth-child(1):nth-last-child(2),
     3330        .content-bottom-widgets .widget-area:nth-child(2):nth-last-child(1) {
     3331                float: left;
     3332                margin-right: 7.1428571%;
     3333                width: 46.42857145%;
     3334        }
     3335
     3336        .content-bottom-widgets .widget-area:nth-child(2):nth-last-child(1):last-of-type {
     3337                margin-right: 0;
     3338        }
     3339
     3340        .site-footer {
     3341                -webkit-align-items: center;
     3342                -ms-flex-align: center;
     3343                align-items: center;
     3344                display: -webkit-flex;
     3345                display: -ms-flexbox;
     3346                display: flex;
     3347                -webkit-flex-wrap: wrap;
     3348                -ms-flex-wrap: wrap;
     3349                flex-wrap: wrap;
     3350                padding: 0 4.5455% 3.5em;
     3351        }
     3352
     3353        .site-footer .social-navigation {
     3354                margin: 0;
     3355                -webkit-order: 2;
     3356                -ms-flex-order: 2;
     3357                order: 2;
     3358        }
     3359
     3360        .site-info {
     3361                margin: 0.538461538em auto 0.538461538em 0;
     3362                -webkit-order: 1;
     3363                -ms-flex-order: 1;
     3364                order: 1;
     3365        }
     3366
     3367        .no-sidebar .content-area {
     3368                float: none;
     3369                margin: 0;
     3370                width: 100%;
     3371        }
     3372
     3373        .no-sidebar .entry-header,
     3374        .no-sidebar .entry-content,
     3375        .no-sidebar .entry-summary,
     3376        .no-sidebar .entry-footer,
     3377        .no-sidebar .comments-area,
     3378        .no-sidebar .image-navigation,
     3379        .no-sidebar .post-navigation,
     3380        .no-sidebar .pagination,
     3381        .no-sidebar .page-header,
     3382        .no-sidebar .page-content,
     3383        .no-sidebar .content-bottom-widgets {
     3384                margin-right: 15%;
     3385                margin-left: 15%;
     3386        }
     3387
     3388        .widecolumn {
     3389                padding-right: 15%;
     3390                padding-left: 15%;
     3391        }
     3392}
     3393
     3394
     3395/**
     3396 * 14.4 - >= 985px
     3397 */
     3398
     3399@media screen and (min-width: 61.5625em) {
     3400        .site-main {
     3401                margin-bottom: 7.0em;
     3402        }
     3403
     3404        .site-header {
     3405                padding: 5.25em 4.5455%;
     3406        }
     3407
     3408        .site-branding,
     3409        .site-header-menu,
     3410        .header-image {
     3411                margin-top: 1.75em;
     3412                margin-bottom: 1.75em;
     3413        }
     3414
     3415        .custom-logo {
     3416                max-width: 240px;
     3417        }
     3418
     3419        .image-navigation {
     3420                margin-bottom: 3.230769231em;
     3421        }
     3422
     3423        .post-navigation {
     3424                margin-bottom: 7.0em;
     3425        }
     3426
     3427        .pagination {
     3428                margin-bottom: 5.894736842em;
     3429        }
     3430
     3431        .widget {
     3432                margin-bottom: 4.307692308em;
     3433        }
     3434
     3435        .site-main > article {
     3436                margin-bottom: 7.0em;
     3437        }
     3438
     3439        .entry-title {
     3440                font-size: 40px;
     3441                font-size: 2.5rem;
     3442                line-height: 1.225;
     3443                margin-bottom: 1.05em;
     3444        }
     3445
     3446        .format-aside .entry-title,
     3447        .format-image .entry-title,
     3448        .format-video .entry-title,
     3449        .format-quote .entry-title,
     3450        .format-gallery .entry-title,
     3451        .format-status .entry-title,
     3452        .format-link .entry-title,
     3453        .format-audio .entry-title,
     3454        .format-chat .entry-title {
     3455                font-size: 23px;
     3456                font-size: 1.4375em;
     3457                line-height: 1.304347826;
     3458                margin-bottom: 1.826086957em;
     3459        }
     3460
     3461        .post-thumbnail {
     3462                margin-bottom: 2.625em;
     3463        }
     3464
     3465        .entry-content h1,
     3466        .entry-summary h1,
     3467        .comment-content h1 {
     3468                font-size: 33px;
     3469                font-size: 2.0625rem;
     3470                line-height: 1.2727272727;
     3471                margin-top: 1.696969697em;
     3472                margin-bottom: 0.8484848485em;
     3473        }
     3474
     3475        .entry-content h2,
     3476        .entry-summary h2,
     3477        .comment-content h2 {
     3478                font-size: 28px;
     3479                font-size: 1.75rem;
     3480                line-height: 1.25;
     3481                margin-top: 2em;
     3482                margin-bottom: 1em;
     3483        }
     3484
     3485        .entry-content h3,
     3486        .entry-summary h3,
     3487        .comment-content h3 {
     3488                font-size: 23px;
     3489                font-size: 1.4375rem;
     3490                line-height: 1.2173913043;
     3491                margin-top: 2.4347826087em;
     3492                margin-bottom: 1.2173913043em;
     3493        }
     3494
     3495        .entry-content h4,
     3496        .entry-summary h4,
     3497        .entry-intro h4,
     3498        .comment-content h4 {
     3499                letter-spacing: 0.131578947em;
     3500        }
     3501
     3502        .entry-content h4,
     3503        .entry-content h5,
     3504        .entry-content h6,
     3505        .entry-summary h4,
     3506        .entry-summary h5,
     3507        .entry-summary h6,
     3508        .comment-content h4,
     3509        .comment-content h5,
     3510        .comment-content h6 {
     3511                font-size: 19px;
     3512                font-size: 1.1875rem;
     3513                line-height: 1.1052631579;
     3514                margin-top: 2.9473684211em;
     3515                margin-bottom: 1.473684211em;
     3516        }
     3517
     3518        .author-info {
     3519                border-bottom-width: 0;
     3520                padding-bottom: 0;
     3521        }
     3522
     3523        .comment-list + .comment-respond,
     3524        .comment-navigation + .comment-respond {
     3525                padding-top: 5.25em;
     3526        }
     3527
     3528        .comments-area,
     3529        .sidebar,
     3530        .content-bottom-widgets .widget-area,
     3531        .widecolumn {
     3532                margin-bottom: 7.0em;
     3533        }
     3534
     3535        body:not(.search-results) .entry-summary {
     3536                margin-bottom: 2.210526316em;
     3537        }
     3538
     3539        body:not(.search-results) .entry-header + .entry-summary {
     3540                margin-top: -1.105263158em;
     3541        }
     3542
     3543        body:not(.search-results) article:not(.type-page) .entry-content {
     3544                float: right;
     3545                width: 71.42857144%;
     3546        }
     3547
     3548        body:not(.search-results) article:not(.type-page) .entry-content > blockquote.alignleft.below-entry-meta {
     3549                margin-left: -40%;
     3550                width: -webkit-calc(60% - 1.4736842105em);
     3551                width: calc(60% - 1.4736842105em);
     3552        }
     3553
     3554        body:not(.search-results) article:not(.type-page) img.below-entry-meta,
     3555        body:not(.search-results) article:not(.type-page) figure.below-entry-meta {
     3556                clear: both;
     3557                display: block;
     3558                float: none;
     3559                margin-right: 0;
     3560                margin-left: -40%;
     3561                max-width: 140%;
     3562        }
     3563
     3564        body:not(.search-results) article:not(.type-page) figure.below-entry-meta img.below-entry-meta,
     3565        body:not(.search-results) article:not(.type-page) table figure.below-entry-meta,
     3566        body:not(.search-results) article:not(.type-page) table img.below-entry-meta {
     3567                margin: 0;
     3568                max-width: 100%;
     3569        }
     3570
     3571        body:not(.search-results) article:not(.type-page) .entry-footer {
     3572                float: left;
     3573                margin-top: 0.1538461538em;
     3574                width: 21.42857143%;
     3575        }
     3576
     3577        body:not(.search-results) article:not(.type-page) .entry-footer > span:not(:last-child):after {
     3578                display: none;
     3579        }
     3580
     3581        .single .byline,
     3582        .full-size-link,
     3583        body:not(.search-results).group-blog .byline,
     3584        body:not(.search-results) .entry-format,
     3585        body:not(.search-results) .cat-links,
     3586        body:not(.search-results) .tags-links,
     3587        body:not(.search-results) article:not(.sticky) .posted-on,
     3588        body:not(.search-results) article:not(.type-page) .comments-link,
     3589        body:not(.search-results) article:not(.type-page) .entry-footer .edit-link {
     3590                display: block;
     3591                margin-bottom: 0.5384615385em;
     3592        }
     3593
     3594        body:not(.search-results) article:not(.type-page) .entry-footer > span:last-child {
     3595                margin-bottom: 0;
     3596        }
     3597
     3598        body:not(.search-results) article:not(.type-page) .entry-footer .avatar {
     3599                display: block;
     3600                height: auto;
     3601                margin: 0 0 0.5384615385em;
     3602                width: 49px;
     3603        }
     3604
     3605        body.no-sidebar:not(.search-results) article:not(.type-page) .entry-content {
     3606                float: left;
     3607                margin-right: -100%;
     3608                margin-left: 34.99999999%;
     3609                width: 50.00000001%;
     3610        }
     3611
     3612        body.no-sidebar:not(.search-results) article:not(.type-page) .entry-footer {
     3613                margin-right: -100%;
     3614                margin-left: 15%;
     3615                width: 15%;
     3616        }
     3617}
     3618
     3619
     3620/**
     3621 * 14.5 - >= 1200px
     3622 */
     3623
     3624@media screen and (min-width: 75em) {
     3625        body:not(.search-results) .entry-summary {
     3626                font-size: 23px;
     3627                font-size: 1.4375rem;
     3628                line-height: 1.5217391304;
     3629                margin-bottom: 1.826086957em;
     3630        }
     3631
     3632        body:not(.search-results) .entry-header + .entry-summary {
     3633                margin-top: -0.913043478em;
     3634        }
     3635
     3636        body:not(.search-results) .entry-summary p,
     3637        body:not(.search-results) .entry-summary address,
     3638        body:not(.search-results) .entry-summary hr,
     3639        body:not(.search-results) .entry-summary ul,
     3640        body:not(.search-results) .entry-summary ol,
     3641        body:not(.search-results) .entry-summary dl,
     3642        body:not(.search-results) .entry-summary dd,
     3643        body:not(.search-results) .entry-summary table {
     3644                margin-bottom: 1.5217391304em;
     3645        }
     3646
     3647        body:not(.search-results) .entry-summary li > ul,
     3648        body:not(.search-results) .entry-summary blockquote > ul {
     3649                margin-left: 0.956521739em;
     3650        }
     3651
     3652        body:not(.search-results) .entry-summary li > ol,
     3653        body:not(.search-results) .entry-summary blockquote > ol {
     3654                margin-left: 1.52173913em;
     3655        }
     3656
     3657        body:not(.search-results) .entry-summary blockquote {
     3658                font-size: 23px;
     3659                font-size: 1.4375rem;
     3660                line-height: 1.5217391304;
     3661                margin: 0 0 1.5217391304em;
     3662                padding-left: 1.347826087em;
     3663        }
     3664
     3665        body:not(.search-results) .entry-summary blockquote:not(.alignleft):not(.alignright) {
     3666                margin-left: -1.52173913em;
     3667        }
     3668
     3669        body:not(.search-results) .entry-summary blockquote blockquote:not(.alignleft):not(.alignright) {
     3670                margin-left: 0;
     3671        }
     3672
     3673        body:not(.search-results) .entry-summary blockquote cite,
     3674        body:not(.search-results) .entry-summary blockquote small {
     3675                font-size: 19px;
     3676                font-size: 1.1875rem;
     3677                line-height: 1.8421052632;
     3678        }
     3679
     3680        body:not(.search-results) .entry-summary th,
     3681        body:not(.search-results) .entry-summary td {
     3682                padding: 0.3043478261em;
     3683        }
     3684
     3685        body:not(.search-results) .entry-summary pre {
     3686                font-size: 16px;
     3687                font-size: 1rem;
     3688                line-height: 1.75;
     3689                margin-bottom: 1.75em;
     3690                padding: 1.75em;
     3691        }
     3692
     3693        body:not(.search-results) .entry-summary fieldset {
     3694                margin-bottom: 1.5217391304em;
     3695                padding: 0.3043478261em;
     3696        }
     3697
     3698        body:not(.search-results) .entry-summary h1 {
     3699                margin-top: 2.121212121em;
     3700                margin-bottom: 1.060606061em;
     3701        }
     3702
     3703        body:not(.search-results) .entry-summary h2 {
     3704                margin-top: 2.5em;
     3705                margin-bottom: 1.25em;
     3706        }
     3707
     3708        body:not(.search-results) .entry-summary h3 {
     3709                margin-top: 3.043478261em;
     3710                margin-bottom: 1.52173913em;
     3711        }
     3712
     3713        body:not(.search-results) .entry-summary h4,
     3714        body:not(.search-results) .entry-summary h5,
     3715        body:not(.search-results) .entry-summary h6 {
     3716                margin-top: 3.684210526em;
     3717                margin-bottom: 1.842105263em;
     3718        }
     3719
     3720        body:not(.search-results) .entry-summary h1:first-child,
     3721        body:not(.search-results) .entry-summary h2:first-child,
     3722        body:not(.search-results) .entry-summary h3:first-child,
     3723        body:not(.search-results) .entry-summary h4:first-child,
     3724        body:not(.search-results) .entry-summary h5:first-child,
     3725        body:not(.search-results) .entry-summary h6:first-child {
     3726                margin-top: 0;
     3727        }
     3728
     3729        body:not(.search-results) .entry-summary .alignleft {
     3730                margin: 0.2608695652em 1.5217391304em 1.5217391304em 0;
     3731        }
     3732
     3733        body:not(.search-results) .entry-summary .alignright {
     3734                margin: 0.2608695652em 0 1.5217391304em 1.5217391304em;
     3735        }
     3736
     3737        body:not(.search-results) .entry-summary .aligncenter {
     3738                margin-bottom: 1.5217391304em;
     3739        }
     3740}
     3741
     3742
     3743/**
     3744 * 15.0 - Print
     3745 */
     3746
     3747@media print {
     3748        form,
     3749        button,
     3750        input,
     3751        select,
     3752        textarea,
     3753        .navigation,
     3754        .main-navigation,
     3755        .social-navigation,
     3756        .sidebar,
     3757        .content-bottom-widgets,
     3758        .header-image,
     3759        .page-links,
     3760        .edit-link,
     3761        .comment-respond,
     3762        .comment-edit-link,
     3763        .comment-reply-link,
     3764        .comment-metadata .edit-link,
     3765        .pingback .edit-link {
     3766                display: none;
     3767        }
     3768
     3769        body,
     3770        blockquote cite,
     3771        blockquote small,
     3772        pre,
     3773        .entry-content h4,
     3774        .entry-content h5,
     3775        .entry-content h6,
     3776        .entry-summary h4,
     3777        .entry-summary h5,
     3778        .entry-summary h6,
     3779        .comment-content h4,
     3780        .comment-content h5,
     3781        .comment-content h6,
     3782        .entry-content .author-title {
     3783                font-size: 12pt;
     3784        }
     3785
     3786        blockquote {
     3787                font-size: 14.25pt;
     3788        }
     3789
     3790        .site-title,
     3791        .page-title,
     3792        .comments-title,
     3793        .entry-content h2,
     3794        .entry-summary h2,
     3795        .comment-content h2,
     3796        .widecolumn h2 {
     3797                font-size: 17.25pt;
     3798        }
     3799
     3800        .site-description {
     3801                display: block;
     3802        }
     3803
     3804        .entry-title {
     3805                font-size: 24.75pt;
     3806                line-height: 1.2727272727;
     3807                margin-bottom: 1.696969697em;
     3808        }
     3809
     3810        .format-aside .entry-title,
     3811        .format-image .entry-title,
     3812        .format-video .entry-title,
     3813        .format-quote .entry-title,
     3814        .format-gallery .entry-title,
     3815        .format-status .entry-title,
     3816        .format-link .entry-title,
     3817        .format-audio .entry-title,
     3818        .format-chat .entry-title {
     3819                font-size: 17.25pt;
     3820                line-height: 1.304347826;
     3821                margin-bottom: 1.826086957em;
     3822        }
     3823
     3824        .entry-content h1,
     3825        .entry-summary h1,
     3826        .comment-content h1 {
     3827                font-size: 21pt;
     3828        }
     3829
     3830        .entry-content h3,
     3831        .entry-summary h3,
     3832        .comment-content h3,
     3833        body:not(.search-results) .entry-summary {
     3834                font-size: 14.25pt;
     3835        }
     3836
     3837        .site-description,
     3838        .author-bio,
     3839        .entry-footer,
     3840        .sticky-post,
     3841        .taxonomy-description,
     3842        .entry-caption,
     3843        .comment-metadata,
     3844        .comment-notes,
     3845        .comment-awaiting-moderation,
     3846        .site-info,
     3847        .wp-caption .wp-caption-text,
     3848        .gallery-caption {
     3849                font-size: 9.75pt;
     3850        }
     3851
     3852        body,
     3853        .site {
     3854                background: none !important; /* Brute force since user agents all print differently. */
     3855        }
     3856
     3857        body,
     3858        blockquote cite,
     3859        blockquote small,
     3860        .site-branding .site-title a,
     3861        .entry-title a,
     3862        .comment-author {
     3863                color: #1a1a1a !important; /* Make sure color schemes don't affect to print */
     3864        }
     3865
     3866        blockquote,
     3867        .page-header,
     3868        .comments-title {
     3869                border-color: #1a1a1a !important; /* Make sure color schemes don't affect to print */
     3870        }
     3871
     3872        blockquote,
     3873        .site-description,
     3874        body:not(.search-results) .entry-summary,
     3875        body:not(.search-results) .entry-summary blockquote,
     3876        .author-bio,
     3877        .entry-footer,
     3878        .entry-footer a,
     3879        .sticky-post,
     3880        .taxonomy-description,
     3881        .entry-caption,
     3882        .comment-author,
     3883        .comment-metadata a,
     3884        .comment-notes,
     3885        .comment-awaiting-moderation,
     3886        .site-info,
     3887        .site-info a,
     3888        .wp-caption .wp-caption-text,
     3889        .gallery-caption {
     3890                color: #686868 !important; /* Make sure color schemes don't affect to print */
     3891        }
     3892
     3893        code,
     3894        hr {
     3895                background-color: #d1d1d1 !important; /* Make sure color schemes don't affect to print */
     3896        }
     3897
     3898        pre,
     3899        abbr,
     3900        acronym,
     3901        table,
     3902        th,
     3903        td,
     3904        .author-info,
     3905        .comment-list article,
     3906        .comment-list .pingback,
     3907        .comment-list .trackback,
     3908        .no-comments {
     3909                border-color: #d1d1d1 !important; /* Make sure color schemes don't affect to print */
     3910        }
     3911
     3912        a {
     3913                color: #007acc !important; /* Make sure color schemes don't affect to print */
     3914        }
     3915
     3916        .entry-content a,
     3917        .entry-summary a,
     3918        .taxonomy-description a,
     3919        .comment-content a,
     3920        .pingback .comment-body > a {
     3921                box-shadow: none;
     3922                border-bottom: 1px solid #007acc !important; /* Make sure color schemes don't affect to print */
     3923        }
     3924
     3925        .site {
     3926                margin: 5%;
     3927        }
     3928
     3929        .site-inner {
     3930                max-width: none;
     3931        }
     3932
     3933        .site-header {
     3934                padding: 0 0 1.75em;
     3935        }
     3936
     3937        .site-branding {
     3938                margin-top: 0;
     3939                margin-bottom: 1.75em;
     3940        }
     3941
     3942        .site-main {
     3943                margin-bottom: 3.5em;
     3944        }
     3945
     3946        .entry-header,
     3947        .entry-footer,
     3948        .page-header,
     3949        .page-content,
     3950        .entry-content,
     3951        .entry-summary,
     3952        .post-thumbnail,
     3953        .comments-area {
     3954                margin-right: 0;
     3955                margin-left: 0;
     3956        }
     3957
     3958        .post-thumbnail,
     3959        .site-main > article {
     3960                margin-bottom: 3.5em;
     3961        }
     3962
     3963        .entry-content blockquote.alignleft,
     3964        .entry-content blockquote.alignright {
     3965                border-width: 4px 0 0 0;
     3966                padding: 0.9473684211em 0 0;
     3967                width: -webkit-calc(50% - 0.736842105em);
     3968                width: calc(50% - 0.736842105em);
     3969        }
     3970
     3971        body:not(.search-results) .entry-header + .entry-summary {
     3972                margin-top: -1.473684211em;
     3973        }
     3974
     3975        .site-footer,
     3976        .widecolumn {
     3977                padding: 0;
     3978        }
     3979}
  • src/wp-content/themes/twentysixteen/template-parts/biography.php

     
     1<?php
     2/**
     3 * The template part for displaying an Author biography
     4 *
     5 * @package WordPress
     6 * @subpackage Twenty_Sixteen
     7 * @since Twenty Sixteen 1.0
     8 */
     9?>
     10
     11<div class="author-info">
     12        <div class="author-avatar">
     13                <?php
     14                /**
     15                 * Filter the Twenty Sixteen author bio avatar size.
     16                 *
     17                 * @since Twenty Sixteen 1.0
     18                 *
     19                 * @param int $size The avatar height and width size in pixels.
     20                 */
     21                $author_bio_avatar_size = apply_filters( 'twentysixteen_author_bio_avatar_size', 42 );
     22
     23                echo get_avatar( get_the_author_meta( 'user_email' ), $author_bio_avatar_size );
     24                ?>
     25        </div><!-- .author-avatar -->
     26
     27        <div class="author-description">
     28                <h2 class="author-title"><span class="author-heading"><?php _e( 'Author:', 'twentysixteen' ); ?></span> <?php echo get_the_author(); ?></h2>
     29
     30                <p class="author-bio">
     31                        <?php the_author_meta( 'description' ); ?>
     32                        <a class="author-link" href="<?php echo esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ); ?>" rel="author">
     33                                <?php printf( __( 'View all posts by %s', 'twentysixteen' ), get_the_author() ); ?>
     34                        </a>
     35                </p><!-- .author-bio -->
     36        </div><!-- .author-description -->
     37</div><!-- .author-info -->
  • src/wp-content/themes/twentysixteen/template-parts/content-none.php

     
     1<?php
     2/**
     3 * The template part for displaying a message that posts cannot be found
     4 *
     5 * @package WordPress
     6 * @subpackage Twenty_Sixteen
     7 * @since Twenty Sixteen 1.0
     8 */
     9?>
     10
     11<section class="no-results not-found">
     12        <header class="page-header">
     13                <h1 class="page-title"><?php _e( 'Nothing Found', 'twentysixteen' ); ?></h1>
     14        </header><!-- .page-header -->
     15
     16        <div class="page-content">
     17                <?php if ( is_home() && current_user_can( 'publish_posts' ) ) : ?>
     18
     19                        <p><?php printf( __( 'Ready to publish your first post? <a href="%1$s">Get started here</a>.', 'twentysixteen' ), esc_url( admin_url( 'post-new.php' ) ) ); ?></p>
     20
     21                <?php elseif ( is_search() ) : ?>
     22
     23                        <p><?php _e( 'Sorry, but nothing matched your search terms. Please try again with some different keywords.', 'twentysixteen' ); ?></p>
     24                        <?php get_search_form(); ?>
     25
     26                <?php else : ?>
     27
     28                        <p><?php _e( 'It seems we can&rsquo;t find what you&rsquo;re looking for. Perhaps searching can help.', 'twentysixteen' ); ?></p>
     29                        <?php get_search_form(); ?>
     30
     31                <?php endif; ?>
     32        </div><!-- .page-content -->
     33</section><!-- .no-results -->
  • src/wp-content/themes/twentysixteen/template-parts/content-page.php

     
     1<?php
     2/**
     3 * The template used for displaying page content
     4 *
     5 * @package WordPress
     6 * @subpackage Twenty_Sixteen
     7 * @since Twenty Sixteen 1.0
     8 */
     9?>
     10
     11<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
     12        <header class="entry-header">
     13                <?php the_title( '<h1 class="entry-title">', '</h1>' ); ?>
     14        </header><!-- .entry-header -->
     15
     16        <?php twentysixteen_post_thumbnail(); ?>
     17
     18        <div class="entry-content">
     19                <?php
     20                the_content();
     21
     22                wp_link_pages( array(
     23                        'before'      => '<div class="page-links"><span class="page-links-title">' . __( 'Pages:', 'twentysixteen' ) . '</span>',
     24                        'after'       => '</div>',
     25                        'link_before' => '<span>',
     26                        'link_after'  => '</span>',
     27                        'pagelink'    => '<span class="screen-reader-text">' . __( 'Page', 'twentysixteen' ) . ' </span>%',
     28                        'separator'   => '<span class="screen-reader-text">, </span>',
     29                ) );
     30                ?>
     31        </div><!-- .entry-content -->
     32
     33        <?php
     34                edit_post_link(
     35                        sprintf(
     36                                /* translators: %s: Name of current post */
     37                                __( 'Edit<span class="screen-reader-text"> "%s"</span>', 'twentysixteen' ),
     38                                get_the_title()
     39                        ),
     40                        '<footer class="entry-footer"><span class="edit-link">',
     41                        '</span></footer><!-- .entry-footer -->'
     42                );
     43        ?>
     44
     45</article><!-- #post-## -->
  • src/wp-content/themes/twentysixteen/template-parts/content-search.php

     
     1<?php
     2/**
     3 * The template part for displaying results in search pages
     4 *
     5 * @package WordPress
     6 * @subpackage Twenty_Sixteen
     7 * @since Twenty Sixteen 1.0
     8 */
     9?>
     10
     11<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
     12        <header class="entry-header">
     13                <?php the_title( sprintf( '<h2 class="entry-title"><a href="%s" rel="bookmark">', esc_url( get_permalink() ) ), '</a></h2>' ); ?>
     14        </header><!-- .entry-header -->
     15
     16        <?php twentysixteen_post_thumbnail(); ?>
     17
     18        <?php twentysixteen_excerpt(); ?>
     19
     20        <?php if ( 'post' === get_post_type() ) : ?>
     21
     22                <footer class="entry-footer">
     23                        <?php twentysixteen_entry_meta(); ?>
     24                        <?php
     25                                edit_post_link(
     26                                        sprintf(
     27                                                /* translators: %s: Name of current post */
     28                                                __( 'Edit<span class="screen-reader-text"> "%s"</span>', 'twentysixteen' ),
     29                                                get_the_title()
     30                                        ),
     31                                        '<span class="edit-link">',
     32                                        '</span>'
     33                                );
     34                        ?>
     35                </footer><!-- .entry-footer -->
     36
     37        <?php else : ?>
     38
     39                <?php
     40                        edit_post_link(
     41                                sprintf(
     42                                        /* translators: %s: Name of current post */
     43                                        __( 'Edit<span class="screen-reader-text"> "%s"</span>', 'twentysixteen' ),
     44                                        get_the_title()
     45                                ),
     46                                '<footer class="entry-footer"><span class="edit-link">',
     47                                '</span></footer><!-- .entry-footer -->'
     48                        );
     49                ?>
     50
     51        <?php endif; ?>
     52</article><!-- #post-## -->
     53
  • src/wp-content/themes/twentysixteen/template-parts/content-single.php

     
     1<?php
     2/**
     3 * The template part for displaying single posts
     4 *
     5 * @package WordPress
     6 * @subpackage Twenty_Sixteen
     7 * @since Twenty Sixteen 1.0
     8 */
     9?>
     10
     11<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
     12        <header class="entry-header">
     13                <?php the_title( '<h1 class="entry-title">', '</h1>' ); ?>
     14        </header><!-- .entry-header -->
     15
     16        <?php twentysixteen_excerpt(); ?>
     17
     18        <?php twentysixteen_post_thumbnail(); ?>
     19
     20        <div class="entry-content">
     21                <?php
     22                        the_content();
     23
     24                        wp_link_pages( array(
     25                                'before'      => '<div class="page-links"><span class="page-links-title">' . __( 'Pages:', 'twentysixteen' ) . '</span>',
     26                                'after'       => '</div>',
     27                                'link_before' => '<span>',
     28                                'link_after'  => '</span>',
     29                                'pagelink'    => '<span class="screen-reader-text">' . __( 'Page', 'twentysixteen' ) . ' </span>%',
     30                                'separator'   => '<span class="screen-reader-text">, </span>',
     31                        ) );
     32
     33                        if ( '' !== get_the_author_meta( 'description' ) ) {
     34                                get_template_part( 'template-parts/biography' );
     35                        }
     36                ?>
     37        </div><!-- .entry-content -->
     38
     39        <footer class="entry-footer">
     40                <?php twentysixteen_entry_meta(); ?>
     41                <?php
     42                        edit_post_link(
     43                                sprintf(
     44                                        /* translators: %s: Name of current post */
     45                                        __( 'Edit<span class="screen-reader-text"> "%s"</span>', 'twentysixteen' ),
     46                                        get_the_title()
     47                                ),
     48                                '<span class="edit-link">',
     49                                '</span>'
     50                        );
     51                ?>
     52        </footer><!-- .entry-footer -->
     53</article><!-- #post-## -->
  • src/wp-content/themes/twentysixteen/template-parts/content.php

     
     1<?php
     2/**
     3 * The template part for displaying content
     4 *
     5 * @package WordPress
     6 * @subpackage Twenty_Sixteen
     7 * @since Twenty Sixteen 1.0
     8 */
     9?>
     10
     11<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
     12        <header class="entry-header">
     13                <?php if ( is_sticky() && is_home() && ! is_paged() ) : ?>
     14                        <span class="sticky-post"><?php _e( 'Featured', 'twentysixteen' ); ?></span>
     15                <?php endif; ?>
     16
     17                <?php the_title( sprintf( '<h2 class="entry-title"><a href="%s" rel="bookmark">', esc_url( get_permalink() ) ), '</a></h2>' ); ?>
     18        </header><!-- .entry-header -->
     19
     20        <?php twentysixteen_excerpt(); ?>
     21
     22        <?php twentysixteen_post_thumbnail(); ?>
     23
     24        <div class="entry-content">
     25                <?php
     26                        /* translators: %s: Name of current post */
     27                        the_content( sprintf(
     28                                __( 'Continue reading<span class="screen-reader-text"> "%s"</span>', 'twentysixteen' ),
     29                                get_the_title()
     30                        ) );
     31
     32                        wp_link_pages( array(
     33                                'before'      => '<div class="page-links"><span class="page-links-title">' . __( 'Pages:', 'twentysixteen' ) . '</span>',
     34                                'after'       => '</div>',
     35                                'link_before' => '<span>',
     36                                'link_after'  => '</span>',
     37                                'pagelink'    => '<span class="screen-reader-text">' . __( 'Page', 'twentysixteen' ) . ' </span>%',
     38                                'separator'   => '<span class="screen-reader-text">, </span>',
     39                        ) );
     40                ?>
     41        </div><!-- .entry-content -->
     42
     43        <footer class="entry-footer">
     44                <?php twentysixteen_entry_meta(); ?>
     45                <?php
     46                        edit_post_link(
     47                                sprintf(
     48                                        /* translators: %s: Name of current post */
     49                                        __( 'Edit<span class="screen-reader-text"> "%s"</span>', 'twentysixteen' ),
     50                                        get_the_title()
     51                                ),
     52                                '<span class="edit-link">',
     53                                '</span>'
     54                        );
     55                ?>
     56        </footer><!-- .entry-footer -->
     57</article><!-- #post-## -->