themes/admin/toolbar.tpl
author Dan
Fri, 30 Jul 2010 14:39:04 -0400
changeset 1274 673a1b6712fa
permissions -rw-r--r--
Moved sidebar editor into the admin CP. Icon still needs to be added, no Internet right now to go find one. Also fixed a few template related things.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1274
673a1b6712fa Moved sidebar editor into the admin CP. Icon still needs to be added, no Internet right now to go find one. Also fixed a few template related things.
Dan
parents:
diff changeset
     1
<!-- Stuff related to toolbars and clickable buttons.
673a1b6712fa Moved sidebar editor into the admin CP. Icon still needs to be added, no Internet right now to go find one. Also fixed a few template related things.
Dan
parents:
diff changeset
     2
 		The plan was to use this on the toolbar for most pages. Never made it into the release,
673a1b6712fa Moved sidebar editor into the admin CP. Icon still needs to be added, no Internet right now to go find one. Also fixed a few template related things.
Dan
parents:
diff changeset
     3
 		but still provided as an otherwise-unused component for plugins to make use of.
673a1b6712fa Moved sidebar editor into the admin CP. Icon still needs to be added, no Internet right now to go find one. Also fixed a few template related things.
Dan
parents:
diff changeset
     4
 		-->
673a1b6712fa Moved sidebar editor into the admin CP. Icon still needs to be added, no Internet right now to go find one. Also fixed a few template related things.
Dan
parents:
diff changeset
     5
673a1b6712fa Moved sidebar editor into the admin CP. Icon still needs to be added, no Internet right now to go find one. Also fixed a few template related things.
Dan
parents:
diff changeset
     6
<!-- VAR toolbar_start -->
673a1b6712fa Moved sidebar editor into the admin CP. Icon still needs to be added, no Internet right now to go find one. Also fixed a few template related things.
Dan
parents:
diff changeset
     7
	<div class="toolbar">
673a1b6712fa Moved sidebar editor into the admin CP. Icon still needs to be added, no Internet right now to go find one. Also fixed a few template related things.
Dan
parents:
diff changeset
     8
	<ul>
673a1b6712fa Moved sidebar editor into the admin CP. Icon still needs to be added, no Internet right now to go find one. Also fixed a few template related things.
Dan
parents:
diff changeset
     9
<!-- ENDVAR toolbar_start -->
673a1b6712fa Moved sidebar editor into the admin CP. Icon still needs to be added, no Internet right now to go find one. Also fixed a few template related things.
Dan
parents:
diff changeset
    10
<!-- VAR toolbar_button -->
673a1b6712fa Moved sidebar editor into the admin CP. Icon still needs to be added, no Internet right now to go find one. Also fixed a few template related things.
Dan
parents:
diff changeset
    11
	<li>
673a1b6712fa Moved sidebar editor into the admin CP. Icon still needs to be added, no Internet right now to go find one. Also fixed a few template related things.
Dan
parents:
diff changeset
    12
		<a title="{TITLE}" {FLAGS}>
673a1b6712fa Moved sidebar editor into the admin CP. Icon still needs to be added, no Internet right now to go find one. Also fixed a few template related things.
Dan
parents:
diff changeset
    13
			<!-- IFSET SPRITE -->
673a1b6712fa Moved sidebar editor into the admin CP. Icon still needs to be added, no Internet right now to go find one. Also fixed a few template related things.
Dan
parents:
diff changeset
    14
				{SPRITE}
673a1b6712fa Moved sidebar editor into the admin CP. Icon still needs to be added, no Internet right now to go find one. Also fixed a few template related things.
Dan
parents:
diff changeset
    15
			<!-- BEGINELSE SPRITE -->
673a1b6712fa Moved sidebar editor into the admin CP. Icon still needs to be added, no Internet right now to go find one. Also fixed a few template related things.
Dan
parents:
diff changeset
    16
				<!-- IFSET IMAGE -->
673a1b6712fa Moved sidebar editor into the admin CP. Icon still needs to be added, no Internet right now to go find one. Also fixed a few template related things.
Dan
parents:
diff changeset
    17
					<!-- BEGINNOT no_image -->
673a1b6712fa Moved sidebar editor into the admin CP. Icon still needs to be added, no Internet right now to go find one. Also fixed a few template related things.
Dan
parents:
diff changeset
    18
						<img alt="{TITLE}" src="{IMAGE}" />
673a1b6712fa Moved sidebar editor into the admin CP. Icon still needs to be added, no Internet right now to go find one. Also fixed a few template related things.
Dan
parents:
diff changeset
    19
					<!-- END no_image -->
