The conversion is a 'first version'... some tweaks here & there are needed, and it could use a custom news details template. if i didn't just go and upload it now while i was thinking about it, it probably never would be, because i'm a bit of a perfectionist when it comes to web pages and am never fully satisfied with them. at any rate, read the readme file included in the zip file.
Aura is completely skinnable using the original layered Photoshop PSD and Fireworks PNG files available at http://www.leorex.com/products/aura/ -- they are already sliced and diced and ready for hacking.
Note though that the exported XML file did not contain the custom menu template. So until that can be fixed on the Themes site, the menu template is below......
yes, i know it's missing the 'dfn' tags.. i took 'em out of the site this template was originally used on (with a different theme)
Code: Select all
{if $count > 0}
<ul>
{foreach from=$nodelist item=node}
{if $node->depth > $node->prevdepth}
{repeat string="<ul>" times=$node->depth-$node->prevdepth}
{elseif $node->depth < $node->prevdepth}
{repeat string="</li></ul>" times=$node->prevdepth-$node->depth}
</li>
{elseif $node->index > 0}</li>
{/if}
{if $node->current == true}
<li class="active0{$node->depth}">{$node->menutext}{elseif $node->parent == true && $node->depth == 1}
<li class="activeparent"><a href="{$node->url}" {if $node->accesskey != ''}accesskey="{$node->accesskey}" {/if}{if $node->tabindex != ''}tabindex="{$node->tabindex}" {/if}{if $node->titleattribute != ''}title="{$node->titleattribute}"{/if}>{$node->menutext}</a>{elseif $node->type == 'sectionheader'}
<li class="sectionheader">{$node->menutext}{elseif $node->type == 'separator'}
<li class="separator" style="list-style-type: none;"> <span class="hide">-----</span> {else}
<li><a href="{$node->url}" {if $node->accesskey != ''}accesskey="{$node->accesskey}" {/if}{if $node->tabindex != ''}tabindex="{$node->tabindex}" {/if}{if $node->titleattribute != ''}title="{$node->titleattribute}"{/if}>{$node->menutext}</a>{/if}
{/foreach}
{repeat string="</li></ul>" times=$node->depth-1}</li>
</ul>{/if}