20 lines
1.1 KiB
PHP
20 lines
1.1 KiB
PHP
|
<?php if ( tainacan_has_document() && !get_theme_mod( 'tainacan_single_item_gallery_mode', false )) : ?>
|
||
|
<div>
|
||
|
<?php if ( get_theme_mod('tainacan_single_item_document_section_label', __( 'Document', 'blocksy-tainacan' )) != '') : ?>
|
||
|
<h2 class="title-content-items" id="single-item-document-label">
|
||
|
<?php echo esc_html( get_theme_mod('tainacan_single_item_document_section_label', __( 'Document', 'blocksy-tainacan' )) ); ?>
|
||
|
</h2>
|
||
|
<?php endif; ?>
|
||
|
<section class="tainacan-content single-item-collection margin-two-column">
|
||
|
<div class="single-item-collection--document">
|
||
|
<?php
|
||
|
tainacan_the_document();
|
||
|
if ( !get_theme_mod( 'tainacan_single_item_hide_download_document', false ) && function_exists('tainacan_the_item_document_download_link') && tainacan_the_item_document_download_link() != '' ) {
|
||
|
echo '<span class="tainacan-item-file-download">' . tainacan_the_item_document_download_link() . '</span>';
|
||
|
}
|
||
|
?>
|
||
|
</div>
|
||
|
</section>
|
||
|
</div>
|
||
|
|
||
|
<?php endif; ?>
|