673a1b6712fa Moved sidebar editor into the admin CP. Icon still needs to be added, no Internet right now to go find one. Also fixed a few template related things.
Dan
parents:
diff changeset
    20
				<!-- END IMAGE -->
673a1b6712fa Moved sidebar editor into the admin CP. Icon still needs to be added, no Internet right now to go find one. Also fixed a few template related things.
Dan
parents:
diff changeset
    21
			<!-- END SPRITE -->
673a1b6712fa Moved sidebar editor into the admin CP. Icon still needs to be added, no Internet right now to go find one. Also fixed a few template related things.
Dan
parents:
diff changeset
    22
			<!-- BEGIN show_title -->
673a1b6712fa Moved sidebar editor into the admin CP. Icon still needs to be added, no Internet right now to go find one. Also fixed a few template related things.
Dan
parents:
diff changeset
    23
				<!-- BEGIN no_image -->
673a1b6712fa Moved sidebar editor into the admin CP. Icon still needs to be added, no Internet right now to go find one. Also fixed a few template related things.
Dan
parents:
diff changeset
    24
					<span class="noimage">{TITLE}</span>
673a1b6712fa Moved sidebar editor into the admin CP. Icon still needs to be added, no Internet right now to go find one. Also fixed a few template related things.
Dan
parents:
diff changeset
    25
				<!-- BEGINELSE no_image -->
673a1b6712fa Moved sidebar editor into the admin CP. Icon still needs to be added, no Internet right now to go find one. Also fixed a few template related things.
Dan
parents:
diff changeset
    26
					<span>{TITLE}</span>
673a1b6712fa Moved sidebar editor into the admin CP. Icon still needs to be added, no Internet right now to go find one. Also fixed a few template related things.
Dan
parents:
diff changeset
    27
				<!-- END no_image -->
673a1b6712fa Moved sidebar editor into the admin CP. Icon still needs to be added, no Internet right now to go find one. Also fixed a few template related things.
Dan
parents:
diff changeset
    28
			<!-- END show_title -->
673a1b6712fa Moved sidebar editor into the admin CP. Icon still needs to be added, no Internet right now to go find one. Also fixed a few template related things.
Dan
parents:
diff changeset
    29
		</a>
673a1b6712fa Moved sidebar editor into the admin CP. Icon still needs to be added, no Internet right now to go find one. Also fixed a few template related things.
Dan
parents:
diff changeset
    30
	</li>
673a1b6712fa Moved sidebar editor into the admin CP. Icon still needs to be added, no Internet right now to go find one. Also fixed a few template related things.
Dan
parents:
diff changeset
    31
<!-- ENDVAR toolbar_button -->
673a1b6712fa Moved sidebar editor into the admin CP. Icon still needs to be added, no Internet right now to go find one. Also fixed a few template related things.
Dan
parents:
diff changeset
    32
<!-- VAR toolbar_label -->
673a1b6712fa Moved sidebar editor into the admin CP. Icon still needs to be added, no Internet right now to go find one. Also fixed a few template related things.
Dan
parents:
diff changeset
    33
	<li>
673a1b6712fa Moved sidebar editor into the admin CP. Icon still needs to be added, no Internet right now to go find one. Also fixed a few template related things.
Dan
parents:
diff changeset
    34
		<span>{TITLE}</span>
673a1b6712fa Moved sidebar editor into the admin CP. Icon still needs to be added, no Internet right now to go find one. Also fixed a few template related things.
Dan
parents:
diff changeset
    35
	</li>
673a1b6712fa Moved sidebar editor into the admin CP. Icon still needs to be added, no Internet right now to go find one. Also fixed a few template related things.
Dan
parents:
diff changeset
    36
<!-- ENDVAR toolbar_label -->
673a1b6712fa Moved sidebar editor into the admin CP. Icon still needs to be added, no Internet right now to go find one. Also fixed a few template related things.
Dan
parents:
diff changeset
    37
<!-- VAR toolbar_end -->
673a1b6712fa Moved sidebar editor into the admin CP. Icon still needs to be added, no Internet right now to go find one. Also fixed a few template related things.
Dan
parents:
diff changeset
    38
	</ul>
673a1b6712fa Moved sidebar editor into the admin CP. Icon still needs to be added, no Internet right now to go find one. Also fixed a few template related things.
Dan
parents:
diff changeset
    39
	</div>
673a1b6712fa Moved sidebar editor into the admin CP. Icon still needs to be added, no Internet right now to go find one. Also fixed a few template related things.
Dan
parents:
diff changeset
    40
<!-- ENDVAR toolbar_end -->
673a1b6712fa Moved sidebar editor into the admin CP. Icon still needs to be added, no Internet right now to go find one. Also fixed a few template related things.
Dan
parents:
diff changeset
    41
