| 1 |
<?php |
| 2 |
/** |
| 3 |
* Portfolio Entry |
| 4 |
* |
| 5 |
* @var $attributes - attributes |
| 6 |
* @var $options - options |
| 7 |
* |
| 8 |
* @link https://codesupply.co |
| 9 |
* @since 1.0.0 |
| 10 |
* |
| 11 |
* @package Sight |
| 12 |
*/ |
| 13 |
|
| 14 |
?> |
| 15 |
<article <?php $portfolio_entry->item_class(); ?>> |
| 16 |
<div <?php $portfolio_entry->item_outer_class(); ?>> |
| 17 |
<?php |
| 18 |
$portfolio_entry->item_attachment(); |
| 19 |
$portfolio_entry->item_content(); |
| 20 |
?> |
| 21 |
</div> |
| 22 |
</article> |
| 23 |
|