Changeset 7362 for sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-main/page-about-history.php
- Timestamp:
- 07/03/2018 01:54:51 AM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-main/page-about-history.php
r7350 r7362 33 33 <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>> 34 34 <header class="entry-header"> 35 < h1 class="entry-title col-8"><?php the_title(); ?></h1>35 <?php the_title( '<h1 class="entry-title col-8">', '</h1>' ); ?> 36 36 </header><!-- .entry-header --> 37 37 38 38 <div class="entry-content row"> 39 39 <section class="col-8"> 40 <p> We’ve been working on a new book about the history of WordPress drawing on dozens of interviews with the original folks involved and extensive research. It’s not ready yet, but for the tenth anniversary of WordPress we’d like to make a chapter available, <em>On forking WordPress, forks in general, early WordPress, and the community</em>, which you can download below in the following formats:</p>40 <p><?php echo wp_kses_post( __( 'We’ve been working on a new book about the history of WordPress drawing on dozens of interviews with the original folks involved and extensive research. It’s not ready yet, but for the tenth anniversary of WordPress we’d like to make a chapter available, <em>On forking WordPress, forks in general, early WordPress, and the community</em>, which you can download below in the following formats:', 'wporg' ) ); ?></p> 41 41 42 42 <ul> 43 <li><a href="chapter3.epub">Chapter 3 - EPUB</a></li> 44 <li><a href="chapter3.mobi">Chapter 3 - MOBI</a></li> 45 <li><a href="chapter3.pdf">Chapter 3 - PDF</a></li> 43 <li> 44 <a href="chapter3.epub"> 45 <?php 46 /* translators: file format */ 47 printf( __( 'Chapter 3 &endash; %s', 'wporg' ), 'EPUB' ); 48 ?> 49 </a> 50 </li> 51 <li> 52 <a href="chapter3.mobi"> 53 <?php 54 /* translators: file format */ 55 printf( __( 'Chapter 3 &endash; %s', 'wporg' ), 'MOBI' ); 56 ?> 57 </a> 58 </li> 59 <li> 60 <a href="chapter3.pdf"> 61 <?php 62 /* translators: file format */ 63 printf( __( 'Chapter 3 &endash; %s', 'wporg' ), 'PDF' ); 64 ?> 65 </a> 66 </li> 46 67 </ul> 47 68 </section> 48 69 </div><!-- .entry-content --> 49 50 70 </article><!-- #post-## --> 51 71
Note: See TracChangeset
for help on using the changeset viewer.