673a1b6712fa Moved sidebar editor into the admin CP. Icon still needs to be added, no Internet right now to go find one. Also fixed a few template related things.
Dan
parents:
diff changeset
    42
<!-- VAR toolbar_vert_start -->
673a1b6712fa Moved sidebar editor into the admin CP. Icon still needs to be added, no Internet right now to go find one. Also fixed a few template related things.
Dan
parents:
diff changeset
    43
	<div class="toolbar_vert">
673a1b6712fa Moved sidebar editor into the admin CP. Icon still needs to be added, no Internet right now to go find one. Also fixed a few template related things.
Dan
parents:
diff changeset
    44
	<ul>
673a1b6712fa Moved sidebar editor into the admin CP. Icon still needs to be added, no Internet right now to go find one. Also fixed a few template related things.
Dan
parents:
diff changeset
    45
<!-- ENDVAR toolbar_vert_start -->
673a1b6712fa Moved sidebar editor into the admin CP. Icon still needs to be added, no Internet right now to go find one. Also fixed a few template related things.
Dan
parents:
diff changeset
    46
<!-- VAR toolbar_vert_button -->
673a1b6712fa Moved sidebar editor into the admin CP. Icon still needs to be added, no Internet right now to go find one. Also fixed a few template related things.
Dan
parents:
diff changeset
    47
	<li>
673a1b6712fa Moved sidebar editor into the admin CP. Icon still needs to be added, no Internet right now to go find one. Also fixed a few template related things.
Dan
parents:
diff changeset
    48
		<a title="{TITLE}" {FLAGS}>
673a1b6712fa Moved sidebar editor into the admin CP. Icon still needs to be added, no Internet right now to go find one. Also fixed a few template related things.
Dan
parents:
diff changeset
    49
			<img alt="{TITLE}" src="{IMAGE}" />
673a1b6712fa Moved sidebar editor into the admin CP. Icon still needs to be added, no Internet right now to go find one. Also fixed a few template related things.
Dan
parents:
diff changeset
    50
			<span>{TITLE}</span>
673a1b6712fa Moved sidebar editor into the admin CP. Icon still needs to be added, no Internet right now to go find one. Also fixed a few template related things.
Dan
parents:
diff changeset
    51
		</a>
673a1b6712fa Moved sidebar editor into the admin CP. Icon still needs to be added, no Internet right now to go find one. Also fixed a few template related things.
Dan
parents:
diff changeset
    52
	</li>
673a1b6712fa Moved sidebar editor into the admin CP. Icon still needs to be added, no Internet right now to go find one. Also fixed a few template related things.
Dan
parents:
diff changeset
    53
<!-- ENDVAR toolbar_vert_button -->
673a1b6712fa Moved sidebar editor into the admin CP. Icon still needs to be added, no Internet right now to go find one. Also fixed a few template related things.
Dan
parents:
diff changeset
    54
<!-- VAR toolbar_vert_label -->
673a1b6712fa Moved sidebar editor into the admin CP. Icon still needs to be added, no Internet right now to go find one. Also fixed a few template related things.
Dan
parents:
diff changeset
    55
	<li>
673a1b6712fa Moved sidebar editor into the admin CP. Icon still needs to be added, no Internet right now to go find one. Also fixed a few template related things.
Dan
parents:
diff changeset
    56
		<span>{TITLE}</span>
673a1b6712fa Moved sidebar editor into the admin CP. Icon still needs to be added, no Internet right now to go find one. Also fixed a few template related things.
Dan
parents:
diff changeset
    57
	</li>
673a1b6712fa Moved sidebar editor into the admin CP. Icon still needs to be added, no Internet right now to go find one. Also fixed a few template related things.
Dan
parents:
diff changeset
    58
<!-- ENDVAR toolbar_vert_label -->
673a1b6712fa Moved sidebar editor into the admin CP. Icon still needs to be added, no Internet right now to go find one. Also fixed a few template related things.
Dan
parents:
diff changeset
    59
<!-- VAR toolbar_vert_end -->
673a1b6712fa Moved sidebar editor into the admin CP. Icon still needs to be added, no Internet right now to go find one. Also fixed a few template related things.
Dan
parents:
diff changeset
    60
	</ul>
673a1b6712fa Moved sidebar editor into the admin CP. Icon still needs to be added, no Internet right now to go find one. Also fixed a few template related things.
Dan
parents:
diff changeset
    61
	</div>
673a1b6712fa Moved sidebar editor into the admin CP. Icon still needs to be added, no Internet right now to go find one. Also fixed a few template related things.
Dan
parents:
diff changeset
    62
<!-- ENDVAR toolbar_vert_end -->