2017-01-05 18:01:50 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
2017-01-11 14:18:56 +00:00
|
|
|
<title><?php echo htmlentities($pageTitle); ?></title>
|
2017-01-05 18:01:50 +00:00
|
|
|
<link rel="stylesheet" type="text/css" href="/css/style.css">
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<a href="/">Home</a>
|
2017-01-11 14:18:56 +00:00
|
|
|
<a href="/?action=changes">Changes</a>
|
|
|
|
<h1><?php echo htmlentities($headerTitle); ?></h1>
|
2017-01-05 18:01:50 +00:00
|
|
|
<?php echo $contentHtml; ?>
|
2017-01-11 10:46:04 +00:00
|
|
|
<hr/>
|
|
|
|
<div class="debug">
|
|
|
|
<p>Base URL: <?php echo htmlentities($baseUrl); ?></p>
|
|
|
|
<?php for ($i = count($curlCommands) - 1; $i >= 0; $i--): $cmd = $curlCommands[$i]; ?>
|
|
|
|
<?php echo $cmd; ?><br/>
|
|
|
|
<?php endfor; ?>
|
|
|
|
</div>
|
2017-01-05 18:01:50 +00:00
|
|
|
</body>
|
|
|
|
</head>
|