26 lines
399 B
HTML
Executable File
26 lines
399 B
HTML
Executable File
<!DOCTYPE html>
|
|
<!-- Page: admin git pull -->
|
|
<html lang="fr">
|
|
|
|
<?php include('blocks/d.head.html'); ?>
|
|
|
|
<body>
|
|
|
|
<?php include('blocks/d.nav.html'); ?>
|
|
|
|
<section>
|
|
<h1><?=$head['title']?></h1>
|
|
<br>
|
|
<!-- Command output -->
|
|
<pre><?php
|
|
foreach($output as $line) {
|
|
echo $line."<br>";
|
|
}
|
|
?></pre>
|
|
</section>
|
|
|
|
<?php include('blocks/d.footer.html'); ?>
|
|
|
|
</body>
|
|
</html>
|