themes/springy/toolbar.tpl
author Dan
Fri, 29 May 2009 14:36:23 -0400
changeset 1 deac853bf428
parent 0 faec06138933
permissions -rw-r--r--
Updated to 1.1.6 compatibility
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
0
faec06138933 First commit. Almost ready for a first beta.
Dan
parents:
diff changeset
     1
<!-- Stuff related to toolbars and clickable buttons.
1
deac853bf428 Updated to 1.1.6 compatibility
Dan
parents: 0
diff changeset
     2
     The plan was to use this on the toolbar for most pages. Never made it into the release,
deac853bf428 Updated to 1.1.6 compatibility
Dan
parents: 0
diff changeset
     3
     but still provided as an otherwise-unused component for plugins to make use of.
0
faec06138933 First commit. Almost ready for a first beta.
Dan
parents:
diff changeset
     4
     -->
faec06138933 First commit. Almost ready for a first beta.
Dan
parents:
diff changeset
     5
faec06138933 First commit. Almost ready for a first beta.
Dan
parents:
diff changeset
     6
<!-- VAR toolbar_start -->
faec06138933 First commit. Almost ready for a first beta.
Dan
parents:
diff changeset
     7
  <div class="toolbar">
faec06138933 First commit. Almost ready for a first beta.
Dan
parents:
diff changeset
     8
  <ul>
faec06138933 First commit. Almost ready for a first beta.
Dan
parents:
diff changeset
     9
<!-- ENDVAR toolbar_start -->
faec06138933 First commit. Almost ready for a first beta.
Dan
parents:
diff changeset
    10
<!-- VAR toolbar_button -->
faec06138933 First commit. Almost ready for a first beta.
Dan
parents:
diff changeset
    11
  <li>
faec06138933 First commit. Almost ready for a first beta.
Dan
parents:
diff changeset
    12
    <a title="{TITLE}" {FLAGS}>
1
deac853bf428 Updated to 1.1.6 compatibility
Dan
parents: 0
diff changeset
    13
      <!-- IFSET SPRITE -->
deac853bf428 Updated to 1.1.6 compatibility
Dan
parents: 0
diff changeset
    14
        {SPRITE}
deac853bf428 Updated to 1.1.6 compatibility
Dan
parents: 0
diff changeset
    15
      <!-- BEGINELSE SPRITE -->
deac853bf428 Updated to 1.1.6 compatibility
Dan
parents: 0
diff changeset
    16
        <!-- IFSET IMAGE -->
deac853bf428 Updated to 1.1.6 compatibility
Dan
parents: 0
diff changeset
    17
          <!-- BEGINNOT no_image -->
deac853bf428 Updated to 1.1.6 compatibility
Dan
parents: 0
diff changeset
    18
            <img alt="{TITLE}" src="{IMAGE}" />
deac853bf428 Updated to 1.1.6 compatibility
Dan
parents: 0
diff changeset
    19
          <!-- END no_image -->
deac853bf428 Updated to 1.1.6 compatibility
Dan
parents: 0
diff changeset
    20
        <!-- END IMAGE -->
deac853bf428 Updated to 1.1.6 compatibility
Dan
parents: 0
diff changeset
    21
      <!-- END SPRITE -->
0
faec06138933 First commit. Almost ready for a first beta.
Dan
parents:
diff changeset
    22
      <!-- BEGIN show_title -->
1
deac853bf428 Updated to 1.1.6 compatibility
Dan
parents: 0
diff changeset
    23
        <!-- BEGIN no_image -->
deac853bf428 Updated to 1.1.6 compatibility
Dan
parents: 0
diff changeset
    24
          <span class="noimage">{TITLE}</span>
deac853bf428 Updated to 1.1.6 compatibility
Dan
parents: 0
diff changeset
    25
        <!-- BEGINELSE no_image -->
deac853bf428 Updated to 1.1.6 compatibility
Dan
parents: 0
diff changeset
    26
          <span>{TITLE}</span>
deac853bf428 Updated to 1.1.6 compatibility
Dan
parents: 0
diff changeset
    27
        <!-- END no_image -->
0
faec06138933 First commit. Almost ready for a first beta.
Dan
parents:
diff changeset
    28
      <!-- END show_title -->
faec06138933 First commit. Almost ready for a first beta.
Dan
parents:
diff changeset
    29
    </a>
