Basic release

This commit is contained in:
2023-12-30 14:28:21 +01:00
parent 4869f1ef2f
commit bf2892ab29
125 changed files with 10729 additions and 0 deletions

17
buena/content.php Normal file
View File

@ -0,0 +1,17 @@
<article id="post-<?php the_ID(); ?>" <?php post_class( 'clearfix' ); ?>>
<?php if ( is_singular() ): ?>
<?php the_content(); ?>
<p><?php the_tags(); ?></p>
<?php wp_link_pages( array( 'before' => '<nav class="page-links">Seiten:', 'after' => '</nav>' ) ); ?>
<?php else: ?>
<a class="h h-box h-box-blaugelb<?php if ( ! has_post_thumbnail() ): ?> h-box-blaugelb-bildlos<?php endif; ?>" href="<?php echo esc_url( get_permalink() ); ?>">
<?php the_post_thumbnail( 'gallery-thumb', [ 'alt' => '' ] ); ?>
<?php if ( get_the_title() ): ?>
<header class="wrap">
<h3><?php the_title(); ?></h3>
</header>
<?php endif; ?>
</a>
<?php has_excerpt() ? the_excerpt() : the_content(); ?>
<?php endif; ?>
</article>