Meteotemplate - new free website template

Right, you ‘coders’, I need help. Can you be that person?

I’m doing a dead simple page for MT. I am still learning PHP so be kind, please.

This bit of code results in the image below, but what’s wrong with it? I’ve been to W3Schools, Stackoverflow and lots of other sites. Maybe age is catching up with me as I’m certainly missing something. It seems to my ‘include’ attempt.

<?php
    ############################################################################
	# 	Meteotemplate
	# 	http://www.meteotemplate.com
	# 	Free website template for weather enthusiasts
	# 	Author: Jachym
	#           Brno, Czech Republic
	# 	First release: 2015
	#
	############################################################################
	#
	#	Blank Page
	#
	# 	Template for blank page
	#
	############################################################################       
	include("../config.php");
	include($baseURL."css/design.php");
	include($baseURL."header.php");
?>

<!DOCTYPE html>
<html>
 <?php error_reporting(E_ALL);?>
	<head>
		<title><?php echo $pageName?></title>
		<?php metaHeader()?>
		<style>
			
		</style>
	</head>
	<body>
		<div id="main_top">
			<?php bodyHeader();?>
			<?php include($baseURL."menu.php")?>
		</div>
		<div id="main">
			<div class="textDiv">
				<h3><center>Daily 10-minute Log</center></h3>
	<center>The log begins at 0910 one day and ends at 0900 the next.
The new day's report replaces the previous day's when the 0910 report is transferred to the site.
It does not refresh automatically, you will need to use your browser for that.</center>
				
</div>
				
		</div>
                <center><?php include("http://www.blaxlandweather.com/dailylogout.html")?></center>
		<?php include($baseURL."footer.php")?>
	</body>
</html>

I’ve been researching and improvising for hours and am now stuck. Any help will be most gratefully accepted.