| 1 |
<?php |
| 2 |
/** |
| 3 |
* Template: Dropcaps |
| 4 |
* |
| 5 |
* @package RadiusTheme\SB |
| 6 |
*/ |
| 7 |
|
| 8 |
/** |
| 9 |
* Template variables: |
| 10 |
* |
| 11 |
* @var $drop_content string |
| 12 |
*/ |
| 13 |
|
| 14 |
use RadiusTheme\SB\Helpers\Fns; |
| 15 |
|
| 16 |
// Do not allow directly accessing this file. |
| 17 |
if ( ! defined( 'ABSPATH' ) ) { |
| 18 |
exit( 'This script cannot be accessed directly.' ); |
| 19 |
} |
| 20 |
?> |
| 21 |
<div class="rtsb-dropcaps-wrap"> |
| 22 |
<div class="rtsb-dropcaps-des-wrap"> |
| 23 |
<?php Fns::print_html( $drop_content ); ?> |
| 24 |
</div> |
| 25 |
</div> |
| 26 |
|