web-wordpress-kit/kit/index.php

66 lines
1.6 KiB
PHP

<?php
get_header();
?>
<main>
<section class="background-color-white">
<div class="content-wrap">
<h2>
<?php $categories = get_the_category();
if ( ! empty( $categories ) ) {
echo esc_html( $categories[0]->name );
} ?>
</h2>
<div class="container container-3-cols">
<?php
if ( have_posts() ) :
while ( have_posts() ) :
the_post();
?>
<div class="column">
<div class="teaser-box teaser-box-color-brand-secondary" id="c959">
<?php echo '<a href="' . esc_url( get_permalink() ) . '">'; ?>
<figure class="teaser-box-image">
<?php if ( has_post_thumbnail() ) { ?>
<img src="<?php echo get_the_post_thumbnail_url(); ?>">
<?php } ?>
</figure>
</a>
<?php echo '<a href="' . esc_url( get_permalink() ) . '">'; ?>
<h3>
<?php echo esc_html( get_the_title() ); ?>
</h3>
</a>
<p>
<?php echo wp_strip_all_tags( get_the_excerpt(), true ); ?>
</p>
<a href="/de/berufsausbildung" class="teaser-box-category-marker">
Berufsausbildung
</a>
</div>
</div>
<?php
endwhile;
wp_reset_postdata();
endif;
?>
</div>
</div>
</section>
</main>
<?php
get_template_part('template-parts/sidebar');
get_footer();