我正在创建我的投资组合网站,并且我想将 head 部分作为 php 包含在我的页面上。原因是该站点将有相当多的页面,我希望稍后对诸如整理 css 文件之类的事情进行更改。
例如;
<head>
<?php include('head.php'); ?>
</head>
与下面的所有内容相反,每一页都显示:
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title></title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width">
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/1140.css">
<link rel="stylesheet" href="css/ie.css">
<script src="js/vendor/modernizr-2.6.1.min.js"></script>
</head>
我只是不知道这是否是一个好的做法,因为这是我的投资组合网站,我需要从一开始就正确的代码,因为他们可能也会研究它的标准。
你对人们有什么意见和建议?谢谢。