Changeset 51356 for trunk/src/wp-admin/about.php
- Timestamp:
- 07/06/2021 06:37:16 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/about.php
r51264 r51356 51 51 52 52 <div class="about__section has-2-columns is-wider-left"> 53 <div class="column about__image has-subtle-background-color"></div> 53 <div class="column about__image is-vertically-aligned-center is-edge-to-edge"> 54 <img src="https://make.wordpress.org/core/files/2021/07/about-58-widgets-blocks.png" alt="" /> 55 </div> 54 56 <div class="column"> 55 57 <h3> … … 85 87 </p> 86 88 </div> 87 <div class="column about__image has-subtle-background-color"></div> 89 <div class="column about__image is-vertically-aligned-center is-edge-to-edge"> 90 <img src="https://make.wordpress.org/core/files/2021/07/about-58-patterns.png" alt="" /> 91 </div> 88 92 </div> 89 93 … … 91 95 92 96 <div class="about__section has-2-columns is-wider-left"> 93 <div class="column about__image has-subtle-background-color"></div> 97 <div class="column about__image is-vertically-aligned-center is-edge-to-edge"> 98 <img src="https://make.wordpress.org/core/files/2021/07/about-58-template.png" alt="" /> 99 </div> 94 100 <div class="column"> 95 101 <h3> … … 113 119 114 120 <div class="about__section has-2-columns is-wider-left"> 115 <div class="column about__image has-subtle-background-color"></div> 121 <div class="column about__image is-vertically-aligned-center is-edge-to-edge"> 122 <img src="https://make.wordpress.org/core/files/2021/07/about-58-list-view.png" alt="" /> 123 </div> 116 124 <div class="column"> 117 125 <h3> … … 139 147 </p> 140 148 </div> 141 <div class="column about__image has-subtle-background-color"></div> 149 <div class="column about__image is-vertically-aligned-center is-edge-to-edge"> 150 <img src="https://make.wordpress.org/core/files/2021/07/about-58-pattern-suggestions.png" alt="" /> 151 </div> 142 152 </div> 143 153 … … 145 155 146 156 <div class="about__section has-2-columns is-wider-left"> 147 <div class="column about__image has-subtle-background-color"></div> 157 <div class="column about__image is-vertically-aligned-center is-edge-to-edge"> 158 <img src="https://make.wordpress.org/core/files/2021/07/about-58-duotone.png" alt="" /> 159 </div> 148 160 <div class="column"> 149 161 <h3> … … 164 176 <?php _e( 'For Developers to Explore' ); ?> 165 177 </h2> 166 <div class="column about__image has-subtle-background-color" style="margin:32px 0;height:360px;"></div> 178 <div class="column about__image is-vertically-aligned-center is-edge-to-edge"> 179 <img src="https://make.wordpress.org/core/files/2021/07/about-58-theme-json.png" alt="" /> 180 </div> 167 181 </div> 168 182 … … 174 188 <p> 175 189 <?php 176 _e( 'Introducing the Global Styles and Global Settings APIs: control the editor settings, available customization tools, and style blocks using a theme.json file in the active theme. This configuration file enables or disables features and sets default styles for both a website and blocks. If you build themes, you can experiment with this early iteration of a useful new feature. For more about what is currently available and how it works, check out this dev note.' ); 190 printf( 191 /* translators: %s: Theme.json dev note link. */ 192 __( 'Introducing the Global Styles and Global Settings APIs: control the editor settings, available customization tools, and style blocks using a theme.json file in the active theme. This configuration file enables or disables features and sets default styles for both a website and blocks. If you build themes, you can experiment with this early iteration of a useful new feature. For more about what is currently available and how it works, <a href="%s">check out this dev note</a>.' ), 193 '#' 194 ); 177 195 ?> 178 196 </p> … … 214 232 <?php 215 233 printf( 216 /* translators: %1$s: Link to 5.6's block dev notes. %2$s: Link to 5.7's block dev notes. % 1$s: Link to 5.8's block dev notes. */217 __( 'Expanding on previously implemented block supports in WordPress <a href="%1$s">5.6</a> and <a href="%2$s">5.7</a>, WordPress 5.8 introduces several new block <code>supports</code>flags and new options to customize your registered blocks. More information is available in the <a href="%3$s">block supports dev note</a>.' ),234 /* translators: %1$s: Link to 5.6's block dev notes. %2$s: Link to 5.7's block dev notes. %3$s: Link to 5.8's block dev notes. */ 235 __( 'Expanding on previously implemented block supports in WordPress <a href="%1$s">5.6</a> and <a href="%2$s">5.7</a>, WordPress 5.8 introduces several new block support flags and new options to customize your registered blocks. More information is available in the <a href="%3$s">block supports dev note</a>.' ), 218 236 'https://make.wordpress.org/core/2020/11/18/block-supports-in-wordpress-5-6/', 219 237 'https://make.wordpress.org/core/2021/02/24/changes-to-block-editor-components-and-blocks/',
Note: See TracChangeset
for help on using the changeset viewer.