🤩 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-research.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('Research', '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="service-card"> <div class="service-icon"><i class="fas fa-microscope"></i></div> <h4><?php the_title(); ?></h4> <p><?php echo unfia_excerpt(20); ?></p> <a href="<?php the_permalink(); ?>" class="service-link"><?php _e('Read More', 'unfia'); ?> <i class="fas fa-arrow-right"></i></a> </div> </div> <?php endwhile; wp_reset_postdata(); else: ?> <div class="col-12 text-center"><p><?php _e('No research found.', 'unfia'); ?></p></div> <?php endif; ?> </div> </div> </section> <?php get_footer(); ?>
Save Changes
Cancel
Create New File
Create New Folder