website/screenshots.php

18 lines
530 B
PHP
Raw Normal View History

2000-10-05 05:44:29 +00:00
<? // Preamble
$pageName = "Page Name";
$focused = "none"; // Dock icon name to gets a border
2000-10-05 06:11:38 +00:00
require "parts/preamble.php"; // Load most of document
2000-10-05 05:47:23 +00:00
2000-10-05 06:11:38 +00:00
function screenshot ($name, $caption)
2000-10-05 05:47:23 +00:00
{
2000-10-05 06:11:38 +00:00
echo '<A href="/img/screenshots/' . $name . '.png">';
echo '<IMG src="/img/screenshots/' . $name . '.jpg" alt="fullsize" border="2">';
echo '</A>';
echo "<P>$caption</P>";
2000-10-05 05:47:23 +00:00
}
2000-10-05 06:11:38 +00:00
screenshot ('wateralpha-0.3', 'Elderworld pool in id1vis with r_wateralpha 0.3');
require "parts/postamble.php"; // Finish this sucker up
2000-10-05 05:44:29 +00:00
?>