civist-container.php in Civist – Petitions and Fundraising trunk, at civist-container.php
| 1 | <?php |
| 2 | /** |
| 3 | * The container for the javascript app |
| 4 | * |
| 5 | * @package civist |
| 6 | */ |
| 7 | |
| 8 | if ( ! defined( 'WPINC' ) ) { |
| 9 | die; |
| 10 | } |
| 11 | |
| 12 | /* translators: The loading text that shows in plugin pages while scripts are loading. */ |
| 13 | $civist_loading = _x( 'Loading', 'wp.plugin.loading', 'civist' ); |
| 14 | |
| 15 | ?> |
| 16 | <div id="civist-wrapper"> |
| 17 | <h1><?php echo( esc_html( $civist_loading ) ); ?></h1> |
| 18 | </div> |
| 19 | <?php |
| 20 |