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 ('webcore/init.php');
02  
03 /** @var THEMED_PAGE $Page */
04 $Page->title->subject = "Marco Von Ballmoos - Curriculum Vitae";
05 $Page->template_options->title = "C.V.";
06  
07 $Page->location->add_root_link ();
08 $Page->location->append ("Marco", "../");
09 $Page->location->append ("Curriculum Vitae");
10  
11 $Page->start_display ();
12 ?>
13 <div class="main-box">
14   <div class="text-flow">
15     <h1>Curriculum Vitae</h1>
16     <h2>Versions</h2>
17     <h3>Recent/Current</h3>
18     <p>This version is for potential employers and people interested in an overview of my experience.</p>
19     <ul>
20       <li><a href="2022_09.php?full=0">September 2022</a> (<a href="Marco_von_Ballmoos_CV_2022_09.pdf">PDF</a>)</li>
21     </ul>
22     <h3>Full</h3>
23     <p>This version is a complete documentation of every project, language, tool, environment, system I've used
24       or programmed for since the beginning of my career (and even before that, in school).</p>
25     <p>If you're interested in reading a bit and want the full overview, then this is for you.
26       If you're interested in a quick summary that you can ingest in 2-5 minutes, then consider the shorter version above.</p>
27     <ul>
28       <li><a href="2022_09.php">September 2022</a> (<a href="Marco_von_Ballmoos_CV_2022_09_full.pdf">PDF</a>)</li>
29       <li><a href="2022_01.php">January 2022</a> (<a href="Marco_von_Ballmoos_CV_2022_01_full.pdf">PDF</a>)</li>
30       <li><a href="2021_10.php">October 2021</a> (<a href="Marco_von_Ballmoos_CV_2021_10_full.pdf">PDF</a>)</li>
31       <li><a href="Marco_von_Ballmoos_CV_2021_01.pdf">January 2021</a> (PDF)</li>
32       <li><a href="Marco_von_Ballmoos_CV_2020_01.pdf">January 2020</a> (PDF)</li>
33       <li><a href="Marco_von_Ballmoos_CV_2019_01.pdf">January 2019</a> (PDF)</li>
34       <li><a href="2016_06.php">June 2016</a></li>
35       <li><a href="2002_10.php">October 2002</a></li>
36       <li><a href="2002_08.php">August 2002</a></li>
37       <li><a href="./2002_05.php">May 2002</a></li>
38     </ul>
39   </div>
40 </div>
41 <?php
42   $Page->finish_display ();
43 ?>