mirror of
https://git.code.sf.net/p/quake/website
synced 2025-05-31 01:11:04 +00:00
Misc. changes
This commit is contained in:
parent
496bed6da9
commit
13d9aea82a
1 changed files with 10 additions and 10 deletions
|
@ -1,17 +1,17 @@
|
||||||
<? // Preamble
|
<? // Preamble
|
||||||
$pageName = "Page Name";
|
$pageName = "Page Name";
|
||||||
$focused = "none"; // Dock icon name to gets a border
|
$focused = "none"; // Dock icon name to gets a border
|
||||||
require("parts/preamble.php"); // Load most of document
|
require "parts/preamble.php"; // Load most of document
|
||||||
|
|
||||||
function screenshot ($caption, $thumb, $full)
|
function screenshot ($name, $caption)
|
||||||
{
|
{
|
||||||
echo '<a href="img/screenshots/', "$full", '">';
|
echo '<A href="/img/screenshots/' . $name . '.png">';
|
||||||
echo '<img src="img/screenshots/', "$thumb", '" alt="fullsize" border="2">';
|
echo '<IMG src="/img/screenshots/' . $name . '.jpg" alt="fullsize" border="2">';
|
||||||
echo '</a>';
|
echo '</A>';
|
||||||
echo "<p>$caption</p>";
|
echo "<P>$caption</P>";
|
||||||
}
|
}
|
||||||
?>
|
|
||||||
<? screenshot ('Elderworld pool in id1vis with r_wateralpha 0.3' 'wateralpha-0.3.jpg', 'wateralpha-0.3.png') ?>
|
screenshot ('wateralpha-0.3', 'Elderworld pool in id1vis with r_wateralpha 0.3');
|
||||||
<?
|
|
||||||
require("parts/postamble.php"); // Finish this sucker up
|
require "parts/postamble.php"; // Finish this sucker up
|
||||||
?>
|
?>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue