mirror of
https://gh.wpcy.net/https://github.com/AlxMedia/clearer.git
synced 2026-07-17 11:37:05 +08:00
44 lines
No EOL
783 B
PHP
44 lines
No EOL
783 B
PHP
<?php get_header(); ?>
|
|
|
|
<div class="content">
|
|
|
|
<div class="stickywrap">
|
|
|
|
<h3 class="stickywrap-heading">
|
|
<i class="fas fa-pencil"></i>
|
|
</h3>
|
|
|
|
<div class="stickywrap-inner">
|
|
|
|
<?php while ( have_posts() ): the_post(); ?>
|
|
|
|
<article <?php post_class(); ?>>
|
|
|
|
<header class="entry-header group">
|
|
<h1 class="entry-title"><?php the_title(); ?></h1>
|
|
</header>
|
|
|
|
<div class="entry themeform">
|
|
<?php the_content(); ?>
|
|
<div class="clear"></div>
|
|
</div><!--/.entry-->
|
|
|
|
<div class="entry-footer group">
|
|
<div class="entry-comments themeform">
|
|
<?php comments_template(); ?>
|
|
</div>
|
|
</div>
|
|
|
|
</article>
|
|
|
|
<?php endwhile; ?>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<?php get_sidebar(); ?>
|
|
|
|
<?php get_footer(); ?>
|