~azzar1/unity/add-show-desktop-key

« back to all changes in this revision

Viewing changes to ivle/webapp/base/ivle-headings.html

  • Committer: William Grant
  • Date: 2009-07-05 07:14:30 UTC
  • mto: (1294.4.2 ui-the-third)
  • mto: This revision was merged to the branch mainline in revision 1353.
  • Revision ID: grantw@unimelb.edu.au-20090705071430-m81ggxui5qsksdr0
Replace the div>span breadcrumbs with ul>li, and style the text.

Show diffs side-by-side

added added

removed removed

Lines of Context:
39
39
  <py:match path="body[@status!='done']" once="true">
40
40
    <body>
41
41
      <div id="ivleheader">
42
 
        <div id="ivle_breadcrumbs">
43
 
          <span class="breadcrumb">
 
42
        <ul id="ivle_breadcrumbs">
 
43
          <li class="breadcrumb">
44
44
            <a href="/">
45
45
              <img src="${title_img}" alt="Informatics Virtual Learning Environment" />
46
46
            </a>
47
 
          </span>
 
47
          </li>
48
48
          <py:for each="ancestor in ancestry">
49
 
          <span class="breadcrumb" py:if="breadcrumb_text(ancestor)">
 
49
          <li py:if="breadcrumb_text(ancestor)">
50
50
            <a href="${url(ancestor)}">
51
51
              ${breadcrumb_text(ancestor)}
52
52
            </a>
53
 
          </span>
 
53
          </li>
54
54
          </py:for>
55
 
        </div>
 
55
        </ul>
56
56
        <div id="ivleheader_text">
57
57
          <py:choose>
58
58
            <p py:when="publicmode" class="userhello">Running in public mode.</p>