| 1 |
<?php |
| 2 |
if ( ! defined( 'ABSPATH' ) ) { |
| 3 |
die( 'You are not allowed to call this page directly.' ); |
| 4 |
} |
| 5 |
?> |
| 6 |
<div class="frm-counter-card-wrapper frm-payments-placeholder"> |
| 7 |
<div class="frm-dashboard-widget frm-card-item frm-counter-card frm-animate"> |
| 8 |
<div class="frm-flex-box frm-justify-between frm-items-center"> |
| 9 |
<div> |
| 10 |
<h3><?php echo esc_html( $template['counters'][0]['heading'] ); ?></h3> |
| 11 |
<p><?php echo esc_html( $template['placeholder']['copy'] ); ?></p> |
| 12 |
</div> |
| 13 |
<a href="<?php echo esc_url( $template['placeholder']['cta']['link'] ); ?>" class=" <?php echo isset( $template['placeholder']['cta']['classname'] ) ? esc_attr( $template['placeholder']['cta']['classname'] ) : ''; ?>"><?php echo esc_html( $template['placeholder']['cta']['label'] ); ?></a> |
| 14 |
</div> |
| 15 |
</div> |
| 16 |
</div> |
| 17 |
|
| 18 |
|