<?php
  // Set to '/unpublished' or the empty string.
  $published_state = '/unpublished';

  $host = 'http://www.ed.ac.uk';
  $contact_link = $host . "/staff/contact";
  $base_url = $host . $published_state;
  
  // Build up the bread trail as required, replacing these values with values
  // that correspond to the main Dashboards page in EdWeb.
  $breadtrail = array();
  $breadtrail["Staff"] = $base_url . "/staff";
  $breadtrail["Data Matters"] = $base_url . "/staff/data-matters";
  
  // 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 = "Student data dashboard";
  $main_banner_link = $breadtrail["Data Matters"];
  $minor_banner_text = "";
  $minor_banner_link = "";
  
?>               
