mirror of
				https://github.com/mashirozx/sakura.git
				synced 2025-05-29 01:49:21 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			24 lines
		
	
	
		
			541 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			541 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php 
 | 
						|
 | 
						|
/**
 | 
						|
 Template Name: links
 | 
						|
 */
 | 
						|
 | 
						|
get_header(); 
 | 
						|
 | 
						|
?>
 | 
						|
	<?php while(have_posts()) : the_post(); ?>
 | 
						|
	<?php if(akina_option('patternimg') || !get_post_thumbnail_id(get_the_ID())) { ?>
 | 
						|
	<span class="linkss-title"><?php the_title();?></span>
 | 
						|
	<?php } ?>
 | 
						|
		<article <?php post_class("post-item"); ?>>
 | 
						|
			<?php the_content(); ?>
 | 
						|
			<div class="links">
 | 
						|
				<?php echo get_link_items(); ?>
 | 
						|
			</div>
 | 
						|
		</article>
 | 
						|
        <div class="have-toc"></div><div class="toc-container"><div class="toc"></div></div>
 | 
						|
	<?php endwhile; ?>
 | 
						|
<?php
 | 
						|
get_footer();
 |