🤩 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:index.php
<?php /** * Index Template (Fallback) * * @package Ophiro_Ventures */ get_header(); ?> <section class="o-section" style="padding-top:calc(var(--space-5xl) + 80px);"> <div class="o-container"> <div class="o-content-grid o-stagger"> <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?> <a href="<?php the_permalink(); ?>" class="o-content-card"> <div class="o-content-card__image"> <?php if ( has_post_thumbnail() ) : ?> <?php the_post_thumbnail( 'ophiro-card', array( 'loading' => 'lazy' ) ); ?> <?php else : ?> <div style="width:100%;height:100%;background:var(--ophiro-bg-surface);"></div> <?php endif; ?> </div> <div class="o-content-card__body"> <h3 class="o-content-card__title"><?php the_title(); ?></h3> <p class="o-content-card__excerpt"><?php echo esc_html( wp_trim_words( get_the_excerpt(), 22 ) ); ?></p> </div> </a> <?php endwhile; endif; ?> </div> <?php ophiro_pagination(); ?> </div> </section> <?php get_footer(); ?>
Save Changes
Cancel
Create New File
Create New Folder