Aims Template

This page serves as a template for a project aims page. read the documentation for details on how to edit this page.

You must also edit the respective *.php file. Basically (i) replace the string 'template' with your project akronym and (ii) edit the link in the section with the ID content to point to the *.html file. Furthermore, don't forget to (iii) create the file 'project_template_header.html' in the folder /common.

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="httpartnersp://www.w3.org/1999/xhtml">
<head>
  <?php virtual("/common/project_template_header.html"); ?>
</head>

<body>
  <div id="page">
    <div id="topmenu">
      <?php virtual("/common/topmenu.html"); ?>
    </div>
  
    <div id="banner">
      <div id="bannertext">
      <p><a href="http://embsys.technikum-wien.at">
           Department of<br />Embedded Systems</a></p>
      </div>
      <div id="templatebanner">
      </div>
    </div> 

    <div id="sidebar">
      <div id="sidebar-content">
        <div id="sidebar-bg">
          <?php virtual("/projects/template/sidebarmenu.html"); ?>
        </div>
      </div>
    </div>

    <div id="content">
      <?php virtual("aims.html"); ?>
    </div>

    <div id="footer">
       <?php virtual("/common/footerbar.html"); ?>
    </div>    
  </div>  
</body>
</html>

Furthermore, you'll need to edit the file 'sidebarmenu.html' to accommodate for your menu entries:

<h1>Template</h1>

<ul>
  <li><a href="/projects/template/staff/staff.php">Project Staff</a></li>
  <li><a href="/projects/template/aims/aims.php">Aims</a></li>
  <li id="m2"><a href="/projects/template/aims/specific_aims.php">
    Specific Aims</a></li>
</ul>