faec06138933 First commit. Almost ready for a first beta.
Dan
parents:
diff changeset
    30
  </li>
faec06138933 First commit. Almost ready for a first beta.
Dan
parents:
diff changeset
    31
<!-- ENDVAR toolbar_button -->
faec06138933 First commit. Almost ready for a first beta.
Dan
parents:
diff changeset
    32
<!-- VAR toolbar_label -->
faec06138933 First commit. Almost ready for a first beta.
Dan
parents:
diff changeset
    33
  <li>
faec06138933 First commit. Almost ready for a first beta.
Dan
parents:
diff changeset
    34
    <span>{TITLE}</span>
faec06138933 First commit. Almost ready for a first beta.
Dan
parents:
diff changeset
    35
  </li>
faec06138933 First commit. Almost ready for a first beta.
Dan
parents:
diff changeset
    36
<!-- ENDVAR toolbar_label -->
faec06138933 First commit. Almost ready for a first beta.
Dan
parents:
diff changeset
    37
<!-- VAR toolbar_end -->
faec06138933 First commit. Almost ready for a first beta.
Dan
parents:
diff changeset
    38
  </ul>
faec06138933 First commit. Almost ready for a first beta.
Dan
parents:
diff changeset
    39
  </div>
faec06138933 First commit. Almost ready for a first beta.
Dan
parents:
diff changeset
    40
<!-- ENDVAR toolbar_end -->
faec06138933 First commit. Almost ready for a first beta.
Dan
parents:
diff changeset
    41
faec06138933 First commit. Almost ready for a first beta.
Dan
parents:
diff changeset
    42
<!-- VAR toolbar_vert_start -->
faec06138933 First commit. Almost ready for a first beta.
Dan
parents:
diff changeset
    43
  <div class="toolbar_vert">
faec06138933 First commit. Almost ready for a first beta.
Dan
parents:
diff changeset
    44
  <ul>
faec06138933 First commit. Almost ready for a first beta.
Dan
parents:
diff changeset
    45
<!-- ENDVAR toolbar_vert_start -->
faec06138933 First commit. Almost ready for a first beta.
Dan
parents:
diff changeset
    46
<!-- VAR toolbar_vert_button -->
faec06138933 First commit. Almost ready for a first beta.
Dan
parents:
diff changeset
    47
  <li>
faec06138933 First commit. Almost ready for a first beta.
Dan
parents:
diff changeset
    48
    <a title="{TITLE}" {FLAGS}>
faec06138933 First commit. Almost ready for a first beta.
Dan
parents:
diff changeset
    49
      <img alt="{TITLE}" src="{IMAGE}" />
faec06138933 First commit. Almost ready for a first beta.
Dan
parents:
diff changeset
    50
      <span>{TITLE}</span>
faec06138933 First commit. Almost ready for a first beta.
Dan
parents:
diff changeset
    51
    </a>
faec06138933 First commit. Almost ready for a first beta.
Dan
parents:
diff changeset
    52
  </li>
faec06138933 First commit. Almost ready for a first beta.
Dan
parents:
diff changeset
    53
<!-- ENDVAR toolbar_vert_button -->
faec06138933 First commit. Almost ready for a first beta.
Dan
parents:
diff changeset
    54
<!-- VAR toolbar_vert_label -->
faec06138933 First commit. Almost ready for a first beta.
Dan
parents:
diff changeset
    55
  <li>
faec06138933 First commit. Almost ready for a first beta.
Dan
parents:
diff changeset
    56
    <span>{TITLE}</span>
faec06138933 First commit. Almost ready for a first beta.
Dan
parents:
diff changeset
    57
  </li>
faec06138933 First commit. Almost ready for a first beta.
Dan
parents:
diff changeset
    58
<!-- ENDVAR toolbar_vert_label -->
faec06138933 First commit. Almost ready for a first beta.
Dan
parents:
diff changeset
    59
<!-- VAR toolbar_vert_end -->
faec06138933 First commit. Almost ready for a first beta.
Dan
parents:
diff changeset
    60
  </ul>
faec06138933 First commit. Almost ready for a first beta.
Dan
parents:
diff changeset
    61
  </div>
faec06138933 First commit. Almost ready for a first beta.
Dan
parents:
diff changeset
    62
<!-- ENDVAR toolbar_vert_end -->