115 lines
3.5 KiB
PHP
115 lines
3.5 KiB
PHP
<?php
|
|
/**
|
|
* Template part for displaying posts
|
|
*
|
|
* @link https://developer.wordpress.org/themes/basics/template-hierarchy/
|
|
*
|
|
* @package Oficina_de_Suport_theme
|
|
*/
|
|
|
|
?>
|
|
|
|
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
|
|
|
|
<header class="entry-header">
|
|
<?php the_title( '<h1 class="entry-title"><a href="' . esc_url( get_permalink() ) . '" rel="bookmark">', '</a></h1>' ); ?>
|
|
</header><!-- .entry-header -->
|
|
|
|
<section class="ofisuport-fund-info-contact-fields">
|
|
|
|
<div class="ofisuport-fund-info-field">
|
|
<?php get_template_part( 'template-parts/section', 'list-checkbox', array('iterate_field' => 'os_fund_call') ); ?>
|
|
</div>
|
|
|
|
<?php if( get_field('os_funder_name') ): ?>
|
|
<div class="ofisuport-fund-info-field">
|
|
<p class="ofisuport-funder-name"><?php the_field('os_funder_name'); ?></p>
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
<?php if( get_field('os_fund_contact_name') ): ?>
|
|
<div class="ofisuport-fund-info-field">
|
|
<p class="ofisuport-fund-contact-name"><?php the_field('os_fund_contact_name'); ?></p>
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
<?php if( get_field('os_fund_web') ): ?>
|
|
<div class="ofisuport-fund-info-field">
|
|
<p class="ofisuport-fund-web"><a href="<?php the_field('os_fund_web'); ?>"><?php the_field('os_fund_web'); ?></a></p>
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
</section>
|
|
|
|
<div class="entry-content">
|
|
|
|
<?php
|
|
the_content(
|
|
sprintf(
|
|
wp_kses(
|
|
/* translators: %s: Name of current post. Only visible to screen readers */
|
|
__( 'Continue reading<span class="screen-reader-text"> "%s"</span>', 'ofisuport' ),
|
|
array(
|
|
'span' => array(
|
|
'class' => array(),
|
|
),
|
|
)
|
|
),
|
|
wp_kses_post( get_the_title() )
|
|
)
|
|
);
|
|
|
|
wp_link_pages(
|
|
array(
|
|
'before' => '<div class="page-links">' . esc_html__( 'Pages:', 'ofisuport' ),
|
|
'after' => '</div>',
|
|
)
|
|
);
|
|
?>
|
|
</div><!-- .entry-content -->
|
|
|
|
<section class="ofisuport-fund-info-fields">
|
|
|
|
<div class="ofisuport-fund-info-field">
|
|
<h6>Dirigit a</h6>
|
|
<?php get_template_part( 'template-parts/section', 'list-checkbox', array('iterate_field' => 'os_fund_target') ); ?>
|
|
</div>
|
|
|
|
<div class="ofisuport-fund-info-field">
|
|
<h6>Tipus d'ajuda</h6>
|
|
<?php get_template_part( 'template-parts/section', 'list-checkbox', array('iterate_field' => 'os_fund_source') ); ?>
|
|
</div>
|
|
|
|
<div class="ofisuport-fund-info-field">
|
|
<h6>Sectors</h6>
|
|
<?php get_template_part( 'template-parts/section', 'list-checkbox', array('iterate_field' => 'os_fund_field') ); ?>
|
|
</div>
|
|
|
|
<div class="ofisuport-fund-info-field">
|
|
<h6>Termini</h6>
|
|
<?php if( get_field('os_fund_apply_begin') || get_field('os_fund_apply_end') ): ?>
|
|
<ul class="oficina-suport-label item-os_fund_dates">
|
|
<li> <?php the_field('os_fund_apply_begin'); ?> </li>
|
|
<li> <?php the_field('os_fund_apply_end'); ?> </li>
|
|
</ul>
|
|
<?php endif; ?>
|
|
</div>
|
|
|
|
<?php if( get_field('os_fund_web') ): ?>
|
|
<div class="ofisuport-fund-info-field">
|
|
<h6>+ Informació</h6>
|
|
<p><a href="<?php the_field('os_fund_web'); ?>" class="button button-more button-letsgo">ves-hi</a></p>
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
<div class="ofisuport-fund-info-field">
|
|
<h6>Necessites assesorament?</h6>
|
|
<p><a href="<?php echo esc_url( home_url( '/consultoria/' ) ); ?>" class="button button-more button-ourservices">Oferim serveis de consultoria</a></p>
|
|
</div>
|
|
|
|
</section>
|
|
<footer class="entry-footer">
|
|
<?php ofisuport_entry_footer(); ?>
|
|
</footer><!-- .entry-footer -->
|
|
</article><!-- #post-<?php the_ID(); ?> -->
|