2019-09-28 03:41:19 +03:00
< ? php // todo i18n
2019-10-24 17:55:45 +03:00
//// change all id/class prefixes to fftf (or something better) b/c not valid to start w/ number.
2019-10-04 22:35:02 +03:00
// TODO are we using this, or is all the front end stuff happening in the 5ftF theme now?
?>
2019-09-28 03:41:19 +03:00
< article class = " 5ftf " >
< section class = " about " >
< h3 >
2019-10-24 17:55:45 +03:00
< ? php esc_html_e ( 'Five for the Future' , 'wporg-5ftf' ); ?>
2019-09-28 03:41:19 +03:00
</ h3 >
< p >
2019-10-24 17:55:45 +03:00
< ? php wp_kses_post (
__ ( 'Many companies in the WordPress ecosystem choose to contribute 5% of their time back towards sustaining and improving the WordPress project. This helps to ensure that WordPress remains a vibrant platform to build a business on, and prevents a <a href="todo">tragedy of the commons</a>.' , 'wporg-5ftf' )
); ?>
< ? php // todo link to CTA page. ?>
2019-09-28 03:41:19 +03:00
</ p >
</ section >
< section class = " people " >
< h3 >
2019-10-24 17:55:45 +03:00
< ? php esc_html_e ( 'Thank you to all of the companies that participate in Five for the Future.' , 'wporg-5ftf' ); ?>
2019-09-28 03:41:19 +03:00
</ h3 >
2019-10-24 17:55:45 +03:00
< ? php
/*
* todo .
* sort filter options .
* this should be js - backbone or react ? react .
* in page or api ? start in page , can iterate later to add infinite scroll or something .
*/
?>
2019-09-28 03:41:19 +03:00
< form >
< label for = " 5ftf-search " >
2019-10-24 17:55:45 +03:00
< ? php esc_html_e ( 'Search:' , 'wporg-5ftf' ); ?>
2019-09-28 03:41:19 +03:00
</ label >
< input type = " text " id = " 5ftf-search " name = " 5ftf-search " />
</ form >
< table class = " fftf-companies " >
< thead >
< tr >
< th class = " fftf-sorted-ascending " >
Company
< button class = " fftf-sorting-indicator " data - field = " name " ></ button >
</ th >
< th >
Total # Employees
< button class = " fftf-sorting-indicator " data - field = " total_employees " ></ button >
</ th >
< th >
# Sponsored Employees
< button class = " fftf-sorting-indicator " data - field = " sponsored_employees " ></ button >
</ th >
< th >
Hours Pledged per Week
< button class = " fftf-sorting-indicator " data - field = " hours_per_week " ></ button >
</ th >
< th >
Teams Contributing To
2019-10-24 17:55:45 +03:00
< ? php // This can't really be sorted in a meaningful way, since multiple teams are listed here. ?>
2019-09-28 03:41:19 +03:00
</ th >
</ tr >
</ thead >
< tbody id = " 5ftf-companies-body " >
< tr >
< td colspan = " 5 " >
2019-10-24 17:55:45 +03:00
< ? php esc_html_e ( 'Loading…' , 'wporg-5ftf' ); ?>
2019-09-28 03:41:19 +03:00
</ td >
</ tr >
</ tbody >
< script id = " tmpl-5ftf-companies " type = " text/template " >
< # _.each( data, function( company ) { #>
< tr class = " company " >
< th >
< a href = " { { company.url}} " >
{{ company . name }}
</ a >
</ th >
< td > {{ company . total_employees }} </ td >
< td > {{ company . sponsored_employees }} </ td >
< td > {{ company . hours_per_week }} </ td >
< td >
{{ company . teams_contributing_to }}
<!-- todo link to team p2 -->
</ td >
</ tr >
< # } ) #>
</ script >
</ table >
</ section >
< section class = " join " >
< h3 > Take the Next Step </ h3 >
< p > Have a question ? Ready to get started ? Get in touch and we 'll help you find where you' re needed the most .</ p >
2019-10-24 17:55:45 +03:00
< ? php // todo link to pledge form. ?>
2019-09-28 03:41:19 +03:00
</ section >
2019-10-04 22:35:02 +03:00
</ article >