mirror of
https://git.code.sf.net/p/quake/website
synced 2024-11-27 22:42:57 +00:00
17 lines
530 B
PHP
17 lines
530 B
PHP
<? // Preamble
|
|
$pageName = "Page Name";
|
|
$focused = "none"; // Dock icon name to gets a border
|
|
require "parts/preamble.php"; // Load most of document
|
|
|
|
function screenshot ($name, $caption)
|
|
{
|
|
echo '<A href="/img/screenshots/' . $name . '.png">';
|
|
echo '<IMG src="/img/screenshots/' . $name . '.jpg" alt="fullsize" border="2">';
|
|
echo '</A>';
|
|
echo "<P>$caption</P>";
|
|
}
|
|
|
|
screenshot ('wateralpha-0.3', 'Elderworld pool in id1vis with r_wateralpha 0.3');
|
|
|
|
require "parts/postamble.php"; // Finish this sucker up
|
|
?>
|