-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontent-cards.php
25 lines (25 loc) · 1.24 KB
/
content-cards.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<div class="<?php the_cc_css_classes( 'content_cards_card' ); ?>">
<?php if ( get_cc_data( 'image' ) ) : ?>
<div class="content_cards_image">
<a rel="nofollow" class="content_cards_image_link" href="<?php the_cc_data( 'url', 'esc_url' ); ?>"<?php the_cc_target(); ?>>
<?php the_cc_image( 'full' ); ?>
</a>
</div>
<?php endif; ?>
<div class="content_cards_wrapper">
<div class="content_cards_title">
<a rel="nofollow" class="content_cards_title_link" href="<?php the_cc_data( 'url', 'esc_url' ); ?>"<?php the_cc_target(); ?>>
<?php the_cc_data( 'title' ); ?>
</a>
</div>
<div class="content_cards_description">
<a rel="nofollow" class="content_cards_description_link" href="<?php the_cc_data( 'url', 'esc_url' ); ?>"<?php the_cc_target(); ?>>
<?php the_cc_data( 'description' ); ?>
</a>
</div>
<div class="content_cards_site_name">
<?php if ( get_cc_data('favicon') ) : ?><img src="<?php the_cc_data( 'favicon', 'esc_url' ); ?>" alt="<?php the_cc_data( 'site_name', 'esc_attr' ); ?>" class="content_cards_favicon"/><?php endif; ?>
<?php the_cc_data( 'site_name' ); ?>
</div>
</div>
</div>