John Brouwers Veteranen Toernooi 2020

Datum:

Inschrijf link:
“>

Link note:

Uitnodiging:

” target=”_blank”>
Bekijk verslag

Important note:

<?php get_header(); ?>

<main class="toernooi-container" style="max-width:800px; margin:auto; padding:20px;">

    <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>

        <h1><?php the_title(); ?></h1>

        <p><strong>Datum:</strong> <?php the_field('datum'); ?></p>

        <p><strong>Inschrijf link:</strong>
            <a href="<?php the_field('inschrijf_link'); ?>" target="_blank">
                <?php the_field('inschrijf_link'); ?>
            </a>
        </p>

        <p><strong>Email:</strong> 
            <a href="mailto:<?php the_field('email'); ?>">
                <?php the_field('email'); ?>
            </a>
        </p>

        <p><strong>Link note:</strong> <?php the_field('link_note'); ?></p>

        <?php if ( get_field('uitnodiging') ) : ?>
            <p><strong>Uitnodiging:</strong></p>
            <a href="<?php echo wp_get_attachment_url( get_field('uitnodiging') ); ?>" target="_blank">
                Download uitnodiging
            </a>
        <?php endif; ?>

        <?php if ( get_field('toernooiverslag_en_resultaten') ) : ?>
            <p><strong>Toernooiverslag en resultaten:</strong></p>
            <a href="<?php echo wp_get_attachment_url( get_field('toernooiverslag_en_resultaten') ); ?>" target="_blank">
                Bekijk verslag
            </a>
        <?php endif; ?>

        <p><strong>Important note:</strong> <?php the_field('important_note'); ?></p>

    <?php endwhile; endif; ?>

</main>

<?php get_footer(); ?>

hello