6d4368fbd1
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
26 lines
427 B
PHP
Executable File
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(); ?>
|