🤩 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:home.php
<?php /** * Home Template (Blog) * * @package Ophiro_Ventures */ get_header(); ?> <section class="o-section" style="padding-top:calc(var(--space-5xl) + 80px);"> <div class="o-container"> <div class="o-reveal" style="text-align:center;margin-bottom:var(--space-4xl);"> <h6><?php esc_html_e( 'The Journal', 'ophiro' ); ?></h6> <h1 style="font-size:clamp(2.5rem,5vw,4.5rem);font-weight:300;"><?php esc_html_e( 'Stories & Insights', 'ophiro' ); ?></h1> <div class="o-gold-line o-gold-line--center"></div> </div> </div> </section> <section class="o-section o-section--sm" style="padding-top:0;"> <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"> <?php ophiro_post_meta(); ?> <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