source: trunk/www/htdocs/screenshots.php @ 74

Last change on this file since 74 was 74, checked in by guyru, 6 years ago

work on screen shot page and initial import of the open yahtzee site
files to the svn

File size: 734 bytes
Line 
1<?php
2require_once("template.php");
3$template = new Template;
4$template->siteTitle = "Open Yahtzee - Screenshots";
5
6
7$template->content = <<<EOF
8<h2>Open Yahtzee - Screenshots</h2>
9<h4>Open Yahtzee 1.7</h4>
10<table class="screenshots">
11        <tr>
12                <td><div class="center">
13                        <a href="images/openyahtzee1.7_linux.jpg"><img src="images/openyahtzee1.7_linux_thumb.jpg" alt="screenshot" /></a></div>
14                        <div class="center">Open Yahtzee 1.7 on linux</div></td>
15                <td><div class="center">
16                        <a href="images/openyahtzee1.7_linux2.png"><img src="images/openyahtzee1.7_linux2_thumb.png" alt="screenshot"/></a></div>
17                        <div class="center">Open Yahtzee 1.7 on linux</div></td>
18        </tr>
19</table>
20EOF;
21
22if (!defined('__INDEX'))
23        $template->out();
24?>
Note: See TracBrowser for help on using the repository browser.