orgen-theme/timeline.php
2023-04-06 16:58:33 +08:00

32 lines
594 B
PHP

<?php
/*
Template Name: 归档时间轴
*/
?>
<?php get_header(); ?>
<div class="page-information-card-container"></div>
<?php get_sidebar(); ?>
<div id="primary" class="content-area">
<main id="main" class="site-main" role="main">
<?php
while ( have_posts() ) :
the_post();
get_template_part( 'template-parts/content', 'timeline' );
if (get_option("argon_show_sharebtn") != 'false') {
get_template_part( 'template-parts/share' );
}
if (comments_open() || get_comments_number()) {
comments_template();
}
endwhile;
?>
<?php get_footer(); ?>