Static landing page (index.html) currently live at grubflip.com, plus full WordPress theme under wp-theme/grubflip/ with: - Hero section, how-it-works, benefits, early access signup form - Custom post type for storing waitlist signups via AJAX - WP admin columns for managing signups - Template parts for maintainability - Responsive design with Inter font, dark theme, orange accents Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
20 lines
360 B
PHP
20 lines
360 B
PHP
<?php
|
|
/**
|
|
* Theme Footer
|
|
*
|
|
* @package Grubflip
|
|
* @since 1.0.0
|
|
*/
|
|
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
exit;
|
|
}
|
|
?>
|
|
|
|
<footer class="site-footer">
|
|
<p>© <?php echo esc_html( date( 'Y' ) ); ?> <?php bloginfo( 'name' ); ?>. A <a href="https://www.payfrit.com">Payfrit</a> product. All rights reserved.</p>
|
|
</footer>
|
|
|
|
<?php wp_footer(); ?>
|
|
</body>
|
|
</html>
|