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
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
<?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(); ?>
|
||||
Reference in New Issue
Block a user