diff options
Diffstat (limited to '')
| -rw-r--r-- | inc/classic-contents.inc.php | 44 | 
1 files changed, 22 insertions, 22 deletions
| diff --git a/inc/classic-contents.inc.php b/inc/classic-contents.inc.php index f9fb068..d1687a5 100644 --- a/inc/classic-contents.inc.php +++ b/inc/classic-contents.inc.php @@ -2,18 +2,18 @@  function  jo_head($title) {  ?> -	<html> -		<head> -			<title>Joe's own website - <?php echo "$title"; ?></title> -			<link rel="stylesheet" type="text/css" href="css/site.css"> -			<meta charset="UTF-8"> -			<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"> -		</head> -		<body> -			<div class="fullpage"> -				<header> -					<h1><a href="index.php">Joe's dev blog - <?php echo "$title"; ?></a></h1> -				</header> +<html> +	<head> +		<title>Joe's own website - <?php echo "$title"; ?></title> +		<link rel="stylesheet" type="text/css" href="css/site.css"> +		<meta charset="UTF-8"> +		<script src="https://kit.fontawesome.com/1d97d0fb1c.js" crossorigin="anonymous"></script> +	</head> +	<body> +		<div class="fullpage"> +			<header> +				<h1><a href="index.php">Joe's dev blog - <?php echo "$title"; ?></a></h1> +			</header>  <?php  } @@ -41,16 +41,16 @@ jo_sidebar() {  function  jo_footer() {  ?> -	<footer> -		<p> -			Copyright © 2020, Joe - -			see <a href="license.php">LICENSE</a> - -			we do not use cookies -		</p> -	</footer> -			</div> -		</body> -	</html> +			<footer> +				<p> +					Copyright © 2020, Joe - +					see <a href="license.php">LICENSE</a> - +					we do not use cookies +				</p> +			</footer> +		</div> +	</body> +</html>  <?php  }  ?> | 
