⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 blog.php

📁 Joomla15 - 最新开源CMS
💻 PHP
字号:
<?php defined('_JEXEC') or die('Restricted access'); ?><?php if ($this->params->get('show_page_title')) : ?><div class="componentheading<?php echo $this->params->get('pageclass_sfx');?>">	<?php echo $this->params->get('page_title'); ?></div><?php endif; ?><table class="blog<?php echo $this->params->get('pageclass_sfx'); ?>" cellpadding="0" cellspacing="0"><?php if ($this->params->def('show_description', 1) || $this->params->def('show_description_image', 1)) :?><tr>	<td valign="top">	<?php if ($this->params->get('show_description_image') && $this->section->image) : ?>		<img src="images/stories/<?php echo $this->section->image;?>" align="<?php echo $this->section->image_position;?>" hspace="6" alt="" />	<?php endif; ?>	<?php if ($this->params->get('show_description') && $this->section->description) : ?>		<?php echo $this->section->description; ?>	<?php endif; ?>		<br/>		<br/>	</td></tr><?php endif; ?><?php if ($this->params->def('num_leading_articles', 1)) : ?><tr>	<td valign="top">	<?php for ($i = 0; $i < $this->params->get('num_leading_articles'); $i ++) : ?>		<?php if ($i + $this->pagination->limitstart >= $this->total) : break; endif; ?>		<div>		<?php			$this->item =& $this->getItem($i, $this->params);			echo $this->loadTemplate('item');		?>		</div>	<?php endfor; ?>	</td></tr><?php else : $i = 0; endif; ?><?php if ($this->params->def('num_intro_articles', 4) && ($i + $this->pagination->limitstart < $this->total)) : ?><tr>	<td valign="top">		<table width="100%" cellpadding="0" cellspacing="0">		<tr>		<?php			$divider = '';			for ($z = 0; $z < $this->params->def('num_columns', 2); $z ++) :				if ($z > 0) : $divider = " column_separator"; endif; ?>				<td valign="top" width="<?php echo intval(100 / $this->params->get('num_columns')) ?>%" class="article_column <?php echo $divider;?>">				<?php for ($y = 0; $y < $this->params->get('num_intro_articles') / $this->params->get('num_columns'); $y++) :					if ($i < $this->params->get('num_intro_articles') && ($i + $this->pagination->limitstart < $this->total)) :						$this->item =& $this->getItem($i, $this->params);						echo $this->loadTemplate('item');						$i ++;					endif;				endfor; ?>				</td>		<?php endfor; ?>		</tr>		</table>	</td></tr><?php endif; ?><?php if ($this->params->def('num_links', 4) && ($i + $this->pagination->limitstart < $this->total)) : ?><tr>	<td valign="top">		<div class="blog_more<?php echo $this->params->get('pageclass_sfx');?>">			<?php				$this->links = array_splice($this->items, $i);				echo $this->loadTemplate('links');			?>		</div>	</td></tr><?php endif; ?><?php if ($this->params->def('show_pagination', 2)) : ?><tr>	<td valign="top" align="center">		<?php echo $this->pagination->getPagesLinks(); ?>		<br /><br />	</td></tr><?php endif; ?><?php if ($this->params->def('show_pagination_results', 1)) : ?><tr>	<td valign="top" align="center">		<?php echo $this->pagination->getPagesCounter(); ?>	</td></tr><?php endif; ?></table>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -