mirror of
https://ghproxy.net/https://github.com/AlxMedia/dashwall.git
synced 2025-08-26 15:22:37 +08:00
40 lines
No EOL
740 B
PHP
40 lines
No EOL
740 B
PHP
<?php get_header(); ?>
|
|
|
|
<div class="page-col-center">
|
|
|
|
<div class="page-card page-card-page stickywrap">
|
|
|
|
<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(); ?>
|