Files
Your Name 6d4368fbd1 Initial commit: TechBlog Pro WordPress theme
Features:
- Modern UI with dark mode support
- Code highlighting with copy button
- Auto table of contents
- Reading time & views counter
- Responsive design
- Admin settings page
- AJAX search
2026-08-18 16:05:14 +08:00

26 lines
427 B
PHP
Executable File

<?php
/**
* Page Template
*
* @package TechBlog Pro
*/
get_header();
?>
<article class="single-post" <?php post_class(); ?>>
<?php while (have_posts()) : the_post(); ?>
<header class="post-header">
<h1 class="post-title"><?php the_title(); ?></h1>
</header>
<div class="post-content">
<?php the_content(); ?>
</div>
<?php endwhile; ?>
</article>
<?php get_footer(); ?>