header.php

来自「Gregarius是一个基于web的RSS/RDF/ATOM聚合程序」· PHP 代码 · 共 22 行

PHP
22
字号
	<meta http-equiv="Content-Type" content="text/html; charset=<?php echo rss_header_charset() ?>" />	<title><?php echo rss_header_title() ?></title>	<meta name="robots" content="<?php echo rss_header_robotmeta(); ?>" />	<link rel="stylesheet" type="text/css" href="<?php echo getExternalThemeFile('css/layout.css'); ?>" />	<link rel="stylesheet" type="text/css" href="<?php echo getExternalThemeFile('css/look.css'); ?>" />	<link rel="stylesheet" type="text/css" href="<?php echo getPath() ?>css/print.css" media="print" />	<?php echo rss_scheme_stylesheets(); ?><?php echo rss_plugin_hook('rss.plugins.stylesheets', null); ?><?php if(rss_header_autorefreshtime() > 0 && !getConfig('rss.config.restrictrefresh')) { ?>	<meta http-equiv="refresh"  content="<?php echo rss_header_autorefreshtime(); ?>;<?php echo rss_header_autorefreshurl() ?>" /><?php } ?><?php 	foreach(rss_header_links() as $link) { 		list($rel,$title,$href) = $link; ?>	<link rel="<?php echo $rel ?>" title="<?php echo $title ?>" href="<?php echo $href ?>" /><?php } ?><?php foreach(rss_header_javascripts() as $script) { ?>	<script type="text/javascript" src="<?php echo $script ?>"></script>	<?php } ?> 

⌨️ 快捷键说明

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