<?php
 
  $base_url = "http://test.uws.is.ed.ac.uk";
  $contact_link = $base_url . "/information-services/contact-page";
  
  // Build up the bread trail as required, replacing these values with values
  // that correspond to the main Dashboards page in EdWeb.
  $breadtrail = array();
  $breadtrail["Information Services"] = $base_url . "/information-services";
  $breadtrail["Computing"] = $base_url . "/information-services/computing";
  $breadtrail["Communication and collaboration"] = $base_url . "/information-services/computing/comms-and-collab";
  $breadtrail["Reporting + Analytics (BI Suite)"] = $base_url . "/information-services/computing/comms-and-collab/reporting-and-analytics";
  $breadtrail["Dashboards"] = $base_url . "/information-services/computing/comms-and-collab/reporting-and-analytics/dashboards";
  
  // Set up the main banner text/link and, if required, minor banner text/link.
  // If the minor banner text is empty, it will not be displayed.
  $main_banner_text = "Information Services TEST";
  $main_banner_link = $base_url . "/information-services";
  $minor_banner_text = "";
  $minor_banner_link = "";
  
?>               