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 = 'Medals';
04  
05   $Page->location->append ("Quake III Arena", "./");
06   $Page->location->append ("Medals");
07  
08   $path = $Page->resolve_path ('{data}quake/images/medals/');
09  
10   $Page->start_display ();
11 ?>
12 <div class="main-box">
13   <div class="text-flow">
14     <p>During a match, you will sometimes get medals or 'honors'. As you progress
15       through the single player game, you accumulate these. When you get one,
16       a small version flashes over your head for about 2 seconds in the game.
17       They are also displayed at the end of the match. </p>
18     <img class="align-left" src="<?php echo $path; ?>accuracy.jpg" alt="Accuracy">
19     <div style="margin-left: 80px">
20       <h3>Accuracy</h3>
21       <p>Completing a match with better than 50% accuracy</p>
22     </div>
23     <img class="align-left clear-left" src="<?php echo $path; ?>excellent.jpg" alt="Excellent">
24     <div style="margin-left: 80px">
25     <h3>Excellent</h3>
26     <p>Fragging an opponent within 4 seconds of a previous frag</p>
27     </div>
28     <img class="align-left clear-left" src="<?php echo $path; ?>frags.jpg" alt="Frags">
29     <div style="margin-left: 80px">
30       <h3>Frags</h3>
31       <p>Awarded after each 100 frags earned</p>
32     </div>
33     <img class="align-left clear-left" src="<?php echo $path; ?>gauntlet.jpg" alt="Gauntlet">
34     <div style="margin-left: 80px">
35       <h3>Gauntlet</h3>
36       <p>Punching someone to death.</p>
37     </div>
38     <img class="align-left clear-left" src="<?php echo $path; ?>impressive.jpg" alt="Impressive">
39     <div style="margin-left: 80px">
40       <h3>Impressive</h3>
41       <p>Awarded for every TWO successive railgun shots</p>
42     </div>
43     <img class="align-left clear-left" src="<?php echo $path; ?>victory.jpg" alt="Victory">
44     <div style="margin-left: 80px">
45       <h3>Victory</h3>
46       <p>This is winning a game without being fragged (or suicide)</p>
47     </div>
48     <p class="info-box-bottom">Screenshots Courtesy of <a href="http://www.idsoftware.com/">id
49       software</a> and <a href="http://q3a.stomped.com/">Stomped</a>. All images
50       and names &copy; <a href="http://www.idsoftware.com/">id software</a>.</p>
51   </div>
52 </div>
53 <?php $Page->finish_display (); ?>
54