🤩 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:single.php
<?php /** * Single Post Template * * @package Ophiro_Ventures */ get_header(); ?> <section class="o-section" style="padding-top:calc(var(--space-5xl) + 80px);"> <div class="o-container o-container--narrow"> <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?> <article class="o-reveal"> <header style="margin-bottom:var(--space-3xl);"> <?php ophiro_post_meta(); ?> <h1 style="font-size:clamp(2.5rem,5vw,4rem);font-weight:300;margin-top:var(--space-lg);margin-bottom:var(--space-xl);"><?php the_title(); ?></h1> <?php if ( has_post_thumbnail() ) : ?> <div style="aspect-ratio:16/9;overflow:hidden;margin-bottom:var(--space-2xl);"> <?php the_post_thumbnail( 'ophiro-gallery', array( 'loading' => 'lazy' ) ); ?> </div> <?php endif; ?> </header> <div class="o-entry-content" style="padding-bottom:var(--space-4xl);"> <?php the_content(); ?> </div> </article> <?php if ( comments_open() || get_comments_number() ) : ?> <?php comments_template(); ?> <?php endif; ?> <?php endwhile; endif; ?> </div> </section> <?php get_footer(); ?>
Save Changes
Cancel
Create New File
Create New Folder