themes/enanium/elements.tpl
author Dan Fuhry <dan@enanocms.org>
Thu, 28 Oct 2010 03:05:31 -0400
changeset 1308 f9bee9b125ee
parent 1287 2c95a2c538c8
permissions -rw-r--r--
Parser updates. Added the "styled" keyword to wikitables to allow them to be styled using the current theme's standard table skinning, and changes to how the image tag parser decides how to display an image (framed, inline or raw).
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
921
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
     1
<!-- VAR toolbar_button --><a href="{HREF}" {PARENTFLAGS} {FLAGS}>{TEXT}</a>
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
     2
<!-- ENDVAR toolbar_button -->
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
     3
<!-- VAR toolbar_label --><div class="label">{TEXT}</div>
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
     4
<!-- ENDVAR toolbar_label -->
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
     5
<!-- VAR toolbar_button_selected --><a href="{HREF}" class="current" {PARENTFLAGS} {FLAGS}>{TEXT}</a>
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
     6
<!-- ENDVAR toolbar_button_selected -->
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
     7
<!-- VAR toolbar_menu_button --><li><a href="{HREF}" {FLAGS}>{TEXT}</a></li>
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
     8
<!-- ENDVAR toolbar_menu_button -->
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
     9
<!-- VAR toolbar_menu_block --><li>{HTML}</li>
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
    10
<!-- ENDVAR toolbar_menu_block -->
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
    11
<!-- VAR sidebar_button --><li><a href="{HREF}" {FLAGS}>{TEXT}</a></li>
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
    12
<!-- ENDVAR sidebar_button -->
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
    13
<!-- VAR sidebar_raw -->{HTML}
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
    14
<!-- ENDVAR sidebar_raw -->
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
    15
<!-- VAR sidebar_heading --><h4>{TEXT}</h4>
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
    16
<!-- ENDVAR sidebar_heading -->
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
    17
<!-- VAR sidebar_top -->
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
    18
<!-- ENDVAR sidebar_top -->
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
    19
<!-- VAR sidebar_section -->
1227
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 921
diff changeset
    20
					<div class="slider">
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 921
diff changeset
    21
						<h4>
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 921
diff changeset
    22
							<!-- BEGIN in_sidebar_admin -->{ADMIN_START}<!-- END in_sidebar_admin -->
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 921
diff changeset
    23
							<a>{TITLE}</a>
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 921
diff changeset
    24
							<!-- BEGIN in_sidebar_admin -->{ADMIN_END}<!-- END in_sidebar_admin -->
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 921
diff changeset
    25
						</h4>
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 921
diff changeset
    26
						<div class="slideblock">
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 921
diff changeset
    27
							<ul class="linkblock">
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 921
diff changeset
    28
								{CONTENT}
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 921
diff changeset
    29
							</ul>
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 921
diff changeset
    30
						</div>
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 921
diff changeset
    31
					</div>
921
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
    32
<!-- ENDVAR sidebar_section -->
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
    33
<!-- VAR sidebar_section_raw -->
1227
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 921
diff changeset
    34
					<div class="slider">
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 921
diff changeset
    35
						<h4>
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 921
diff changeset
    36
							<!-- BEGIN in_sidebar_admin -->{ADMIN_START}<!-- END in_sidebar_admin -->
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 921
diff changeset
    37
							<a>{TITLE}</a>
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 921
diff changeset
    38
							<!-- BEGIN in_sidebar_admin -->{ADMIN_END}<!-- END in_sidebar_admin -->
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 921
diff changeset
    39
						</h4>
1287
2c95a2c538c8 Enanium: Link blocks now render properly on the right sidebar, and textual blocks now look good on the left.
Dan Fuhry <dan@enanocms.org>
parents: 1227
diff changeset
    40
						<div class="slideblock pluggedin">
1227
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 921
diff changeset
    41
							{CONTENT}
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 921
diff changeset
    42
						</div>
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 921
diff changeset
    43
					</div>
921
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
    44
<!-- ENDVAR sidebar_section_raw -->
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
    45
<!-- VAR sidebar_bottom -->
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
    46
<!-- ENDVAR sidebar_bottom -->