The best way to learn how to use the WebCore is by example. See the documentation for more information.
The requested URL is always shown first; if a page uses one or more WebCore templates, those are shown afterwards.
00 <?php
01 include_once ('systems/init.php');
02
03 $Page->template_options->title = 'Mark III';
04 $Page->title->subject = 'Mark III';
05
06 $Page->location->append ('Systems', '../../');
07 $Page->location->append ('Models');
08 $Page->location->append ('Mark III');
09
10 $Page->start_display ();
11 ?>
12 <div class="main-box">
13 <div class="text-flow">
14 <div class="align-right">
15 <a href="../images/mark_III.jpg"><img src="../images/mark_III_tn.jpg" alt="Mark III"></a>
16 </div>
17 <p>The Mark III is the oldest system refurbished by earthli Systems. It
18 also has no new parts and was simply a re-installation of the system and
19 programs.</p>
20 <h3>History</h3>
21 <p>The machine comes originally from <a href="http://www.logicat.com">Logicat
22 Inc.</a> and was used in production.</p>
23 <h3>Components</h3>
24 <table class="basic columns left-labels">
25 <tr>
26 <th>Processor</th>
27 <td><a href="http://www.intel.com">Intel</a> Pentium 90MHz</td>
28 </tr>
29 <tr>
30 <th>RAM</th>
31 <td>PC100 96MB SDRAM DIMM </td>
32 </tr>
33 <tr>
34 <th>Video Card</th>
35 <td><a href="http://www.diamondmm.com">Diamond</a> S3 Trio PCI</td>
36 </tr>
37 <tr>
38 <th>CD-Rom</th>
39 <td>CD-Rom 2x</td>
40 </tr>
41 <tr>
42 <th>Hard Drive</th>
43 <td>1.0 GB IDE, 4.75 GB IDE</td>
44 </tr>
45 <tr>
46 <th>Modem</th>
47 <td>Sportster 28.8</td>
48 </tr>
49 </table>
50 <p class="info-box-bottom">Note: All drivers are part of the standard Windows
51 98 driver package.</p>
52 </div>
53 </div>
54 <?php $Page->finish_display (); ?>
55
56