Kumi
c61ba4a695
- Set up a new WordPress theme with custom logo, header image, and menus - Implement the WP Bootstrap Navwalker for improved navigation - Add Bootstrap and jQuery for styling and functionality - Customize hero section via the Customizer API - Include footer with customizable text and social media links - Integrate featured articles and page templates - Enhance styles with a dedicated CSS file References: #123, #124 This addition provides a modern, responsive design tailored to the Duck Behavior Journal, enhancing user engagement and site navigation.
20 lines
No EOL
747 B
PHP
20 lines
No EOL
747 B
PHP
<?php get_header(); ?>
|
|
|
|
<!-- Paper Content -->
|
|
<section class="container my-5">
|
|
<div class="row">
|
|
<div class="col-lg-8 mx-auto">
|
|
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
|
|
<h1 class="display-4"><?php the_title(); ?></h1>
|
|
<p class="text-muted"><?php the_author(); ?> | <?php the_date(); ?></p>
|
|
<?php if (has_post_thumbnail()) : ?>
|
|
<img src="<?php the_post_thumbnail_url(); ?>" class="img-fluid mb-4" alt="<?php the_title(); ?>">
|
|
<?php endif; ?>
|
|
<?php the_content(); ?>
|
|
<?php endwhile;
|
|
endif; ?>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<?php get_footer(); ?>
|