-
diff --git wordpress.org/public_html/wp-content/themes/pub/wporg-main/css/tools/_tools.scss wordpress.org/public_html/wp-content/themes/pub/wporg-main/css/tools/_tools.scss
index ad2cd1a1e..0129337d7 100644
|
|
|
1 | 1 | @import "../../../wporg/css/tools/breakpoint"; |
| 2 | @import "../../../wporg/css/tools/functions"; |
2 | 3 | @import "../../../wporg/css/tools/kube"; |
3 | 4 | @import "../../../wporg/css/tools/modular-scale"; |
-
diff --git wordpress.org/public_html/wp-content/themes/pub/wporg-main/functions.php wordpress.org/public_html/wp-content/themes/pub/wporg-main/functions.php
index 502402833..8b463bbbd 100644
|
|
function scripts() { |
91 | 91 | wp_enqueue_script( 'wporg-page-stats', get_theme_file_uri( '/js/page-stats.js' ), [ 'jquery', 'google-charts' ], 2, true ); |
92 | 92 | wp_localize_script( 'wporg-page-stats', 'wporgPageStats', [ |
93 | 93 | 'trunk' => number_format( WP_CORE_STABLE_BRANCH + 0.1, 1 ), /* trunk */ |
94 | | 'wpVersions' => __( 'WordPress Version', 'wporg' ), |
95 | | 'phpVersions' => __( 'PHP Versions', 'wporg' ), |
96 | | 'mysqlVersions' => __( 'MySQL Version', 'wporg' ), |
97 | | 'locales' => __( 'Locales', 'wporg' ), |
98 | 94 | ] ); |
99 | 95 | } |
100 | 96 | |
-
diff --git wordpress.org/public_html/wp-content/themes/pub/wporg-main/js/page-stats.js wordpress.org/public_html/wp-content/themes/pub/wporg-main/js/page-stats.js
index e48b068a9..56927d808 100644
|
|
|
12 | 12 | } |
13 | 13 | } |
14 | 14 | |
15 | | drawGraph( data, 'wp_versions', wporgPageStats.wpVersions, 'Version', 'versions' ); |
| 15 | drawGraph( data, 'wp_versions', 'Version', 'versions' ); |
16 | 16 | }; |
17 | 17 | window.drawPhpVersionsGraph = function( data ) { |
18 | | drawGraph( data, 'php_versions', wporgPageStats.phpVersions, 'Version', 'versions' ); |
| 18 | drawGraph( data, 'php_versions', 'Version', 'versions' ); |
19 | 19 | }; |
20 | 20 | window.drawMysqlVersionsGraph = function( data ) { |
21 | 21 | delete data[ '12.0' ]; |
22 | | drawGraph( data, 'mysql_versions', wporgPageStats.mysqlVersions, 'Version', 'versions' ); |
| 22 | drawGraph( data, 'mysql_versions', 'Version', 'versions' ); |
23 | 23 | }; |
24 | 24 | window.drawLocalesGraph = function( data ) { |
25 | | drawGraph( data, 'locales', wporgPageStats.locales, 'Locale', 'alphabeticaly' ); |
| 25 | drawGraph( data, 'locales', 'Locale', 'alphabeticaly' ); |
26 | 26 | }; |
27 | 27 | |
28 | 28 | function drawCharts() { |
… |
… |
|
40 | 40 | getStatsData( 'https://api.wordpress.org/stats/locale/1.0/', 'drawLocalesGraph' ); |
41 | 41 | } |
42 | 42 | |
43 | | function drawGraph( data, id, title, colName, sort ) { |
| 43 | function drawGraph( data, id, colName, sort ) { |
44 | 44 | var tableData = [], others = null, chart, chartData, chartOptions; |
45 | 45 | |
46 | 46 | for ( var type in data ) { |
… |
… |
|
125 | 125 | ], |
126 | 126 | height: 450, |
127 | 127 | is3D: false, |
128 | | title: title, |
129 | 128 | chartArea: { |
130 | 129 | top: 65, |
131 | 130 | bottom: 60, |
132 | 131 | width: '100%', |
133 | 132 | height: '100%', |
134 | 133 | }, |
135 | | titleTextStyle: { |
136 | | fontSize: 14, |
137 | | color: '#23282d', |
138 | | bold: true |
139 | | }, |
140 | 134 | legend: { |
141 | 135 | position: 'right', |
142 | 136 | alignment: 'center', |
-
diff --git wordpress.org/public_html/wp-content/themes/pub/wporg-main/page-about-accessibility.php wordpress.org/public_html/wp-content/themes/pub/wporg-main/page-about-accessibility.php
index 088dc77e6..8ff4336f0 100644
|
|
the_post(); |
31 | 31 | <main id="main" class="site-main col-12" role="main"> |
32 | 32 | |
33 | 33 | <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>> |
34 | | <header class="entry-header"> |
| 34 | <header class="entry-header row"> |
35 | 35 | <h1 class="entry-title col-8"><?php the_title(); ?></h1> |
36 | 36 | </header><!-- .entry-header --> |
37 | 37 | |
… |
… |
the_post(); |
61 | 61 | ?> |
62 | 62 | </p> |
63 | 63 | |
64 | | <h3><?php esc_html_e( 'The Accessibility Team', 'wporg' ); ?></h3> |
| 64 | <h2><?php esc_html_e( 'The Accessibility Team', 'wporg' ); ?></h2> |
65 | 65 | <p> |
66 | 66 | <?php |
67 | 67 | printf( |
… |
… |
the_post(); |
96 | 96 | ?> |
97 | 97 | </p> |
98 | 98 | |
99 | | <h3> |
| 99 | <h2> |
100 | 100 | <?php |
101 | 101 | /* translators: ATAG: Authoring Tool Accessibility Guidelines; https://www.w3.org/TR/ATAG20/ */ |
102 | 102 | esc_html_e( 'ATAG Statement', 'wporg' ); |
103 | 103 | ?> |
104 | | </h3> |
| 104 | </h2> |
105 | 105 | <p> |
106 | 106 | <?php |
107 | 107 | printf( |
-
diff --git wordpress.org/public_html/wp-content/themes/pub/wporg-main/page-about-domains.php wordpress.org/public_html/wp-content/themes/pub/wporg-main/page-about-domains.php
index 7a970662b..ce924cc25 100644
|
|
the_post(); |
31 | 31 | <main id="main" class="site-main col-12" role="main"> |
32 | 32 | |
33 | 33 | <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>> |
34 | | <header class="entry-header"> |
| 34 | <header class="entry-header row"> |
35 | 35 | <h1 class="entry-title col-8"><?php the_title(); ?></h1> |
36 | 36 | </header><!-- .entry-header --> |
37 | 37 | |
-
diff --git wordpress.org/public_html/wp-content/themes/pub/wporg-main/page-about-features.php wordpress.org/public_html/wp-content/themes/pub/wporg-main/page-about-features.php
index a6f44b16e..8b990dd35 100644
|
|
the_post(); |
31 | 31 | <main id="main" class="site-main col-12" role="main"> |
32 | 32 | |
33 | 33 | <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>> |
34 | | <header class="entry-header"> |
| 34 | <header class="entry-header row"> |
35 | 35 | <h1 class="entry-title col-8"><?php the_title(); ?></h1> |
36 | 36 | </header><!-- .entry-header --> |
37 | 37 | |
… |
… |
the_post(); |
197 | 197 | </li> |
198 | 198 | </ul> |
199 | 199 | |
200 | | <h3 id="developer"><?php echo esc_html_x( 'Developer Features', 'Features page: Section Header', 'wporg' ); ?></h3> |
| 200 | <h2 id="developer" ><?php echo esc_html_x( 'Developer Features', 'Features page: Section Header', 'wporg' ); ?></h2> |
201 | 201 | <p><?php esc_html_e( 'For developers, we’ve got lots of goodies packed under the hood that you can use to extend WordPress in whatever direction takes your fancy.', 'wporg' ); ?></p> |
202 | 202 | |
203 | 203 | <ul> |
-
diff --git wordpress.org/public_html/wp-content/themes/pub/wporg-main/page-about-history.php wordpress.org/public_html/wp-content/themes/pub/wporg-main/page-about-history.php
index e002c2691..ef81f859a 100644
|
|
$date_format = get_option( 'date_format' ); |
33 | 33 | <main id="main" class="site-main col-12" role="main"> |
34 | 34 | |
35 | 35 | <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>> |
36 | | <header class="entry-header"> |
| 36 | <header class="entry-header row"> |
37 | 37 | <?php the_title( '<h1 class="entry-title col-8">', '</h1>' ); ?> |
38 | 38 | </header><!-- .entry-header --> |
39 | 39 | |
… |
… |
$date_format = get_option( 'date_format' ); |
68 | 68 | </li> |
69 | 69 | </ul> |
70 | 70 | |
71 | | <h3><?php esc_html_e( 'Jazzers and Release Dates', 'wporg' ); ?></h3> |
| 71 | <h2><?php esc_html_e( 'Jazzers and Release Dates', 'wporg' ); ?></h2> |
72 | 72 | |
73 | 73 | <p> |
74 | 74 | <?php |
-
diff --git wordpress.org/public_html/wp-content/themes/pub/wporg-main/page-about-logos.php wordpress.org/public_html/wp-content/themes/pub/wporg-main/page-about-logos.php
index 432fd3abb..25e16fdb4 100644
|
|
the_post(); |
31 | 31 | <main id="main" class="site-main col-12" role="main"> |
32 | 32 | |
33 | 33 | <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>> |
34 | | <header class="entry-header"> |
| 34 | <header class="entry-header row"> |
35 | 35 | <h1 class="entry-title col-8"><?php the_title(); ?></h1> |
36 | 36 | </header><!-- .entry-header --> |
37 | 37 | |
38 | 38 | <div class="entry-content row"> |
39 | 39 | <section class="col-8"> |
40 | | <h3 class="graphics"><?php esc_html_e( 'Official WordPress Logo', 'wporg' ); ?></h3> |
| 40 | <h2><?php esc_html_e( 'Official WordPress Logo', 'wporg' ); ?></h2> |
41 | 41 | <p> |
42 | 42 | <?php |
43 | 43 | /* translators: Link to Trademark Policy of WordPress Foundation */ |
… |
… |
the_post(); |
45 | 45 | ?> |
46 | 46 | </p> |
47 | 47 | |
48 | | <h3 class="graphics"><?php esc_html_e( 'Downloads', 'wporg' ); ?></h3> |
| 48 | <h2><?php esc_html_e( 'Downloads', 'wporg' ); ?></h2> |
49 | 49 | |
50 | 50 | <section class="all-logos col-12 row gutters"> |
51 | 51 | <div class="logo col-4" id="logo-all"> |
… |
… |
the_post(); |
124 | 124 | </div> |
125 | 125 | </section> |
126 | 126 | |
127 | | <h3 class="graphics"><?php esc_html_e( 'Fight the Fake Logo (Fauxgo)', 'wporg' ); ?></h3> |
| 127 | <h2><?php esc_html_e( 'Fight the Fake Logo (Fauxgo)', 'wporg' ); ?></h2> |
128 | 128 | <p><?php esc_html_e( 'Friends don’t let friends use the wrong WordPress logo. If you see one of these in the wild, please suggest a change.', 'wporg' ); ?></p> |
129 | 129 | <img class="aligncenter" src="//s.w.org/about/images/logo-comparison.png" width="500" /> |
130 | 130 | </section> |
-
diff --git wordpress.org/public_html/wp-content/themes/pub/wporg-main/page-about-philosophy.php wordpress.org/public_html/wp-content/themes/pub/wporg-main/page-about-philosophy.php
index 2ff333512..261f550b2 100644
|
|
the_post(); |
31 | 31 | <main id="main" class="site-main col-12" role="main"> |
32 | 32 | |
33 | 33 | <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>> |
34 | | <header class="entry-header"> |
| 34 | <header class="entry-header row"> |
35 | 35 | <h1 class="entry-title col-8"><?php the_title(); ?></h1> |
36 | 36 | </header><!-- .entry-header --> |
37 | 37 | |
38 | 38 | <div class="entry-content row"> |
39 | 39 | <section class="col-8"> |
40 | | <h3 id="box"><?php esc_html_e( 'Out of the Box', 'wporg' ); ?></h3> |
| 40 | <h2 id="box"><?php esc_html_e( 'Out of the Box', 'wporg' ); ?></h2> |
41 | 41 | <p><?php esc_html_e( 'Great software should work with little configuration and setup. WordPress is designed to get you up and running and fully functional in no longer than five minutes. You shouldn’t have to battle to use the standard functionality of WordPress.', 'wporg' ); ?></p> |
42 | 42 | <p><?php esc_html_e( 'We work hard to make sure that every release is in keeping with this philosophy. We ask for as few technical details as possible during the setup process as well as providing full explanations of anything we do ask.', 'wporg' ); ?></p> |
43 | 43 | |
44 | | <h3 id="majority"><?php esc_html_e( 'Design for the Majority', 'wporg' ); ?></h3> |
| 44 | <h2 id="majority"><?php esc_html_e( 'Design for the Majority', 'wporg' ); ?></h2> |
45 | 45 | <p><?php esc_html_e( 'Many end users of WordPress are non-technically minded. They don’t know what AJAX is, nor do they care about which version of PHP they are using. The average WordPress user simply wants to be able to write without problems or interruption. These are the users that we design the software for as they are ultimately the ones who are going to spend the most time using it for what it was built for.', 'wporg' ); ?></p> |
46 | 46 | |
47 | | <h3 id="decisions"><?php esc_html_e( 'Decisions, not Options', 'wporg' ); ?></h3> |
| 47 | <h2 id="decisions"><?php esc_html_e( 'Decisions, not Options', 'wporg' ); ?></h2> |
48 | 48 | <p><?php esc_html_e( 'When making decisions these are the users we consider first. A great example of this consideration is software options. Every time you give a user an option, you are asking them to make a decision. When a user doesn’t care or understand the option this ultimately leads to frustration. As developers we sometimes feel that providing options for everything is a good thing, you can never have too many choices, right? Ultimately these choices end up being technical ones, choices that the average end user has no interest in. It’s our duty as developers to make smart design decisions and avoid putting the weight of technical choices on our end users.', 'wporg' ); ?></p> |
49 | 49 | |
50 | | <h3 id="clean"><?php esc_html_e( 'Clean, Lean, and Mean', 'wporg' ); ?></h3> |
| 50 | <h2 id="clean"><?php esc_html_e( 'Clean, Lean, and Mean', 'wporg' ); ?></h2> |
51 | 51 | <p><?php esc_html_e( 'The core of WordPress will always provide a solid array of basic features. It’s designed to be lean and fast and will always stay that way. We are constantly asked “when will X feature be built” or “why isn’t X plugin integrated into the core”. The rule of thumb is that the core should provide features that 80% or more of end users will actually appreciate and use. If the next version of WordPress comes with a feature that the majority of users immediately want to turn off, or think they’ll never use, then we’ve blown it. If we stick to the 80% principle then this should never happen.', 'wporg' ); ?></p> |
52 | 52 | <p><?php esc_html_e( 'We are able to do this because we have a very capable theme and plugin system and a fantastic developer community. Different people have different needs, and having the sheer number of quality WordPress plugins and themes allows users to customize their installations to their taste. That should allow all users to find the remaining 20% and make all WordPress features those they appreciate and use.', 'wporg' ); ?></p> |
53 | 53 | |
54 | | <h3 id="simplicity"><?php esc_html_e( 'Striving for Simplicity', 'wporg' ); ?></h3> |
| 54 | <h2 id="simplicity"><?php esc_html_e( 'Striving for Simplicity', 'wporg' ); ?></h2> |
55 | 55 | <p><?php esc_html_e( 'We’re never done with simplicity. We want to make WordPress easier to use with every single release. We’ve got a good track record of this, if you don’t believe us then just take a look back at some older versions of WordPress!', 'wporg' ); ?></p> |
56 | 56 | <p><?php esc_html_e( 'In past releases we’ve taken major steps to improve ease of use and ultimately make things simpler to understand. One great example of this is core software updates. Updating used to be a painful manual task that was too tricky for a lot of our users. We decided to focus on this and simplified it down to a single click. Now anyone with a WordPress installation can perform one click upgrades on both the core of WordPress and plugins and themes.', 'wporg' ); ?></p> |
57 | 57 | <p><?php esc_html_e( 'We love to challenge ourselves and simplify tasks in ways that are positive for the overall WordPress user experience. Every version of WordPress should be easier and more enjoyable to use than the last.', 'wporg' ); ?></p> |
58 | 58 | |
59 | | <h3 id="deadlines"><?php esc_html_e( 'Deadlines Are Not Arbitrary', 'wporg' ); ?></h3> |
| 59 | <h2 id="deadlines"><?php esc_html_e( 'Deadlines Are Not Arbitrary', 'wporg' ); ?></h2> |
60 | 60 | <p><?php esc_html_e( 'Deadlines are not arbitrary, they’re a promise we make to ourselves and our users that helps us rein in the endless possibilities of things that could be a part of every release. We aspire to release three major versions a year because through trial and error we’ve found that to be a good balance between getting cool stuff in each release and not so much that we end up breaking more than we add.', 'wporg' ); ?></p> |
61 | 61 | <p><?php esc_html_e( 'Good deadlines almost always make you trim something from a release. This is not a bad thing, it’s what they’re supposed to do.', 'wporg' ); ?></p> |
62 | 62 | <p><?php esc_html_e( 'The route of delaying a release for that one-more-feature is a rabbit hole. We did that for over a year once, and it wasn’t pleasant for anybody.', 'wporg' ); ?></p> |
63 | 63 | <p><?php esc_html_e( 'The more frequent and regular releases are, the less important it is for any particular feature to be in this release. If it doesn’t make it for this one, it’ll just be a few months before the next one. When releases become unpredictable or few and far between, there’s more pressure to try and squeeze in that one more thing because it’s going to be so long before the next one. Delay begets delay.', 'wporg' ); ?></p> |
64 | 64 | |
65 | | <h3 id="minority"><?php esc_html_e( 'The Vocal Minority', 'wporg' ); ?></h3> |
| 65 | <h2 id="minority"><?php esc_html_e( 'The Vocal Minority', 'wporg' ); ?></h2> |
66 | 66 | <p><?php esc_html_e( 'There’s a good rule of thumb within internet culture called the 1% rule. It states that “the number of people who create content on the internet represents approximately 1% (or less) of the people actually viewing that content”.', 'wporg' ); ?></p> |
67 | 67 | <p><?php esc_html_e( 'So while we consider it really important to listen and respond to those who post feedback and voice their opinions on forums, they only represent a tiny fraction of our end users. When making decisions on how to move forward with future versions of WordPress, we look to engage more of those users who are not so vocal online. We do this by meeting and talking to users at WordCamps across the globe, this gives us a better balance of understanding and ultimately allows us to make better decisions for everyone moving forward.', 'wporg' ); ?></p> |
68 | 68 | |
69 | | <h3 id="gpl"><?php esc_html_e( 'Our Bill of Rights', 'wporg' ); ?></h3> |
| 69 | <h2 id="gpl"><?php esc_html_e( 'Our Bill of Rights', 'wporg' ); ?></h2> |
70 | 70 | <p><?php esc_html_e( 'WordPress is licensed under the General Public License (GPLv2 or later) which provides four core freedoms, consider this as the WordPress “bill of rights”:', 'wporg' ); ?></p> |
71 | 71 | <ul> |
72 | 72 | <li><?php esc_html_e( 'The freedom to run the program, for any purpose.', 'wporg' ); ?></li> |
-
diff --git wordpress.org/public_html/wp-content/themes/pub/wporg-main/page-about-privacy-cookies.php wordpress.org/public_html/wp-content/themes/pub/wporg-main/page-about-privacy-cookies.php
index dcfcd7843..07748b343 100644
|
|
the_post(); |
43 | 43 | <main id="main" class="site-main col-12" role="main"> |
44 | 44 | |
45 | 45 | <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>> |
46 | | <header class="entry-header"> |
| 46 | <header class="entry-header row"> |
47 | 47 | <h1 class="entry-title col-8"><?php the_title(); ?></h1> |
48 | 48 | </header><!-- .entry-header --> |
49 | 49 | |
50 | 50 | <div class="entry-content row"> |
51 | 51 | <section class="col-8"> |
52 | | <h3><?php esc_html_e( 'Cookies', 'wporg' ); ?></h3> |
| 52 | <h2><?php esc_html_e( 'Cookies', 'wporg' ); ?></h2> |
53 | 53 | <p><?php |
54 | 54 | echo wp_kses_post( sprintf( |
55 | 55 | /* translators: %s: Link to the Privacy Policy. */ |
… |
… |
the_post(); |
58 | 58 | ) ); |
59 | 59 | ?></p> |
60 | 60 | |
61 | | <h3><?php esc_html_e( 'What are cookies?', 'wporg' ); ?></h3> |
| 61 | <h2><?php esc_html_e( 'What are cookies?', 'wporg' ); ?></h2> |
62 | 62 | <p><?php esc_html_e( 'Cookies are small pieces of data, stored in text files, that are stored on your computer or other device when websites are loaded in a browser. They are widely used to ‘remember’ you and your preferences, either for a single visit (through a ‘session cookie’) or for multiple repeat visits (using a ‘persistent cookie’). They ensure a consistent and efficient experience for visitors, and perform essential functions such as allowing users to register and remain logged in. Cookies may be set by the site that you are visiting (known as ‘first party cookies’), or by third parties, such as those who serve content or provide advertising or analytics services on the website (‘third party cookies’).', 'wporg' ); ?></p> |
63 | 63 | |
64 | | <h3><?php esc_html_e( 'Cookies set by WordPress.org', 'wporg' ); ?></h3> |
| 64 | <h2><?php esc_html_e( 'Cookies set by WordPress.org', 'wporg' ); ?></h2> |
65 | 65 | <p><?php esc_html_e( 'We use cookies for a number of different purposes. Some cookies are necessary for technical reasons; some enable a personalized experience for both visitors and registered users; and some allow the display of advertising from selected third party networks. Some of these cookies may be set when a page is loaded, or when a visitor takes a particular action (clicking the ‘like’ or ‘follow’ button on a post, for example).', 'wporg' ); ?></p> |
66 | 66 | <p><?php esc_html_e( 'Below the different categories of cookies set by WordPress.org are outlined, with specific examples detailed in the tables that follow. This includes their name and purpose. Certain cookies are only set for logged-in visitors, whereas others are set for any visitors, and these are marked below accordingly. Where a cookie only applies to specific subdomains, they are included under the relevant header.', 'wporg' ); ?></p> |
67 | 67 | <p><strong><?php esc_html_e( 'Strictly Necessary', 'wporg' ); ?></strong>: <?php esc_html_e( 'These are the cookies that are essential for WordPress.org to perform basic functions. These include those required to allow registered users to authenticate and perform account related functions.', 'wporg' ); ?></p> |
… |
… |
the_post(); |
70 | 70 | <p><strong><?php esc_html_e( 'Tracking', 'wporg' ); ?></strong>: <?php esc_html_e( 'These are set by trusted third party networks (e.g. Google Analytics) to track details such as the number of unique visitors, and pageviews to help improve the user experience.', 'wporg' ); ?></p> |
71 | 71 | <p><strong><?php esc_html_e( 'Third Party/Embedded Content', 'wporg' ); ?></strong>: <?php esc_html_e( 'WordPress.org makes use of different third party applications and services to enhance the experience of website visitors. These include social media platforms such as Facebook and Twitter (through the use of sharing buttons), or embedded content from YouTube and Vimeo. As a result, cookies may be set by these third parties, and used by them to track your online activity. We have no direct control over the information that is collected by these cookies.', 'wporg' ); ?></p> |
72 | 72 | |
73 | | <h3><?php esc_html_e( 'wordpress.org', 'wporg' ); ?></h3> |
| 73 | <h2><?php esc_html_e( 'wordpress.org', 'wporg' ); ?></h2> |
74 | 74 | <table> |
75 | 75 | <thead> |
76 | 76 | <tr> |
… |
… |
the_post(); |
138 | 138 | </tbody> |
139 | 139 | </table> |
140 | 140 | |
141 | | <h3><?php esc_html_e( 'make.wordpress.org', 'wporg' ); ?></h3> |
| 141 | <h2><?php esc_html_e( 'make.wordpress.org', 'wporg' ); ?></h2> |
142 | 142 | <table> |
143 | 143 | <thead> |
144 | 144 | <tr> |
… |
… |
the_post(); |
164 | 164 | </tbody> |
165 | 165 | </table> |
166 | 166 | |
167 | | <h3><?php esc_html_e( '*.trac.wordpress.org', 'wporg' ); ?></h3> |
| 167 | <h2><?php esc_html_e( '*.trac.wordpress.org', 'wporg' ); ?></h2> |
168 | 168 | <table> |
169 | 169 | <thead> |
170 | 170 | <tr> |
… |
… |
the_post(); |
190 | 190 | </tbody> |
191 | 191 | </table> |
192 | 192 | |
193 | | <h3><?php esc_html_e( 'codex.wordpress.org', 'wporg' ); ?></h3> |
| 193 | <h2><?php esc_html_e( 'codex.wordpress.org', 'wporg' ); ?></h2> |
194 | 194 | <table> |
195 | 195 | <thead> |
196 | 196 | <tr> |
… |
… |
the_post(); |
222 | 222 | </tbody> |
223 | 223 | </table> |
224 | 224 | |
225 | | <h3><?php esc_html_e( '*.wordcamp.org', 'wporg' ); ?></h3> |
| 225 | <h2><?php esc_html_e( '*.wordcamp.org', 'wporg' ); ?></h2> |
226 | 226 | <table> |
227 | 227 | <thead> |
228 | 228 | <tr> |
… |
… |
the_post(); |
326 | 326 | </tbody> |
327 | 327 | </table> |
328 | 328 | |
329 | | <h3><?php esc_html_e( 'Controlling Cookies', 'wporg' ); ?></h3> |
| 329 | <h2><?php esc_html_e( 'Controlling Cookies', 'wporg' ); ?></h2> |
330 | 330 | <p><?php esc_html_e( 'Visitors may wish to restrict the use of cookies, or completely prevent them from being set. Most browsers provide for ways to control cookie behavior such as the length of time they are stored — either through built-in functionality or by utilizing third party plugins.', 'wporg' ); ?></p> |
331 | 331 | <p> |
332 | 332 | <?php |
… |
… |
the_post(); |
342 | 342 | <p>Google Analytics - <a href="https://tools.google.com/dlpage/gaoptout">https://tools.google.com/dlpage/gaoptout</a></p> |
343 | 343 | <p><?php esc_html_e( 'It’s important to note that restricting or disabling the use of cookies can limit the functionality of sites, or prevent them from working correctly at all.', 'wporg' ); ?></p> |
344 | 344 | |
345 | | <h3><?php esc_html_e( 'WordPress.org', 'wporg' ); ?></h3> |
| 345 | <h2><?php esc_html_e( 'WordPress.org', 'wporg' ); ?></h2> |
346 | 346 | <p><a rel="license" href="https://creativecommons.org/licenses/by-sa/4.0/"><img alt="Creative Commons License" src="https://s.w.org/images/home/ccbysa40.png"></a></p> |
347 | 347 | </section> |
348 | 348 | </div><!-- .entry-content --> |
-
diff --git wordpress.org/public_html/wp-content/themes/pub/wporg-main/page-about-privacy-data-erasure-request.php wordpress.org/public_html/wp-content/themes/pub/wporg-main/page-about-privacy-data-erasure-request.php
index 26df85856..f8db8f56f 100644
|
|
the_post(); |
71 | 71 | <main id="main" class="site-main col-12" role="main"> |
72 | 72 | |
73 | 73 | <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>> |
74 | | <header class="entry-header"> |
| 74 | <header class="entry-header row"> |
75 | 75 | <h1 class="entry-title col-8"><?php the_title(); ?></h1> |
76 | 76 | </header><!-- .entry-header --> |
77 | 77 | |
-
diff --git wordpress.org/public_html/wp-content/themes/pub/wporg-main/page-about-privacy.php wordpress.org/public_html/wp-content/themes/pub/wporg-main/page-about-privacy.php
index d8a4fd765..f8c2d6641 100644
|
|
the_post(); |
31 | 31 | <main id="main" class="site-main col-12" role="main"> |
32 | 32 | |
33 | 33 | <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>> |
34 | | <header class="entry-header"> |
| 34 | <header class="entry-header row"> |
35 | 35 | <h1 class="entry-title col-8"><?php the_title(); ?></h1> |
36 | 36 | </header><!-- .entry-header --> |
37 | 37 | |
… |
… |
the_post(); |
39 | 39 | <section class="col-8"> |
40 | 40 | <p><?php esc_html_e( 'WordPress.org websites (collectively “WordPress.org” in this document) refer to sites hosted on the WordPress.org, WordPress.net, WordCamp.org, BuddyPress.org, bbPress.org, and other related domains and subdomains thereof. This privacy policy describes how WordPress.org uses and protects any information that you give us. We are committed to ensuring that your privacy is protected. If you provide us with personal information through WordPress.org, you can be assured that it will only be used in accordance with this privacy statement.', 'wporg' ); ?></p> |
41 | 41 | |
42 | | <h3><?php esc_html_e( 'Website Visitors', 'wporg' ); ?></h3> |
| 42 | <h2><?php esc_html_e( 'Website Visitors', 'wporg' ); ?></h2> |
43 | 43 | <p><?php esc_html_e( 'Like most website operators, WordPress.org collects non-personally-identifying information of the sort that web browsers and servers typically make available, such as the browser type, language preference, referring site, and the date and time of each visitor request. WordPress.org’s purpose in collecting non-personally identifying information is to better understand how WordPress.org’s visitors use its website. From time to time, WordPress.org may release non-personally-identifying information in the aggregate, e.g., by publishing a report on trends in the usage of its website.', 'wporg' ); ?></p> |
44 | 44 | |
45 | 45 | <p><?php esc_html_e( 'WordPress.org also collects potentially personally-identifying information like Internet Protocol (IP) addresses. WordPress.org does not use IP addresses to identify its visitors, however, and does not disclose such information, other than under the same circumstances that it uses and discloses personally-identifying information, as described below.', 'wporg' ); ?></p> |
46 | 46 | |
47 | | <h3><?php esc_html_e( 'Gathering of Personally-Identifying Information', 'wporg' ); ?></h3> |
| 47 | <h2><?php esc_html_e( 'Gathering of Personally-Identifying Information', 'wporg' ); ?></h2> |
48 | 48 | <p><?php esc_html_e( 'Certain visitors to WordPress.org choose to interact with WordPress.org in ways that require WordPress.org to gather personally-identifying information. The amount and type of information that WordPress.org gathers depends on the nature of the interaction. For example, we ask visitors who use our forums to provide a username and email address.', 'wporg' ); ?></p> |
49 | 49 | <p><?php esc_html_e( 'In each case, WordPress.org collects such information only insofar as is necessary or appropriate to fulfill the purpose of the visitor’s interaction with WordPress.org. WordPress.org does not disclose personally-identifying information other than as described below. And visitors can always refuse to supply personally-identifying information, with the caveat that it may prevent them from engaging in certain website-related activities, like purchasing a WordCamp ticket.', 'wporg' ); ?></p> |
50 | 50 | <p><?php esc_html_e( 'All of the information that is collected on WordPress.org will be handled in accordance with GDPR legislation.', 'wporg' ); ?></p> |
51 | 51 | |
52 | | <h3><?php esc_html_e( 'Protection of Certain Personally-Identifying Information', 'wporg' ); ?></h3> |
| 52 | <h2><?php esc_html_e( 'Protection of Certain Personally-Identifying Information', 'wporg' ); ?></h2> |
53 | 53 | <p><?php esc_html_e( 'WordPress.org discloses potentially personally-identifying and personally-identifying information only to those of project administrators, employees, contractors, and affiliated organizations that (i) need to know that information in order to process it on WordPress.org’s behalf or to provide services available through WordPress.org, and (ii) that have agreed not to disclose it to others. Some of those employees, contractors and affiliated organizations may be located outside of your home country; by using WordPress.org, you consent to the transfer of such information to them.', 'wporg' ); ?></p> |
54 | 54 | <p><?php esc_html_e( 'WordPress.org will not rent or sell potentially personally-identifying and personally-identifying information to anyone. Other than to project administrators, employees, contractors, and affiliated organizations, as described above, WordPress.org discloses potentially personally-identifying and personally-identifying information only when required to do so by law, if you give permission to have your information shared, or when WordPress.org believes in good faith that disclosure is reasonably necessary to protect the property or rights of WordPress.org, third parties, or the public at large.', 'wporg' ); ?></p> |
55 | 55 | <p><?php esc_html_e( 'If you are a registered user of a WordPress.org website and have supplied your email address, WordPress.org may occasionally send you an email to tell you about new features, solicit your feedback, or just keep you up to date with what’s going on with WordPress.org and our products. We primarily use our blog to communicate this type of information, so we expect to keep this type of email to a minimum.', 'wporg' ); ?></p> |
56 | 56 | <p><?php esc_html_e( 'If you send us a request (for example via a support email or via one of our feedback mechanisms), we reserve the right to publish it in order to help us clarify or respond to your request or to help us support other users. WordPress.org takes all measures reasonably necessary to protect against the unauthorized access, use, alteration, or destruction of potentially personally-identifying and personally-identifying information.', 'wporg' ); ?></p> |
57 | 57 | |
58 | | <h3><?php esc_html_e( 'Use of personal information', 'wporg' ); ?></h3> |
| 58 | <h2><?php esc_html_e( 'Use of personal information', 'wporg' ); ?></h2> |
59 | 59 | <p><?php esc_html_e( 'We use the information you provide to register for an account, attend our events, receive newsletters, use certain other services, or participate in the WordPress open source project in any other way.', 'wporg' ); ?></p> |
60 | 60 | <p><?php esc_html_e( 'We will not sell or lease your personal information to third parties unless we have your permission or are required by law to do so.', 'wporg' ); ?></p> |
61 | 61 | <p><?php esc_html_e( 'We would like to send you email marketing communication which may be of interest to you from time to time. If you have consented to marketing, you may opt out later.', 'wporg' ); ?></p> |
62 | 62 | <p><?php esc_html_e( 'You have a right at any time to stop us from contacting you for marketing purposes. If you no longer wish to be contacted for marketing purposes, please click on the unsubscribe link at the bottom of the email.', 'wporg' ); ?></p> |
63 | 63 | |
64 | | <h3><?php esc_html_e( 'Legal grounds for processing personal information', 'wporg' ); ?></h3> |
| 64 | <h2><?php esc_html_e( 'Legal grounds for processing personal information', 'wporg' ); ?></h2> |
65 | 65 | <p><?php esc_html_e( 'We rely on one or more of the following processing conditions:', 'wporg' ); ?></p> |
66 | 66 | <ul> |
67 | 67 | <li><?php esc_html_e( 'our legitimate interests in the effective delivery of information and services to you;', 'wporg' ); ?></li> |
… |
… |
the_post(); |
69 | 69 | <li><?php esc_html_e( 'legal obligations.', 'wporg' ); ?></li> |
70 | 70 | </ul> |
71 | 71 | |
72 | | <h3><?php esc_html_e( 'Access to data', 'wporg' ); ?></h3> |
| 72 | <h2><?php esc_html_e( 'Access to data', 'wporg' ); ?></h2> |
73 | 73 | <p><?php esc_html_e( 'You have the right to request a copy of the information we hold about you. If you would like a copy of some or all your personal information, please follow the instructions at the end of this section.', 'wporg' ); ?></p> |
74 | 74 | <p><?php esc_html_e( 'All WordCamp attendee-provided data can be viewed and changed by the attendee via the Access Token URL that is emailed to confirm a successful ticket purchase.', 'wporg' ); ?></p> |
75 | 75 | <p><?php esc_html_e( 'WordPress.org user accounts can be edited by following these steps:', 'wporg' ); ?></p> |
… |
… |
the_post(); |
102 | 102 | </ol> |
103 | 103 | <p><?php esc_html_e( 'Note: If you have a WP.org account, it’s recommended you log in before submitting to associate your account with the request.', 'wporg' ); ?></p> |
104 | 104 | |
105 | | <h3><?php esc_html_e( 'Retention of personal information', 'wporg' ); ?></h3> |
| 105 | <h2><?php esc_html_e( 'Retention of personal information', 'wporg' ); ?></h2> |
106 | 106 | <p><?php esc_html_e( 'We will retain your personal information on our systems only for as long as we need to, for the success of the WordPress open source project and the programs that support WordPress.org. We keep contact information (such as mailing list information) until a user unsubscribes or requests that we delete that information from our live systems. If you choose to unsubscribe from a mailing list, we may keep certain limited information about you so that we may honor your request.', 'wporg' ); ?></p> |
107 | 107 | <p><?php esc_html_e( 'WordPress.org will not delete personal data from logs or records necessary to the operation, development, or archives of the WordPress open source project.', 'wporg' ); ?></p> |
108 | 108 | <p><?php esc_html_e( 'WordPress.org shall maintain WordCamp attendee data for 3 years to better track and foster community growth, and then automatically delete non-essential data collected via registration. Attendee names and email addresses will be retained indefinitely, to preserve our ability to respond to code of conduct reports.', 'wporg' ); ?></p> |
… |
… |
the_post(); |
124 | 124 | </ol> |
125 | 125 | <p><?php esc_html_e( 'Note: If you have a WP.org account, it’s recommended you log in before submitting to associate your account with the request.', 'wporg' ); ?></p> |
126 | 126 | |
127 | | <h3><?php esc_html_e( 'Rights in relation to your information', 'wporg' ); ?></h3> |
| 127 | <h2><?php esc_html_e( 'Rights in relation to your information', 'wporg' ); ?></h2> |
128 | 128 | <p><?php esc_html_e( 'You may have certain rights under data protection law in relation to the personal information we hold about you. In particular, you may have a right to:', 'wporg' ); ?></p> |
129 | 129 | <ul> |
130 | 130 | <li><?php esc_html_e( 'request a copy of personal information we hold about you;', 'wporg' ); ?></li> |
… |
… |
the_post(); |
135 | 135 | </ul> |
136 | 136 | <p><?php esc_html_e( 'If you would like to exercise these rights or understand if these rights apply to you, please follow the instructions at the end of this Privacy statement.', 'wporg' ); ?></p> |
137 | 137 | |
138 | | <h3><?php esc_html_e( 'Third Party Links', 'wporg' ); ?></h3> |
| 138 | <h2><?php esc_html_e( 'Third Party Links', 'wporg' ); ?></h2> |
139 | 139 | <p><?php esc_html_e( 'Our website may contain links to other websites provided by third parties not under our control. When following a link and providing information to a 3rd-party website, please be aware that we are not responsible for the data provided to that third party. This privacy policy only applies to the websites listed at the beginning of this document, so when you visit other websites, even when you click on a link posted on WordPress.org, you should read their own privacy policies.', 'wporg' ); ?></p> |
140 | 140 | |
141 | | <h3><?php esc_html_e( 'Aggregated Statistics', 'wporg' ); ?></h3> |
| 141 | <h2><?php esc_html_e( 'Aggregated Statistics', 'wporg' ); ?></h2> |
142 | 142 | <p><?php echo wp_kses_post( __( 'WordPress.org may collect statistics about the behavior of visitors to its websites. For instance, WordPress.org may reveal how many times a particular version of WordPress was downloaded or report on which plugins are the most popular, based on data gathered by <code>api.wordpress.org</code>, a web service used by WordPress installations to check for new versions of WordPress and plugins. However, WordPress.org does not disclose personally-identifying information other than as described in this policy.', 'wporg' ) ); ?></p> |
143 | 143 | |
144 | | <h3><?php esc_html_e( 'Cookies', 'wporg' ); ?></h3> |
| 144 | <h2><?php esc_html_e( 'Cookies', 'wporg' ); ?></h2> |
145 | 145 | <p><?php esc_html_e( 'Additionally, information about how you use our website is collected automatically using “cookies”. Cookies are text files placed on your computer to collect standard internet log information and visitor behaviour information. This information is used to track visitor use of the website and to compile statistical reports on website activity.', 'wporg' ); ?></p> |
146 | 146 | <p><?php echo wp_kses_post( sprintf( |
147 | 147 | /* translators: %s: Link to the Cookie policy. */ |
… |
… |
the_post(); |
150 | 150 | ) ); |
151 | 151 | ?></p> |
152 | 152 | |
153 | | <h3><?php esc_html_e( 'Privacy Policy Changes', 'wporg' ); ?></h3> |
| 153 | <h2><?php esc_html_e( 'Privacy Policy Changes', 'wporg' ); ?></h2> |
154 | 154 | <p><?php esc_html_e( 'Although most changes are likely to be minor, WordPress.org may change its Privacy Policy from time to time, and at WordPress.org’s sole discretion. WordPress.org encourages visitors to frequently check this page for any changes to its Privacy Policy. Your continued use of this site after any change in this Privacy Policy will constitute your acceptance of such change.', 'wporg' ); ?></p> |
155 | 155 | |
156 | | <h3><?php esc_html_e( 'Contact', 'wporg' ); ?></h3> |
| 156 | <h2><?php esc_html_e( 'Contact', 'wporg' ); ?></h2> |
157 | 157 | <p><?php esc_html_e( 'Please contact us if you have any questions about our privacy policy or information we hold about you by emailing dpo@wordcamp.org.', 'wporg' ); ?></p> |
158 | 158 | |
159 | 159 | <p><a rel="license" href="https://creativecommons.org/licenses/by-sa/4.0/"><img alt="Creative Commons License" src="https://s.w.org/images/home/ccbysa40.png"></a></p> |
-
diff --git wordpress.org/public_html/wp-content/themes/pub/wporg-main/page-about-requirements.php wordpress.org/public_html/wp-content/themes/pub/wporg-main/page-about-requirements.php
index 31141a893..5587803d1 100644
|
|
the_post(); |
33 | 33 | <main id="main" class="site-main col-12" role="main"> |
34 | 34 | |
35 | 35 | <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>> |
36 | | <header class="entry-header"> |
| 36 | <header class="entry-header row"> |
37 | 37 | <h1 class="entry-title col-8"><?php the_title(); ?></h1> |
38 | 38 | </header><!-- .entry-header --> |
39 | 39 | |
40 | 40 | <div class="entry-content row"> |
41 | 41 | <section class="col-8"> |
42 | | <h3><?php esc_html_e( 'To run WordPress we recommend your host supports:', 'wporg' ); ?></h3> |
| 42 | <h2 class="h3"><?php esc_html_e( 'To run WordPress we recommend your host supports:', 'wporg' ); ?></h2> |
43 | 43 | |
44 | 44 | <ul> |
45 | 45 | <li> |
… |
… |
the_post(); |
80 | 80 | ?> |
81 | 81 | </p> |
82 | 82 | |
83 | | <h3><?php esc_html_e( 'Ask for it', 'wporg' ); ?></h3> |
| 83 | <h2><?php esc_html_e( 'Ask for it', 'wporg' ); ?></h2> |
84 | 84 | |
85 | 85 | <p><?php esc_html_e( 'Here’s a letter you can send to your host; copy and paste!', 'wporg' ); ?></p> |
86 | 86 | |
… |
… |
the_post(); |
107 | 107 | <p><?php esc_html_e( 'Thanks!', 'wporg' ); ?></p> |
108 | 108 | </blockquote> |
109 | 109 | |
110 | | <h3><?php esc_html_e( 'Not required, but recommended for better security', 'wporg' ); ?></h3> |
| 110 | <h2 class="h3"><?php esc_html_e( 'Not required, but recommended for better security', 'wporg' ); ?></h2> |
111 | 111 | |
112 | 112 | <p><?php esc_html_e( 'Hosting is more secure when PHP applications, like WordPress, are run using your account’s username instead of the server’s default shared username. Ask your potential host what steps they take to ensure the security of your account.', 'wporg' ); ?></p> |
113 | 113 | </section> |
-
diff --git wordpress.org/public_html/wp-content/themes/pub/wporg-main/page-about-roadmap.php wordpress.org/public_html/wp-content/themes/pub/wporg-main/page-about-roadmap.php
index 690f9113f..f428b82b2 100644
|
|
the_post(); |
31 | 31 | <main id="main" class="site-main col-12" role="main"> |
32 | 32 | |
33 | 33 | <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>> |
34 | | <header class="entry-header"> |
| 34 | <header class="entry-header row"> |
35 | 35 | <h1 class="entry-title col-8"><?php the_title(); ?></h1> |
36 | 36 | </header><!-- .entry-header --> |
37 | 37 | |
… |
… |
the_post(); |
95 | 95 | ?> |
96 | 96 | </p> |
97 | 97 | |
98 | | <h3><?php esc_html_e( 'Currently planned releases', 'wporg' ); ?></h3> |
| 98 | <h2><?php esc_html_e( 'Currently planned releases', 'wporg' ); ?></h2> |
99 | 99 | |
100 | 100 | <p> |
101 | 101 | <?php |
… |
… |
the_post(); |
136 | 136 | ?> |
137 | 137 | </p> |
138 | 138 | |
139 | | <h3><?php esc_html_e( 'Long term roadmap', 'wporg' ); ?></h3> |
| 139 | <h2><?php esc_html_e( 'Long term roadmap', 'wporg' ); ?></h2> |
140 | 140 | |
141 | 141 | <p><?php esc_html_e( 'While we expect to need most or all of 2019 to finish phase 2 of Gutenberg, there are already plans for Phase 3 and 4. Phase 3 will focus on collaboration and multi-user editing. Phase 4 will contain support for multilingual sites.', 'wporg' ); ?></p> |
142 | 142 | </section> |
-
diff --git wordpress.org/public_html/wp-content/themes/pub/wporg-main/page-about-security.php wordpress.org/public_html/wp-content/themes/pub/wporg-main/page-about-security.php
index d050f41c4..4265f8104 100644
|
|
the_post(); |
36 | 36 | <main id="main" class="site-main col-12" role="main"> |
37 | 37 | |
38 | 38 | <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>> |
39 | | <header class="entry-header"> |
| 39 | <header class="entry-header row"> |
40 | 40 | <h1 class="entry-title col-8"><?php the_title(); ?></h1> |
41 | 41 | </header><!-- .entry-header --> |
42 | 42 | |
-
diff --git wordpress.org/public_html/wp-content/themes/pub/wporg-main/page-about-stats.php wordpress.org/public_html/wp-content/themes/pub/wporg-main/page-about-stats.php
index 337b77f82..8d564526a 100644
|
|
the_post(); |
36 | 36 | </header><!-- .entry-header --> |
37 | 37 | |
38 | 38 | <div class="entry-content row"> |
39 | | <section class="col-8"> |
| 39 | <div class="col-8"> |
40 | 40 | <p><?php esc_html_e( 'Here are some charts showing what sorts of systems people are running WordPress on. (You’ll need JavaScript enabled to see them.)', 'wporg' ); ?></p> |
41 | | <div id="wp_versions" class="wporg-stats-chart loading"></div> |
42 | | <div id="php_versions" class="wporg-stats-chart loading"></div> |
43 | | <div id="mysql_versions" class="wporg-stats-chart loading"></div> |
44 | | <div id="locales" class="wporg-stats-chart loading"></div> |
| 41 | <section> |
| 42 | <h2><?php esc_html_e( 'WordPress Version', 'wporg' ); ?></h2> |
| 43 | <div id="wp_versions" class="wporg-stats-chart loading"></div> |
| 44 | </section> |
| 45 | <section> |
| 46 | <h2><?php esc_html_e( 'PHP Versions', 'wporg' ); ?></h2> |
| 47 | <div id="php_versions" class="wporg-stats-chart loading"></div> |
| 48 | </section> |
| 49 | <section> |
| 50 | <h2><?php esc_html_e( 'MySQL Version', 'wporg' ); ?></h2> |
| 51 | <div id="mysql_versions" class="wporg-stats-chart loading"></div> |
| 52 | </section> |
| 53 | <section> |
| 54 | <h2><?php esc_html_e( 'Locales', 'wporg' ); ?></h2> |
| 55 | <div id="locales" class="wporg-stats-chart loading"></div> |
| 56 | </section> |
45 | 57 | </section> |
46 | 58 | </div><!-- .entry-content --> |
47 | 59 | </article><!-- #post-## --> |
-
diff --git wordpress.org/public_html/wp-content/themes/pub/wporg-main/page-about-testimonials.php wordpress.org/public_html/wp-content/themes/pub/wporg-main/page-about-testimonials.php
index 167dbb41a..1ad709806 100644
|
|
the_post(); |
111 | 111 | <main id="main" class="site-main col-12" role="main"> |
112 | 112 | |
113 | 113 | <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>> |
114 | | <header class="entry-header"> |
| 114 | <header class="entry-header row"> |
115 | 115 | <h1 class="entry-title col-8"><?php the_title(); ?></h1> |
116 | 116 | </header><!-- .entry-header --> |
117 | 117 | |
118 | 118 | <div class="entry-content row"> |
119 | 119 | <section class="col-8"> |
120 | | <h3><?php esc_html_e( 'Share your WordPress story', 'wporg' ); ?></h3> |
| 120 | <h2><?php esc_html_e( 'Share your WordPress story', 'wporg' ); ?></h2> |
121 | 121 | <p><?php esc_html_e( 'Want to have your story featured on this page?', 'wporg' ); ?></p> |
122 | 122 | <p> |
123 | 123 | <?php |
… |
… |
the_post(); |
136 | 136 | </p> |
137 | 137 | </section> |
138 | 138 | |
139 | | <section class="col-10" id="embeds"></section> |
| 139 | <section class="col-12"> |
| 140 | <div class="row"> |
| 141 | <div class="offset-2 col-8"> |
| 142 | <h2><?php esc_html_e( 'WordPress on Twitter', 'wporg' ); ?></h2> |
| 143 | </div> |
| 144 | </div> |
| 145 | <div class="row"> |
| 146 | <div class="col-10"> |
| 147 | <div id="embeds"></div> |
| 148 | </div> |
| 149 | </div> |
| 150 | </section> |
140 | 151 | </div><!-- .entry-content --> |
141 | 152 | </article><!-- #post-## --> |
142 | 153 | |
-
diff --git wordpress.org/public_html/wp-content/themes/pub/wporg-main/page-about.php wordpress.org/public_html/wp-content/themes/pub/wporg-main/page-about.php
index a3a9d0754..f93756f9e 100644
|
|
the_post(); |
33 | 33 | |
34 | 34 | <div class="entry-content row"> |
35 | 35 | <section class="col-8"> |
36 | | <h2 id="mission"><?php esc_html_e( 'Our Mission', 'wporg' ); ?></h2> |
| 36 | <h2 class="h1" id="mission"><?php esc_html_e( 'Our Mission', 'wporg' ); ?></h2> |
37 | 37 | <p><?php esc_html_e( 'WordPress is software designed for everyone, emphasizing accessibility, performance, security, and ease of use. We believe great software should work with minimum set up, so you can focus on sharing your story, product, or services freely. The basic WordPress software is simple and predictable so you can easily get started. It also offers powerful features for growth and success.', 'wporg' ); ?></p> |
38 | 38 | <p> |
39 | 39 | <?php |
… |
… |
the_post(); |
96 | 96 | </section> |
97 | 97 | |
98 | 98 | <section class="col-8"> |
99 | | <h2 id="story"><?php esc_html_e( 'Our Story', 'wporg' ); ?></h2> |
| 99 | <h2 class="h1" id="story"><?php esc_html_e( 'Our Story', 'wporg' ); ?></h2> |
100 | 100 | <p> |
101 | 101 | <?php |
102 | 102 | /* translators: 1: Link to b2/cafelog; 2: WordPress market share: 30 - Note: The following percent sign is '%%' for escaping purposes; */ |
… |
… |
the_post(); |
107 | 107 | </section> |
108 | 108 | |
109 | 109 | <section class="col-8"> |
110 | | <h2 id="bill-of-rights"><?php esc_html_e( 'Bill of Rights', 'wporg' ); ?></h2> |
| 110 | <h2 class="h1" id="bill-of-rights"><?php esc_html_e( 'Bill of Rights', 'wporg' ); ?></h2> |
111 | 111 | <p> |
112 | 112 | <?php |
113 | 113 | /* translators: Link to license page */ |
-
diff --git wordpress.org/public_html/wp-content/themes/pub/wporg/css/base/_headings.scss wordpress.org/public_html/wp-content/themes/pub/wporg/css/base/_headings.scss
index cd43b2b89..08d953829 100644
|
|
|
1 | 1 | h1, h2, h3, h4, h5, h6 { |
| 2 | font-family: fontFamily(); /* We need to re-state the font family because of conflicting styles from wp4.css */ |
2 | 3 | clear: both; |
3 | 4 | line-height: $type__lineheight; |
4 | 5 | margin: 2rem 0 1rem; |
5 | 6 | } |
6 | 7 | |
7 | | h1 { |
8 | | font-size: ms( 12 ); |
| 8 | h1, .h1 { |
| 9 | font-size: ms( 8 ); |
9 | 10 | font-weight: 300; |
10 | 11 | } |
11 | 12 | |
12 | | h2 { |
13 | | font-size: ms( 8 ); |
| 13 | h2, .h2 { |
| 14 | font-size: ms( 6 ); |
14 | 15 | font-weight: 300; |
15 | 16 | } |
16 | 17 | |
17 | | h3 { |
| 18 | h3, .h3 { |
18 | 19 | font-size: ms( 4 ); |
19 | 20 | font-weight: 400; |
20 | 21 | } |
21 | 22 | |
22 | | h4 { |
| 23 | h4, .h4 { |
23 | 24 | font-size: ms( 2 ); |
24 | 25 | color: $color__base-gray; |
25 | 26 | font-weight: 600; |
26 | 27 | padding: 0; |
27 | 28 | } |
28 | 29 | |
29 | | h5 { |
| 30 | h5, .h5 { |
30 | 31 | font-size: ms( 0 ); |
31 | 32 | font-weight: 600; |
32 | 33 | letter-spacing: 0.01rem; |
33 | 34 | text-transform: uppercase; |
34 | 35 | } |
35 | 36 | |
36 | | h6 { |
| 37 | h6, .h6 { |
37 | 38 | font-size: ms( -2 ); |
38 | 39 | font-weight: 600; |
39 | 40 | letter-spacing: 0.8px; |
-
diff --git wordpress.org/public_html/wp-content/themes/pub/wporg/css/tools/_functions.scss wordpress.org/public_html/wp-content/themes/pub/wporg/css/tools/_functions.scss
new file mode 100644
index 000000000..40bf2f201
-
|
+
|
|
| 1 | @function fontFamily() { |
| 2 | @return "Open Sans", sans-serif; |
| 3 | } |
| 4 | No newline at end of file |
-
diff --git wordpress.org/public_html/wp-content/themes/pub/wporg/css/tools/_tools.scss wordpress.org/public_html/wp-content/themes/pub/wporg/css/tools/_tools.scss
index 46bd9caad..a02d75d99 100644
|
|
|
1 | 1 | @import "breakpoint"; |
| 2 | @import "functions"; |
2 | 3 | @import "kube"; |
3 | 4 | @import "modular-scale"; |