50 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			50 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
<?php include _include(APP_PATH.'view/htm/header.inc.htm');?>
 | 
						|
 | 
						|
<!--{hook index_start.htm}-->
 | 
						|
 | 
						|
<div class="row">
 | 
						|
	<div class="col-lg-12 main">
 | 
						|
		<!--{hook index_main_start.htm}-->
 | 
						|
		<div class="card card-threadlist">
 | 
						|
 | 
						|
			<div class="card-header d-flex justify-content-between">
 | 
						|
				<div style="width:100%"><h4 style="margin-bottom: 0"><center>环保公示</center></h4></div>
 | 
						|
			</div>
 | 
						|
 | 
						|
			<!--
 | 
						|
			<div class="card-header">
 | 
						|
				<ul class="nav nav-tabs card-header-tabs">
 | 
						|
					<li class="nav-item">
 | 
						|
						<a class="nav-link <?php echo $active == 'default' ? 'active' : '';?>" href="./<?php echo url("$route");?>"><?php echo lang('new_thread');?></a>
 | 
						|
					</li>
 | 
						|
				</ul>
 | 
						|
			</div>
 | 
						|
			-->
 | 
						|
			<div class="card-body">
 | 
						|
				<ul class="list-unstyled threadlist mb-0">
 | 
						|
					<!--{hook index_threadlist_before.htm}-->
 | 
						|
					<?php include _include(APP_PATH.'view/htm/thread_list.inc.htm');?>
 | 
						|
					<!--{hook index_threadlist_after.htm}-->
 | 
						|
				</ul>
 | 
						|
			</div>
 | 
						|
		</div>
 | 
						|
		
 | 
						|
		<?php include _include(APP_PATH.'view/htm/thread_list_mod.inc.htm');?>
 | 
						|
		
 | 
						|
		<!--{hook index_page_before.htm}-->
 | 
						|
		<nav class="my-3"><ul class="pagination justify-content-center flex-wrap"><?php echo $pagination; ?></ul></nav>
 | 
						|
		<!--{hook index_page_end.htm}-->
 | 
						|
	</div>
 | 
						|
 | 
						|
 | 
						|
</div>
 | 
						|
 | 
						|
<!--{hook index_end.htm}-->
 | 
						|
 | 
						|
<?php include _include(APP_PATH.'view/htm/footer.inc.htm');?>
 | 
						|
 | 
						|
<script>
 | 
						|
$('li[data-active="fid-0"]').addClass('active');
 | 
						|
</script>
 | 
						|
 | 
						|
<!--{hook index_js.htm}--> |