Make WordPress Core

Changeset 59269


Ignore:
Timestamp:
10/22/2024 01:41:10 AM (6 weeks ago)
Author:
peterwilsoncc
Message:

Bundled Themes: Update Twenty Twenty-Five for 6.7 RC 1.

This merges the latest improvements to the Twenty Twenty-Five theme from GitHub into trunk for 6.7 RC 1.

A full list of changes can be found on GitHub: WordPress/twentytwentyfive@e4da8ad...f2dc3fa

Props juanfra, poena, beafialho, areziaal, joen, sergeybiryukov, richtabor, cwhitmore, get_dave, talldanwp, andraganescu, kau-boy, mhkuu, hanneslsm, alaminfirdows, dd32.
See #62264.

Location:
trunk/src/wp-content/themes/twentytwentyfive
Files:
5 added
2 deleted
38 edited
9 moved

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-content/themes/twentytwentyfive/functions.php

    r59146 r59269  
    2020     */
    2121    function twentytwentyfive_post_format_setup() {
    22         add_theme_support( 'post-formats', array( 'audio', 'gallery', 'image', 'link', 'quote', 'video' ) );
     22        add_theme_support( 'post-formats', array( 'aside', 'audio', 'chat', 'gallery', 'image', 'link', 'quote', 'status', 'video' ) );
    2323    }
    2424endif;
     
    122122if ( ! function_exists( 'twentytwentyfive_register_block_bindings' ) ) :
    123123    /**
    124      * Registers the copyright block binding source.
     124     * Registers the post format block binding source.
    125125     *
    126126     * @since Twenty Twenty-Five 1.0
     
    130130    function twentytwentyfive_register_block_bindings() {
    131131        register_block_bindings_source(
    132             'twentytwentyfive/copyright',
     132            'twentytwentyfive/format',
    133133            array(
    134                 'label'              => _x( '© YEAR', 'Label for the copyright placeholder in the editor', 'twentytwentyfive' ),
    135                 'get_value_callback' => 'twentytwentyfive_copyright_binding',
     134                'label'              => _x( 'Post format name', 'Label for the block binding placeholder in the editor', 'twentytwentyfive' ),
     135                'get_value_callback' => 'twentytwentyfive_format_binding',
    136136            )
    137137        );
    138138    }
    139139endif;
     140add_action( 'init', 'twentytwentyfive_register_block_bindings' );
    140141
    141 // Registers block binding callback function for the copyright.
    142 if ( ! function_exists( 'twentytwentyfive_copyright_binding' ) ) :
     142// Registers block binding callback function for the post format name.
     143if ( ! function_exists( 'twentytwentyfive_format_binding' ) ) :
    143144    /**
    144      * Callback function for the copyright block binding source.
     145     * Callback function for the post format name block binding source.
    145146     *
    146147     * @since Twenty Twenty-Five 1.0
    147148     *
    148      * @return string Copyright text.
     149     * @return string|void Post format name, or nothing if the format is 'standard'.
    149150     */
    150     function twentytwentyfive_copyright_binding() {
    151         $copyright_text = sprintf(
    152             /* translators: 1: Copyright symbol or word, 2: Year */
    153             esc_html__( '%1$s %2$s', 'twentytwentyfive' ),
    154             '©',
    155             wp_date( 'Y' )
    156         );
     151    function twentytwentyfive_format_binding() {
     152        $post_format_slug = get_post_format();
    157153
    158         return $copyright_text;
     154        if ( $post_format_slug && 'standard' !== $post_format_slug ) {
     155            return get_post_format_string( $post_format_slug );
     156        }
    159157    }
    160158endif;
    161 add_action( 'init', 'twentytwentyfive_register_block_bindings' );
  • trunk/src/wp-content/themes/twentytwentyfive/patterns/banner-about-book.php

    r59233 r59269  
    2424
    2525            <!-- wp:paragraph {"fontSize":"medium"} -->
    26             <p class="has-medium-font-size"><?php echo esc_html_x( 'This exquisite compilation showcases a diverse array of photographs that capture the essence of different eras and cultures, reflecting the unique styles and perspectives of each artist. Fleckenstein&rsquo;s evocative imagery, Strand&rsquo;s groundbreaking modernist approach, and Kōno&rsquo;s meticulous documentation of Japanese life come together in a harmonious blend that celebrates the art of photography. Each image in &ldquo;The Stories Book&rdquo; is accompanied by insightful commentary, providing historical context and revealing the stories behind the photographs. This collection is not only a visual feast but also a tribute to the power of photography to preserve and narrate the multifaceted experiences of humanity.', 'Pattern placeholder text.', 'twentytwentyfive' ); ?></p>
     26            <p class="has-medium-font-size"><?php echo esc_html_x( 'This exquisite compilation showcases a diverse array of photographs that capture the essence of different eras and cultures, reflecting the unique styles and perspectives of each artist. Fleckenstein’s evocative imagery, Strand’s groundbreaking modernist approach, and Kōno’s meticulous documentation of Japanese life come together in a harmonious blend that celebrates the art of photography. Each image in “The Stories Book” is accompanied by insightful commentary, providing historical context and revealing the stories behind the photographs. This collection is not only a visual feast but also a tribute to the power of photography to preserve and narrate the multifaceted experiences of humanity.', 'Pattern placeholder text.', 'twentytwentyfive' ); ?></p>
    2727            <!-- /wp:paragraph -->
    2828        </div>
  • trunk/src/wp-content/themes/twentytwentyfive/patterns/banner-poster.php

    r59233 r59269  
    2222            <div class="wp-block-column" style="flex-basis:66.66%">
    2323                <!-- wp:heading {"textAlign":"left","align":"wide","style":{"typography":{"fontSize":"12vw","lineHeight":"0.9","fontStyle":"normal","fontWeight":"300"}}} -->
    24                 <h2 class="wp-block-heading alignwide has-text-align-left" style="font-size:12vw;font-style:normal;font-weight:300;line-height:0.9"><?php echo esc_html_x( '&ldquo;Stories, historias, iсторії, iστορίες&rdquo;', 'Sample heading in four languages.', 'twentytwentyfive' ); ?></h2>
     24                <h2 class="wp-block-heading alignwide has-text-align-left" style="font-size:12vw;font-style:normal;font-weight:300;line-height:0.9"><?php echo esc_html_x( '“Stories, historias, iсторії, iστορίες”', 'Sample heading in four languages.', 'twentytwentyfive' ); ?></h2>
    2525                <!-- /wp:heading -->
    2626            </div>
     
    4242            <div class="wp-block-column is-vertically-aligned-bottom" style="flex-basis:66.66%">
    4343                <!-- wp:heading {"textAlign":"left","align":"wide","style":{"typography":{"lineHeight":"0.9","fontStyle":"normal","fontWeight":"300"}},"fontSize":"xx-large"} -->
    44                 <h2 class="wp-block-heading alignwide has-text-align-left has-xx-large-font-size" style="font-style:normal;font-weight:300;line-height:0.9"><?php esc_html_e( 'Let&rsquo;s hear them.', 'twentytwentyfive' ); ?></h2>
     44                <h2 class="wp-block-heading alignwide has-text-align-left has-xx-large-font-size" style="font-style:normal;font-weight:300;line-height:0.9"><?php esc_html_e( 'Lets hear them.', 'twentytwentyfive' ); ?></h2>
    4545                <!-- /wp:heading -->
    4646            </div>
  • trunk/src/wp-content/themes/twentytwentyfive/patterns/cta-events-list.php

    r59191 r59269  
    6262                <div class="wp-block-group">
    6363                    <!-- wp:heading {"level":3} -->
    64                     <h3 class="wp-block-heading"><?php echo esc_html_x( '&ldquo;Stories, historias, iсторії, iστορίες&rdquo;', 'Placeholder heading in four languages.', 'twentytwentyfive' ); ?></h3>
     64                    <h3 class="wp-block-heading"><?php echo esc_html_x( '“Stories, historias, iсторії, iστορίες”', 'Placeholder heading in four languages.', 'twentytwentyfive' ); ?></h3>
    6565                    <!-- /wp:heading -->
    6666
     
    124124                <div class="wp-block-group">
    125125                    <!-- wp:heading {"level":3} -->
    126                     <h3 class="wp-block-heading"><?php echo esc_html_x( '&ldquo;Stories, historias, iсторії, iστορίες&rdquo;', 'Placeholder heading in four languages.', 'twentytwentyfive' ); ?></h3>
     126                    <h3 class="wp-block-heading"><?php echo esc_html_x( '“Stories, historias, iсторії, iστορίες”', 'Placeholder heading in four languages.', 'twentytwentyfive' ); ?></h3>
    127127                    <!-- /wp:heading -->
    128128
  • trunk/src/wp-content/themes/twentytwentyfive/patterns/cta-grid-products-link.php

    r59233 r59269  
    3636
    3737            <!-- wp:image {"aspectRatio":"1","scale":"cover","sizeSlug":"large","linkDestination":"none"} -->
    38             <figure class="wp-block-image size-large"><img src="<?php echo esc_url( get_template_directory_uri() . '/assets/images/image-from-rawpixel-id-8799918.webp' ); ?>" alt="<?php esc_attr_e( 'Closeup of plantlife in the Malibu Canyon area', 'twentytwentyfive' ); ?>" style="aspect-ratio:1;object-fit:cover"/></figure>
     38            <figure class="wp-block-image size-large"><img src="<?php echo esc_url( get_template_directory_uri() . '/assets/images/malibu-plantlife.webp' ); ?>" alt="<?php esc_attr_e( 'Closeup of plantlife in the Malibu Canyon area', 'twentytwentyfive' ); ?>" style="aspect-ratio:1;object-fit:cover"/></figure>
    3939            <!-- /wp:image -->
    4040
     
    6868
    6969            <!-- wp:image {"aspectRatio":"1","scale":"cover","sizeSlug":"large","linkDestination":"none"} -->
    70             <figure class="wp-block-image size-large"><img src="<?php echo esc_url( get_template_directory_uri() . '/assets/images/image-from-rawpixel-id-8802845.webp' ); ?>" alt="<?php esc_attr_e( 'Flora of Akaka Falls State Park', 'twentytwentyfive' ); ?>" style="aspect-ratio:1;object-fit:cover"/></figure>
     70            <figure class="wp-block-image size-large"><img src="<?php echo esc_url( get_template_directory_uri() . '/assets/images/akaka-falls-state-park-flora.webp' ); ?>" alt="<?php esc_attr_e( 'Flora of Akaka Falls State Park', 'twentytwentyfive' ); ?>" style="aspect-ratio:1;object-fit:cover"/></figure>
    7171            <!-- /wp:image -->
    7272
     
    124124
    125125            <!-- wp:image {"aspectRatio":"1","scale":"cover","sizeSlug":"large","linkDestination":"none"} -->
    126             <figure class="wp-block-image size-large"><img src="<?php echo esc_url( get_template_directory_uri() . '/assets/images/image-from-rawpixel-id-2211732.webp' ); ?>" alt="<?php esc_attr_e( 'Black and white flower', 'twentytwentyfive' ); ?>" style="aspect-ratio:1;object-fit:cover"/></figure>
     126            <figure class="wp-block-image size-large"><img src="<?php echo esc_url( get_template_directory_uri() . '/assets/images/star-thristle-flower.webp' ); ?>" alt="<?php esc_attr_e( 'Black and white flower', 'twentytwentyfive' ); ?>" style="aspect-ratio:1;object-fit:cover"/></figure>
    127127            <!-- /wp:image -->
    128128        </div>
  • trunk/src/wp-content/themes/twentytwentyfive/patterns/event-3-col.php

    r59233 r59269  
    3232        <div class="wp-block-column" style="padding-top:var(--wp--preset--spacing--70)">
    3333            <!-- wp:image {"sizeSlug":"full","linkDestination":"none"} -->
    34             <figure class="wp-block-image size-full"><img src="<?php echo esc_url( get_template_directory_uri() . '/assets/images/image-from-rawpixel-id-8802835-jpeg-scaled.webp' ); ?>" alt="<?php esc_attr_e( 'Event image', 'twentytwentyfive' ); ?>"/></figure>
     34            <figure class="wp-block-image size-full"><img src="<?php echo esc_url( get_template_directory_uri() . '/assets/images/ruins-image.webp' ); ?>" alt="<?php esc_attr_e( 'Event image', 'twentytwentyfive' ); ?>"/></figure>
    3535            <!-- /wp:image -->
    3636
     
    5656        <div class="wp-block-column" style="padding-top:var(--wp--preset--spacing--70)">
    5757            <!-- wp:image {"sizeSlug":"full","linkDestination":"none"} -->
    58             <figure class="wp-block-image size-full"><img src="<?php echo esc_url( get_template_directory_uri() . '/assets/images/image-from-rawpixel-id-8802835-jpeg-scaled.webp' ); ?>" alt="<?php esc_attr_e( 'Event image', 'twentytwentyfive' ); ?>"/></figure>
     58            <figure class="wp-block-image size-full"><img src="<?php echo esc_url( get_template_directory_uri() . '/assets/images/ruins-image.webp' ); ?>" alt="<?php esc_attr_e( 'Event image', 'twentytwentyfive' ); ?>"/></figure>
    5959            <!-- /wp:image -->
    6060
     
    8080        <div class="wp-block-column" style="padding-top:var(--wp--preset--spacing--70)">
    8181            <!-- wp:image {"sizeSlug":"full","linkDestination":"none"} -->
    82             <figure class="wp-block-image size-full"><img src="<?php echo esc_url( get_template_directory_uri() . '/assets/images/image-from-rawpixel-id-8802835-jpeg-scaled.webp' ); ?>" alt="<?php esc_attr_e( 'Event image', 'twentytwentyfive' ); ?>"/></figure>
     82            <figure class="wp-block-image size-full"><img src="<?php echo esc_url( get_template_directory_uri() . '/assets/images/ruins-image.webp' ); ?>" alt="<?php esc_attr_e( 'Event image', 'twentytwentyfive' ); ?>"/></figure>
    8383            <!-- /wp:image -->
    8484
  • trunk/src/wp-content/themes/twentytwentyfive/patterns/event-rsvp.php

    r59191 r59269  
    2424            <div class="wp-block-group">
    2525                <!-- wp:heading {"fontSize":"xx-large"} -->
    26                 <h2 class="wp-block-heading has-xx-large-font-size"><?php echo esc_html_x( '&ldquo;Stories, historias, iсторії, iστορίες&rdquo;', 'Placeholder heading in four languages.', 'twentytwentyfive' ); ?></h2>
     26                <h2 class="wp-block-heading has-xx-large-font-size"><?php echo esc_html_x( '“Stories, historias, iсторії, iστορίες”', 'Placeholder heading in four languages.', 'twentytwentyfive' ); ?></h2>
    2727                <!-- /wp:heading -->
    2828
     
    6363        <!-- /wp:group -->
    6464
    65         <!-- wp:cover {"url":"<?php echo esc_url( get_template_directory_uri() ); ?>/assets/images/image-from-rawpixel-id-8812207.webp","dimRatio":0,"overlayColor":"base","isUserOverlayColor":true,"isDark":false,"layout":{"type":"constrained"}} -->
     65        <!-- wp:cover {"url":"<?php echo esc_url( get_template_directory_uri() ); ?>/assets/images/botany-flowers-closeup.webp","dimRatio":0,"overlayColor":"base","isUserOverlayColor":true,"isDark":false,"layout":{"type":"constrained"}} -->
    6666        <div class="wp-block-cover is-light">
    67             <span aria-hidden="true" class="wp-block-cover__background has-base-background-color has-background-dim-0 has-background-dim"></span><img class="wp-block-cover__image-background" alt="<?php esc_attr_e( 'Close up photo of white flowers on a grey background', 'twentytwentyfive' ); ?>" src="<?php echo esc_url( get_template_directory_uri() ); ?>/assets/images/image-from-rawpixel-id-8812207.webp" data-object-fit="cover"/>
     67            <span aria-hidden="true" class="wp-block-cover__background has-base-background-color has-background-dim-0 has-background-dim"></span><img class="wp-block-cover__image-background" alt="<?php esc_attr_e( 'Close up photo of white flowers on a grey background', 'twentytwentyfive' ); ?>" src="<?php echo esc_url( get_template_directory_uri() ); ?>/assets/images/botany-flowers-closeup.webp" data-object-fit="cover"/>
    6868            <div class="wp-block-cover__inner-container">
    6969                <!-- wp:spacer {"height":"var:preset|spacing|20"} -->
  • trunk/src/wp-content/themes/twentytwentyfive/patterns/event-schedule.php

    r59233 r59269  
    8787                                <div class="wp-block-group">
    8888                                    <!-- wp:heading {"level":4} -->
    89                                     <h4 class="wp-block-heading"><a href="#"><?php esc_html_e( 'Things you didn&rsquo;t know about the deep ocean', 'twentytwentyfive' ); ?></a></h4>
     89                                    <h4 class="wp-block-heading"><a href="#"><?php esc_html_e( 'Things you didnt know about the deep ocean', 'twentytwentyfive' ); ?></a></h4>
    9090                                    <!-- /wp:heading -->
    9191                                    <!-- wp:paragraph -->
  • trunk/src/wp-content/themes/twentytwentyfive/patterns/footer-columns.php

    r59191 r59269  
    6363        <!-- wp:group {"align":"full","layout":{"type":"flex","flexWrap":"wrap","justifyContent":"space-between"}} -->
    6464        <div class="wp-block-group alignfull">
    65             <!-- wp:paragraph {"metadata":{"bindings":{"content":{"source":"twentytwentyfive/copyright"}}},"fontSize":"small"} -->
    66             <p class="has-small-font-size"></p>
     65            <!-- wp:paragraph {"fontSize":"small"} -->
     66            <p class="has-small-font-size"><?php esc_html_e( 'Twenty Twenty-Five', 'twentytwentyfive' ); ?></p>
    6767            <!-- /wp:paragraph -->
    6868            <!-- wp:paragraph {"fontSize":"small"} -->
  • trunk/src/wp-content/themes/twentytwentyfive/patterns/footer-newsletter.php

    r59191 r59269  
    3939        <!-- wp:group {"align":"full","layout":{"type":"flex","flexWrap":"wrap","justifyContent":"space-between"}} -->
    4040        <div class="wp-block-group alignfull">
    41             <!-- wp:paragraph {"metadata":{"bindings":{"content":{"source":"twentytwentyfive/copyright"}}},"fontSize":"small"} -->
    42             <p class="has-small-font-size"></p>
     41            <!-- wp:paragraph {"fontSize":"small"} -->
     42            <p class="has-small-font-size"><?php esc_html_e( 'Twenty Twenty-Five', 'twentytwentyfive' ); ?></p>
    4343            <!-- /wp:paragraph -->
    4444            <!-- wp:paragraph {"fontSize":"small"} -->
  • trunk/src/wp-content/themes/twentytwentyfive/patterns/footer.php

    r59191 r59269  
    7272        <!-- wp:group {"align":"full","style":{"spacing":{"blockGap":"var:preset|spacing|20"}},"layout":{"type":"flex","flexWrap":"wrap","justifyContent":"space-between"}} -->
    7373        <div class="wp-block-group alignfull">
    74             <!-- wp:paragraph {"metadata":{"bindings":{"content":{"source":"twentytwentyfive/copyright"}}},"fontSize":"small"} -->
    75             <p class="has-small-font-size"></p>
     74            <!-- wp:paragraph {"fontSize":"small"} -->
     75            <p class="has-small-font-size"><?php esc_html_e( 'Twenty Twenty-Five', 'twentytwentyfive' ); ?></p>
    7676            <!-- /wp:paragraph -->
    77 
    7877            <!-- wp:paragraph {"fontSize":"small"} -->
    7978            <p class="has-small-font-size">
  • trunk/src/wp-content/themes/twentytwentyfive/patterns/format-audio.php

    r59233 r59269  
    1212
    1313?>
    14 <!-- wp:group {"metadata":{"name":"Audio format"},"className":"is-style-section-3","style":{"spacing":{"padding":{"top":"var:preset|spacing|30","bottom":"var:preset|spacing|30","left":"var:preset|spacing|30","right":"var:preset|spacing|30"}}},"layout":{"type":"constrained"}} -->
     14<!-- wp:group {"className":"is-style-section-3","style":{"spacing":{"padding":{"top":"var:preset|spacing|30","bottom":"var:preset|spacing|30","left":"var:preset|spacing|30","right":"var:preset|spacing|30"}}},"layout":{"type":"constrained"}} -->
    1515<div class="wp-block-group is-style-section-3" style="padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)">
    1616    <!-- wp:columns {"isStackedOnMobile":false,"style":{"spacing":{"blockGap":{"left":"var:preset|spacing|30"}}}} -->
     
    1818        <!-- wp:column {"width":"100px"} -->
    1919        <div class="wp-block-column" style="flex-basis:100px"><!-- wp:image {"width":"100px","height":"auto","aspectRatio":"1","scale":"cover","sizeSlug":"full","linkDestination":"none"} -->
    20         <figure class="wp-block-image size-full is-resized"><img src="<?php echo esc_url( get_template_directory_uri() . '/assets/images/image-from-rawpixel-id-8802835-jpeg-scaled.webp' ); ?>" alt="<?php esc_attr_e( 'Event image', 'twentytwentyfive' ); ?>" style="aspect-ratio:1;object-fit:cover;width:100px;height:auto"/></figure>
     20        <figure class="wp-block-image size-full is-resized"><img src="<?php echo esc_url( get_template_directory_uri() . '/assets/images/ruins-image.webp' ); ?>" alt="<?php esc_attr_e( 'Event image', 'twentytwentyfive' ); ?>" style="aspect-ratio:1;object-fit:cover;width:100px;height:auto"/></figure>
    2121        <!-- /wp:image --></div>
    2222        <!-- /wp:column -->
  • trunk/src/wp-content/themes/twentytwentyfive/patterns/format-link.php

    r59233 r59269  
    1212
    1313?>
    14 <!-- wp:group {"metadata":{"name":"Link format"},"className":"is-style-section-3","style":{"spacing":{"padding":{"top":"var:preset|spacing|40","bottom":"var:preset|spacing|40","left":"var:preset|spacing|40","right":"var:preset|spacing|40"}}},"layout":{"type":"constrained"}} -->
     14<!-- wp:group {"className":"is-style-section-3","style":{"spacing":{"padding":{"top":"var:preset|spacing|40","bottom":"var:preset|spacing|40","left":"var:preset|spacing|40","right":"var:preset|spacing|40"}}},"layout":{"type":"constrained"}} -->
    1515<div class="wp-block-group is-style-section-3" style="padding-top:var(--wp--preset--spacing--40);padding-right:var(--wp--preset--spacing--40);padding-bottom:var(--wp--preset--spacing--40);padding-left:var(--wp--preset--spacing--40)">
    1616    <!-- wp:paragraph {"style":{"typography":{"fontStyle":"normal","fontWeight":"700"}}} -->
  • trunk/src/wp-content/themes/twentytwentyfive/patterns/heading-and-paragraph-with-image.php

    r59233 r59269  
    3434            <!-- wp:image {"aspectRatio":"1","scale":"cover","sizeSlug":"full"} -->
    3535            <figure class="wp-block-image size-full">
    36                 <img src="<?php echo esc_url( get_template_directory_uri() . '/assets/images/image-from-rawpixel-id-8802835-jpeg-scaled.webp' ); ?>" alt="<?php echo esc_attr_x( 'Cliff Palace, Colorado', 'Alt text for Overview picture.', 'twentytwentyfive' ); ?>" style="aspect-ratio:1;object-fit:cover"/>
     36                <img src="<?php echo esc_url( get_template_directory_uri() . '/assets/images/ruins-image.webp' ); ?>" alt="<?php echo esc_attr_x( 'Cliff Palace, Colorado', 'Alt text for Overview picture.', 'twentytwentyfive' ); ?>" style="aspect-ratio:1;object-fit:cover"/>
    3737            </figure>
    3838            <!-- /wp:image -->
  • trunk/src/wp-content/themes/twentytwentyfive/patterns/hero-full-width-image.php

    r59233 r59269  
    1313?>
    1414
    15 <!-- wp:cover {"url":"<?php echo esc_url( get_template_directory_uri() ); ?>/assets/images/image-from-rawpixel-id-8802603-original.webp","alt":"Picture of a flower","dimRatio":10,"isUserOverlayColor":true,"focalPoint":{"x":0.5,"y":0.95},"minHeight":840,"minHeightUnit":"px","contentPosition":"bottom center","align":"full","style":{"spacing":{"padding":{"top":"var:preset|spacing|50","bottom":"var:preset|spacing|50","left":"var:preset|spacing|50","right":"var:preset|spacing|50"}}},"layout":{"type":"constrained"}} -->
     15<!-- wp:cover {"url":"<?php echo esc_url( get_template_directory_uri() ); ?>/assets/images/northern-buttercups-flowers.webp","alt":"Picture of a flower","dimRatio":10,"isUserOverlayColor":true,"focalPoint":{"x":0.5,"y":0.95},"minHeight":840,"minHeightUnit":"px","contentPosition":"bottom center","align":"full","style":{"spacing":{"padding":{"top":"var:preset|spacing|50","bottom":"var:preset|spacing|50","left":"var:preset|spacing|50","right":"var:preset|spacing|50"}}},"layout":{"type":"constrained"}} -->
    1616<div class="wp-block-cover alignfull has-custom-content-position is-position-bottom-center" style="padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--50);min-height:840px">
    1717    <span aria-hidden="true" class="wp-block-cover__background has-background-dim-10 has-background-dim"></span>
    18     <img class="wp-block-cover__image-background" alt="<?php echo esc_attr_x( 'Picture of a flower', 'Alt text for cover image.', 'twentytwentyfive' ); ?>" src="<?php echo esc_url( get_template_directory_uri() ); ?>/assets/images/image-from-rawpixel-id-8802603-original.webp" style="object-position:50% 95%" data-object-fit="cover" data-object-position="50% 95%"/>
     18    <img class="wp-block-cover__image-background" alt="<?php echo esc_attr_x( 'Picture of a flower', 'Alt text for cover image.', 'twentytwentyfive' ); ?>" src="<?php echo esc_url( get_template_directory_uri() ); ?>/assets/images/northern-buttercups-flowers.webp" style="object-position:50% 95%" data-object-fit="cover" data-object-position="50% 95%"/>
    1919    <div class="wp-block-cover__inner-container">
    2020        <!-- wp:group {"align":"wide","layout":{"type":"constrained","justifyContent":"left"}} -->
  • trunk/src/wp-content/themes/twentytwentyfive/patterns/hidden-404.php

    r59191 r59269  
    1919            <!-- wp:image {"scale":"cover","sizeSlug":"full","linkDestination":"none"} -->
    2020            <figure class="wp-block-image size-full">
    21                 <img src="<?php echo esc_url( get_template_directory_uri() ); ?>/assets/images/image-from-rawpixel-id-13029755.webp" alt="<?php echo esc_attr_x( 'Small totara tree on ridge above Long Point', 'image description', 'twentytwentyfive' ); ?>" style="object-fit:cover"/>
     21                <img src="<?php echo esc_url( get_template_directory_uri() ); ?>/assets/images/404-image.webp" alt="<?php echo esc_attr_x( 'Small totara tree on ridge above Long Point', 'image description', 'twentytwentyfive' ); ?>" style="object-fit:cover"/>
    2222            </figure>
    2323            <!-- /wp:image -->
  • trunk/src/wp-content/themes/twentytwentyfive/patterns/overlapped-images.php

    r59233 r59269  
    1919        <div class="wp-block-column" style="padding-right:var(--wp--preset--spacing--50);flex-basis:45%">
    2020            <!-- wp:image {"sizeSlug":"full"} -->
    21             <figure class="wp-block-image size-full"><img src="<?php echo esc_url( get_template_directory_uri() ); ?>/assets/images/image-from-rawpixel-id-8799471.webp" alt="<?php esc_attr_e( 'Photography close up of a red flower.', 'twentytwentyfive' ); ?>"/></figure>
     21            <figure class="wp-block-image size-full"><img src="<?php echo esc_url( get_template_directory_uri() ); ?>/assets/images/red-hibiscus-closeup.webp" alt="<?php esc_attr_e( 'Photography close up of a red flower.', 'twentytwentyfive' ); ?>"/></figure>
    2222            <!-- /wp:image -->
    2323            <!-- wp:group {"style":{"spacing":{"margin":{"top":"-12vw"}}},"layout":{"type":"constrained"}} -->
  • trunk/src/wp-content/themes/twentytwentyfive/patterns/page-cv-bio.php

    r59233 r59269  
    2929                    <!-- /wp:heading -->
    3030                    <!-- wp:paragraph {"className":"is-style-text-subtitle"} -->
    31                     <p class="is-style-text-subtitle"><?php echo esc_html_x( 'My name is Nora Winslow Keene, and I&rsquo;m a committed public interest attorney. Living in Denver, Colorado, I&rsquo;ve spent years championing the rights of underrepresented workers. A graduate of Stanford University, I played a key role in securing critical protections for agricultural laborers, ensuring better wages and access to healthcare. My work has focused on advocating for environmental justice and improving the quality of life for rural communities. Every case I take on is driven by the belief that everyone deserves dignity and fair treatment in the workplace.', 'Pattern placeholder text.', 'twentytwentyfive' ); ?></p>
     31                    <p class="is-style-text-subtitle"><?php echo esc_html_x( 'My name is Nora Winslow Keene, and I’m a committed public interest attorney. Living in Denver, Colorado, I’ve spent years championing the rights of underrepresented workers. A graduate of Stanford University, I played a key role in securing critical protections for agricultural laborers, ensuring better wages and access to healthcare. My work has focused on advocating for environmental justice and improving the quality of life for rural communities. Every case I take on is driven by the belief that everyone deserves dignity and fair treatment in the workplace.', 'Pattern placeholder text.', 'twentytwentyfive' ); ?></p>
    3232                    <!-- /wp:paragraph -->
    3333                </div>
  • trunk/src/wp-content/themes/twentytwentyfive/patterns/page-link-in-bio-wide-margins.php

    r59233 r59269  
    3636
    3737                <!-- wp:paragraph -->
    38                 <p><?php echo esc_html_x( 'I&rsquo;m Nora, a dedicated public interest attorney based in Denver. I&rsquo;m a graduate of Stanford University.', 'Pattern placeholder text.', 'twentytwentyfive' ); ?></p>
     38                <p><?php echo esc_html_x( 'I’m Nora, a dedicated public interest attorney based in Denver. I’m a graduate of Stanford University.', 'Pattern placeholder text.', 'twentytwentyfive' ); ?></p>
    3939                <!-- /wp:paragraph -->
    4040
  • trunk/src/wp-content/themes/twentytwentyfive/patterns/page-link-in-bio-with-tight-margins.php

    r59233 r59269  
    4040            <div class="wp-block-group" style="min-height:100%">
    4141                <!-- wp:paragraph {"align":"left","style":{"typography":{"lineHeight":"1.2"}},"fontSize":"x-large"} -->
    42                 <p class="has-text-align-left has-x-large-font-size" style="line-height:1.2"><?php esc_html_e( 'I&rsquo;m Asahachi Kōno, a Japanese&nbsp;photographer, a member of&nbsp;Los Angeles\'s Japanese Camera Pictorialists of California. Before returning to Japan, I worked as a photo retoucher.', 'twentytwentyfive' ); ?></p>
     42                <p class="has-text-align-left has-x-large-font-size" style="line-height:1.2"><?php esc_html_e( 'I’m Asahachi Kōno, a Japanese photographer, a member of Los Angeles’s Japanese Camera Pictorialists of California. Before returning to Japan, I worked as a photo retoucher.', 'twentytwentyfive' ); ?></p>
    4343                <!-- /wp:paragraph -->
    4444
  • trunk/src/wp-content/themes/twentytwentyfive/patterns/page-portfolio-home.php

    r59233 r59269  
    9494    </div>
    9595    <!-- /wp:columns -->
    96        
     96
    9797    <!-- wp:spacer {"height":"var:preset|spacing|30"} -->
    9898    <div style="height:var(--wp--preset--spacing--30)" aria-hidden="true" class="wp-block-spacer"></div>
     
    223223        <!-- wp:group {"align":"wide","layout":{"type":"default"}} -->
    224224        <div class="wp-block-group alignwide">
    225             <!-- wp:paragraph {"metadata":{"bindings":{"content":{"source":"twentytwentyfive/copyright"}}},"textColor":"accent-4","fontSize":"small"} -->
    226             <p class="has-accent-4-color has-text-color has-small-font-size"></p>
     225            <!-- wp:paragraph {""fontSize":"small"} -->
     226            <p class="has-small-font-size"><?php esc_html_e( 'Twenty Twenty-Five', 'twentytwentyfive' ); ?></p>
    227227            <!-- /wp:paragraph -->
    228 
    229228            <!-- wp:paragraph {"fontSize":"small"} -->
    230229            <p class="has-small-font-size"><?php esc_html_e( 'email@example.com', 'twentytwentyfive' ); ?><br><?php echo esc_html_x( '+1 555 349 1806', 'Phone number.', 'twentytwentyfive' ); ?></p>
  • trunk/src/wp-content/themes/twentytwentyfive/patterns/services-3-col.php

    r59233 r59269  
    2525            <!-- wp:image {"aspectRatio":"4/3","scale":"cover","sizeSlug":"full","style":{"spacing":{"margin":{"bottom":"24px"}}}} -->
    2626            <figure class="wp-block-image size-full" style="margin-bottom:24px">
    27                 <img src="<?php echo esc_url( get_template_directory_uri() ); ?>/assets/images/image-from-rawpixel-id-2222755.webp" alt="<?php esc_attr_e( 'Image for service', 'twentytwentyfive' ); ?>" style="aspect-ratio:4/3;object-fit:cover"/>
     27                <img src="<?php echo esc_url( get_template_directory_uri() ); ?>/assets/images/campanula-alliariifolia-flower.webp" alt="<?php esc_attr_e( 'Image for service', 'twentytwentyfive' ); ?>" style="aspect-ratio:4/3;object-fit:cover"/>
    2828            </figure>
    2929            <!-- /wp:image -->
     
    4343            <!-- wp:image {"aspectRatio":"4/3","scale":"cover","sizeSlug":"full","style":{"spacing":{"margin":{"bottom":"24px"}}}} -->
    4444            <figure class="wp-block-image size-full" style="margin-bottom:24px">
    45                 <img src="<?php echo esc_url( get_template_directory_uri() ); ?>/assets/images/image-from-rawpixel-id-2224378.webp" alt="<?php esc_attr_e( 'Image for service', 'twentytwentyfive' ); ?>" style="aspect-ratio:4/3;object-fit:cover"/>
     45                <img src="<?php echo esc_url( get_template_directory_uri() ); ?>/assets/images/delphinium-flowers.webp" alt="<?php esc_attr_e( 'Image for service', 'twentytwentyfive' ); ?>" style="aspect-ratio:4/3;object-fit:cover"/>
    4646            </figure>
    4747            <!-- /wp:image -->
     
    6161            <!-- wp:image {"aspectRatio":"4/3","scale":"cover","sizeSlug":"full","style":{"spacing":{"margin":{"bottom":"24px"}}}} -->
    6262            <figure class="wp-block-image size-full" style="margin-bottom:24px">
    63                 <img src="<?php echo esc_url( get_template_directory_uri() ); ?>/assets/images/image-from-rawpixel-id-2211732.webp" alt="<?php esc_attr_e( 'Image for service', 'twentytwentyfive' ); ?>" style="aspect-ratio:4/3;object-fit:cover"/>
     63                <img src="<?php echo esc_url( get_template_directory_uri() ); ?>/assets/images/star-thristle-flower.webp" alt="<?php esc_attr_e( 'Image for service', 'twentytwentyfive' ); ?>" style="aspect-ratio:4/3;object-fit:cover"/>
    6464            </figure>
    6565            <!-- /wp:image -->
  • trunk/src/wp-content/themes/twentytwentyfive/patterns/template-archive-news-blog.php

    r59146 r59269  
    1313
    1414?>
    15 <!-- wp:template-part {"slug":"header"} /-->
     15<!-- wp:template-part {"slug":"header-large-title"} /-->
    1616
    1717<!-- wp:group {"tagName":"main","layout":{"type":"constrained"}} -->
  • trunk/src/wp-content/themes/twentytwentyfive/patterns/template-home-news-blog.php

    r59233 r59269  
    1313
    1414?>
    15 <!-- wp:template-part {"slug":"header"} /-->
     15<!-- wp:template-part {"slug":"header-large-title"} /-->
    1616
    1717<!-- wp:group {"tagName":"main","layout":{"type":"constrained"}} -->
  • trunk/src/wp-content/themes/twentytwentyfive/patterns/template-home-posts-grid-news-blog.php

    r59191 r59269  
    1212
    1313?>
    14 <!-- wp:template-part {"slug":"header"} /-->
     14<!-- wp:template-part {"slug":"header-large-title"} /-->
    1515
    1616<!-- wp:group {"tagName":"main","style":{"spacing":{"margin":{"top":"0","bottom":"0"}}},"layout":{"type":"default"}} -->
     
    134134<!-- wp:pattern {"slug":"twentytwentyfive/cta-newsletter"} /-->
    135135
    136 <!-- wp:template-part {"slug":"footer-newsletter"} /-->
     136<!-- wp:template-part {"slug":"footer-columns"} /-->
  • trunk/src/wp-content/themes/twentytwentyfive/patterns/template-home-with-sidebar-news-blog.php

    r59191 r59269  
    1313
    1414?>
    15 <!-- wp:template-part {"slug":"header"} /-->
     15<!-- wp:template-part {"slug":"header-large-title"} /-->
    1616
    1717<!-- wp:group {"tagName":"main","style":{"spacing":{"padding":{"top":"var:preset|spacing|50","bottom":"var:preset|spacing|50"},"margin":{"top":"0","bottom":"0"}}},"layout":{"type":"constrained"}} -->
     
    125125<!-- /wp:group -->
    126126
    127 <!-- wp:template-part {"slug":"footer-newsletter"} /-->
     127<!-- wp:template-part {"slug":"footer-columns"} /-->
  • trunk/src/wp-content/themes/twentytwentyfive/patterns/template-single-left-aligned-content.php

    r59268 r59269  
    1313
    1414?>
    15 <!-- wp:template-part {"slug":"header"} /-->
     15<!-- wp:template-part {"slug":"header-large-title"} /-->
    1616
    1717    <!-- wp:group {"tagName":"main","align":"wide","style":{"spacing":{"blockGap":"0"}},"layout":{"type":"default"}} -->
     
    110110    <!-- /wp:group -->
    111111
    112 <!-- wp:template-part {"slug":"footer"} /-->
     112<!-- wp:template-part {"slug":"footer-columns"} /-->
  • trunk/src/wp-content/themes/twentytwentyfive/patterns/template-single-news-blog.php

    r59191 r59269  
    1313
    1414?>
    15 <!-- wp:template-part {"slug":"header"} /-->
     15<!-- wp:template-part {"slug":"header-large-title"} /-->
    1616
    1717<!-- wp:group {"tagName":"main","layout":{"type":"constrained"}} -->
  • trunk/src/wp-content/themes/twentytwentyfive/patterns/template-single-photo-blog.php

    r59191 r59269  
    4040                        <!-- wp:group {"style":{"spacing":{"blockGap":"var:preset|spacing|10"}},"fontSize":"small","layout":{"type":"constrained"}} -->
    4141                        <div class="wp-block-group has-small-font-size">
    42                             <!-- wp:paragraph --><p><?php echo esc_html_x( 'Posted by', 'Prefix before the author name. The post atuhor name is displayed in a separate block on the next line.', 'twentytwentyfive' ); ?></p><!-- /wp:paragraph -->
     42                            <!-- wp:paragraph --><p><?php echo esc_html_x( 'Posted by', 'Prefix before the author name. The post author name is displayed in a separate block on the next line.', 'twentytwentyfive' ); ?></p><!-- /wp:paragraph -->
    4343                            <!-- wp:post-author-name {"isLink":true} /-->
    4444                        </div>
     
    8585        </div>
    8686    <!-- /wp:group -->
    87     <!-- wp:columns {"align":"wide"} -->
    88     <div class="wp-block-columns alignwide">
    89         <!-- wp:column {"width":"66.66%"} -->
    90         <div class="wp-block-column" style="flex-basis:66.66%">
    91             <!-- wp:post-content {"align":"full","layout":{"type":"default"}} /-->
    92         </div>
    93         <!-- /wp:column -->
    94         <!-- wp:column {"width":"33.33%"} -->
    95         <div class="wp-block-column" style="flex-basis:33.33%"></div>
    96         <!-- /wp:column -->
    97     </div>
    98     <!-- /wp:columns -->
     87
     88    <!-- wp:post-content {"align":"wide","layout":{"type":"constrained","justifyContent":"left"}} /-->
     89
    9990    <!-- wp:group {"align":"wide","layout":{"type":"constrained","justifyContent":"left"}} -->
    10091    <div class="wp-block-group alignwide">
  • trunk/src/wp-content/themes/twentytwentyfive/patterns/testimonials-2-col.php

    r59233 r59269  
    3434                    <blockquote class="wp-block-quote is-style-plain has-x-large-font-size" style="font-style:normal;font-weight:400">
    3535                        <!-- wp:paragraph {"style":{"typography":{"lineHeight":"1.1"}}} -->
    36                         <p style="line-height:1.1"><?php echo esc_html_x( '&ldquo;Superb product and customer service!&rdquo;', 'Sample testimonial.', 'twentytwentyfive' ); ?></p>
     36                        <p style="line-height:1.1"><?php echo esc_html_x( '“Superb product and customer service!”', 'Sample testimonial.', 'twentytwentyfive' ); ?></p>
    3737                        <!-- /wp:paragraph -->
    3838                        <cite><?php echo wp_kses_post( _x( 'Jo Mulligan <br /><sub>Atlanta, GA</sub>', 'Sample testimonial citation.', 'twentytwentyfive' ) ); ?></cite>
     
    6363                    <blockquote class="wp-block-quote is-style-plain has-x-large-font-size" style="font-style:normal;font-weight:400">
    6464                        <!-- wp:paragraph {"style":{"typography":{"lineHeight":"1.1"}}} -->
    65                         <p style="line-height:1.1"><?php echo esc_html_x( '&ldquo;Amazing quality and care. I love all your products.&rdquo;', 'Sample testimonial.', 'twentytwentyfive' ); ?></p>
     65                        <p style="line-height:1.1"><?php echo esc_html_x( '“Amazing quality and care. I love all your products.”', 'Sample testimonial.', 'twentytwentyfive' ); ?></p>
    6666                        <!-- /wp:paragraph -->
    6767                        <cite><?php echo wp_kses_post( _x( 'Otto Reid <br><sub>Springfield, IL</sub>', 'Sample testimonial citation.', 'twentytwentyfive' ) ); ?></cite>
  • trunk/src/wp-content/themes/twentytwentyfive/patterns/testimonials-6-col.php

    r59191 r59269  
    2828                <div class="wp-block-group" style="margin-top:0;margin-bottom:0;padding-top:0;padding-right:0;padding-bottom:0;padding-left:0">
    2929                    <!-- wp:paragraph {"style":{"typography":{"lineHeight":"1.1"}}} -->
    30                     <p style="line-height:1.1"><?php echo esc_html_x( '&ldquo;Amazing quality and care. I love all your products.&rdquo;', 'Sample testimonial.', 'twentytwentyfive' ); ?></p>
     30                    <p style="line-height:1.1"><?php echo esc_html_x( '“Amazing quality and care. I love all your products.”', 'Sample testimonial.', 'twentytwentyfive' ); ?></p>
    3131                    <!-- /wp:paragraph -->
    3232                </div>
     
    4545                <div class="wp-block-group" style="margin-top:0;margin-bottom:0;padding-top:0;padding-right:0;padding-bottom:0;padding-left:0">
    4646                    <!-- wp:paragraph {"style":{"typography":{"lineHeight":"1.1"}}} -->
    47                     <p style="line-height:1.1"><?php echo esc_html_x( '&ldquo;Amazing quality and care. I love all your products.&rdquo;', 'Sample testimonial.', 'twentytwentyfive' ); ?></p>
     47                    <p style="line-height:1.1"><?php echo esc_html_x( '“Amazing quality and care. I love all your products.”', 'Sample testimonial.', 'twentytwentyfive' ); ?></p>
    4848                    <!-- /wp:paragraph -->
    4949                </div>
     
    6262                <div class="wp-block-group" style="margin-top:0;margin-bottom:0;padding-top:0;padding-right:0;padding-bottom:0;padding-left:0">
    6363                    <!-- wp:paragraph {"style":{"typography":{"lineHeight":"1.1"}}} -->
    64                     <p style="line-height:1.1"><?php echo esc_html_x( '&ldquo;Amazing quality and care. I love all your products.&rdquo;', 'Sample testimonial.', 'twentytwentyfive' ); ?></p>
     64                    <p style="line-height:1.1"><?php echo esc_html_x( '“Amazing quality and care. I love all your products.”', 'Sample testimonial.', 'twentytwentyfive' ); ?></p>
    6565                    <!-- /wp:paragraph -->
    6666                </div>
     
    8383                <div class="wp-block-group" style="margin-top:0;margin-bottom:0;padding-top:0;padding-right:0;padding-bottom:0;padding-left:0">
    8484                    <!-- wp:paragraph {"style":{"typography":{"lineHeight":"1.1"}}} -->
    85                     <p style="line-height:1.1"><?php echo esc_html_x( '&ldquo;Amazing quality and care. I love all your products.&rdquo;', 'Sample testimonial.', 'twentytwentyfive' ); ?></p>
     85                    <p style="line-height:1.1"><?php echo esc_html_x( '“Amazing quality and care. I love all your products.”', 'Sample testimonial.', 'twentytwentyfive' ); ?></p>
    8686                    <!-- /wp:paragraph -->
    8787                </div>
     
    9999                <div class="wp-block-group" style="margin-top:0;margin-bottom:0;padding-top:0;padding-right:0;padding-bottom:0;padding-left:0">
    100100                    <!-- wp:paragraph {"style":{"typography":{"lineHeight":"1.1"}}} -->
    101                     <p style="line-height:1.1"><?php echo esc_html_x( '&ldquo;Amazing quality and care. I love all your products.&rdquo;', 'Sample testimonial.', 'twentytwentyfive' ); ?></p>
     101                    <p style="line-height:1.1"><?php echo esc_html_x( '“Amazing quality and care. I love all your products.”', 'Sample testimonial.', 'twentytwentyfive' ); ?></p>
    102102                    <!-- /wp:paragraph -->
    103103                </div>
     
    114114                <div class="wp-block-group" style="margin-top:0;margin-bottom:0;padding-top:0;padding-right:0;padding-bottom:0;padding-left:0">
    115115                    <!-- wp:paragraph {"style":{"typography":{"lineHeight":"1.1"}}} -->
    116                     <p style="line-height:1.1"><?php echo esc_html_x( '&ldquo;Amazing quality and care. I love all your products.&rdquo;', 'Sample testimonial.', 'twentytwentyfive' ); ?></p>
     116                    <p style="line-height:1.1"><?php echo esc_html_x( '“Amazing quality and care. I love all your products.”', 'Sample testimonial.', 'twentytwentyfive' ); ?></p>
    117117                    <!-- /wp:paragraph -->
    118118                </div>
  • trunk/src/wp-content/themes/twentytwentyfive/patterns/testimonials-large.php

    r59191 r59269  
    3030                    <div class="wp-block-group" style="margin-top:0;margin-bottom:0;padding-top:0;padding-right:0;padding-bottom:0;padding-left:0">
    3131                        <!-- wp:paragraph {"fontSize":"xx-large"} -->
    32                         <p class="has-xx-large-font-size"><?php echo esc_html_x( '&ldquo;Superb product and customer service!&rdquo;', 'Sample testimonial.', 'twentytwentyfive' ); ?></p>
     32                        <p class="has-xx-large-font-size"><?php echo esc_html_x( '“Superb product and customer service!”', 'Sample testimonial.', 'twentytwentyfive' ); ?></p>
    3333                        <!-- /wp:paragraph -->
    3434                    </div>
  • trunk/src/wp-content/themes/twentytwentyfive/patterns/vertical-header.php

    r59233 r59269  
    66 * Block Types: core/template-part/vertical-header
    77 * Description: Vertical Header with site title and navigation
     8 * Viewport width: 300
    89 *
    910 * @package WordPress
  • trunk/src/wp-content/themes/twentytwentyfive/readme.txt

    r59233 r59269  
    9797Northern Buttercups.
    9898Free public domain CC0 image.
    99 image-from-rawpixel-id-8802603-original.webp
     99northern-buttercups-flowers.webp
    100100https://www.rawpixel.com/image/8802603
    101101
     
    103103Small totara tree on ridge above Long Point, Porirua Harbour, by Leslie Adkin.
    104104Free public domain CC0 image.
    105 image-from-rawpixel-id-13029755.webp
     105404-image.webp
    106106https://www.rawpixel.com/image/13029755
    107107
     
    113113Delphinium (Larkspur).
    114114Free public domain CC0 image.
    115 image-from-rawpixel-id-2224378.webp
     115delphinium-flowers.webp
    116116https://www.rawpixel.com/image/2224378
    117117
    118118Campanula Alliariifolia (Cornish Bellflower).
    119119Free public domain CC0 image.
    120 image-from-rawpixel-id-2222755.webp
     120campanula-alliariifolia-flower.webp
    121121https://www.rawpixel.com/image/2222755
    122122
    123123Centaurea Ruthenica(Star Thristle).
    124124Free public domain CC0 image.
    125 image-from-rawpixel-id-2211732.webp
     125star-thristle-flower.webp
    126126https://www.rawpixel.com/image/2211732
    127127
     
    129129Free public domain CC0 image.
    130130botany-flowers.webp
    131 image-from-rawpixel-id-8812207.webp
     131botany-flowers-closeup.webp
    132132https://www.rawpixel.com/image/8812207
    133133
     
    165165Free public domain CC0 image.
    166166poster-image-background.webp
    167 image-from-rawpixel-id-8802835-jpeg-scaled.webp
     167ruins-image.webp
    168168https://www.rawpixel.com/image/8802835
    169169
     
    178178Free public domain CC0 image.
    179179grid-flower-1.webp
     180red-hibiscus-closeup.webp
    180181https://www.rawpixel.com/image/8799471
    181182
     
    244245Flora of Akaka Falls State Park.
    245246Free public domain CC0 image.
    246 image-from-rawpixel-id-8802845.webp
     247akaka-falls-state-park-flora.webp
    247248https://www.rawpixel.com/image/8802845
    248249
    249250Closeup of plantlife in the Malibu Canyon area of the Santa Monica Mountains.
    250251Free public domain CC0 image.
    251 image-from-rawpixel-id-8799918.webp
     252malibu-plantlife.webp
    252253https://www.rawpixel.com/image/8799918
  • trunk/src/wp-content/themes/twentytwentyfive/styles/blocks/03-annotation.json

    r59146 r59269  
    66    "blockTypes": ["core/heading", "core/paragraph"],
    77    "styles": {
    8         "css": "display: inline-flex",
     8        "css": "width: fit-content",
    99        "typography": {
    1010            "fontSize": "var:preset|font-size|small",
  • trunk/src/wp-content/themes/twentytwentyfive/theme.json

    r59233 r59269  
    14671467        },
    14681468        {
     1469            "area": "header",
     1470            "name": "header-large-title",
     1471            "title": "Header with large title"
     1472
     1473        },
     1474        {
    14691475            "area": "footer",
    14701476            "name": "footer",
    14711477            "title": "Footer"
     1478        },
     1479        {
     1480            "area": "footer",
     1481            "name": "footer-columns",
     1482            "title": "Footer Columns"
    14721483        },
    14731484        {
Note: See TracChangeset for help on using the changeset viewer.