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 ('quake/init.php');
02  
03   $Page->title->subject = 'Change Log';
04  
05   $Page->location->append ("Quake III Arena", "./");
06   $Page->location->append ("Change Log");
07  
08   $Page->start_display ();
09 ?>
10 <div class="main-box">
11   <div class="text-flow">
12     <h4>11/04/2001 - 10:42 PM EST</h4>
13     <ol>
14       <li>Converted the entire quake site to use the earthli settings.</li>
15       <li>Added a 'Quake' color theme to the earthli settings.</li>
16       <li>Reorganized everything to remove all frames and be more faithful to the style of the rest of the site.</li>
17     </ol>
18     <h4>05/24/2001 - 10:28 AM EST</h4>
19     <ol>
20       <li>Fixed some errors in the generated MKLog files and removed extra players
21         from aggregate lists.</li>
22       <li>Added a new set of statistics generated by <a href="http://www.aeons.de/AEstats/">AEStats</a>.
23         MKLog statistics are also still generated.</li>
24     </ol>
25     <h4>04/23/2001 - 10:28 PM EST</h4>
26     <ol>
27       <li>Added <a href="battles.php">battle statistics</a> using <a href="http://www.planetquake.com/killer/stuff_mklog.asp">MKLog</a>.</li>
28     </ol>
29     <h4>120/6/1999 - 10:28 PM EST</h4>
30     <ol>
31       <li>Added a section showing how to get your <a href="ping.php">ping</a>
32         on a server. Revamped the home page (broke it into sections). Started
33         a section on <a href="server_admin.php">setting up and administering</a>
34         a server.</li>
35     </ol>
36     <h4>12/04/1999 - 9:49 PM EST</h4>
37     <ol>
38       <li>Added a section for the <a href="lagometer.php">Lagometer</a>. Modified
39         and added styles for the site. Also moved this section to a work log,
40         added a section for news and new home page with a site map of sorts.</li>
41     </ol>
42     <h4>12/03/1999 - 11:12 AM EST</h4>
43     <ol>
44       <li>Linked the in the <a href="medals.php">medals</a> section.</li>
45     </ol>
46     <h4>12/02/1999 - 10:24 PM EST</h4>
47     <ol>
48       <li>I've created a whole section on <a href="optimizations.php">optimizing</a>
49         Quake III Arena for speed and a discussion of the tradeoffs involved.</li>
50     </ol>
51     <h4>11/22/1999 - 11:10 PM EST</h4>
52     <ol>
53       <li>I'm just starting out here, so the site is a little sparse for now.
54         I created a <a href="warriors.php">characters</a> page and a <a href="name.php">names</a>
55         page.</li>
56     </ol>
57   </div>
58 </div>
59 <?php $Page->finish_display (); ?>
60
61