🤩 File Manager - Mr.X
PHP:
8.3.33
Server:
Apache
OS:
Linux 5.14.0-611.49.1.el9_7.x86_64
User:
websparkit
Navigate
Upload:
Upload
New File
New Folder
Editing:archive-award.php
<?php get_header(); ?> <section class="page-banner-section"> <div class="container"> <div class="row"> <div class="col-12 text-center"> <h1 class="page-banner-title"><?php _e('Awards', 'unfia'); ?></h1> <?php unfia_breadcrumbs(); ?> </div> </div> </div> </section> <section class="archive-section section-padding"> <div class="container"> <div class="row g-4"> <?php if (have_posts()): while (have_posts()): the_post(); ?> <div class="col-lg-4 col-md-6" data-aos="fade-up"> <div class="award-card"> <?php if (has_post_thumbnail()): ?> <div class="award-card-image"> <?php the_post_thumbnail('unfia-card', ['class' => 'img-fluid']); ?> </div> <?php endif; ?> <div class="award-card-body"> <span class="award-year"><?php echo esc_html(get_post_meta(get_the_ID(), '_award_year', true)); ?></span> <h4><?php the_title(); ?></h4> <p><?php echo esc_html(get_post_meta(get_the_ID(), '_award_recipient', true)); ?></p> <a href="<?php the_permalink(); ?>" class="btn btn-outline-primary btn-sm"><?php _e('View Details', 'unfia'); ?></a> </div> </div> </div> <?php endwhile; wp_reset_postdata(); else: ?> <div class="col-12 text-center"><p><?php _e('No awards found.', 'unfia'); ?></p></div> <?php endif; ?> </div> </div> </section> <?php get_footer(); ?>
Save Changes
Cancel
Create New File
Create New Folder