http://www.northsoundartisans.org/
The content is not yet complete, but the design/layout is pretty much done. I've used CMSMS 1.2.4, with current Album, Formbuilder and TruetypeText modules.
The header uses random banners, one for each of the members, cropped from their artwork. The individual Member pages/albums use their own banner, although, in the future, I may include a random banner of the individual's artwork there as well.
The site uses 3 menus - Top and Side menus for the main navigation, and a third menu call for the "Members" page, which pulls data from the second level of the "Members" menu and uses {$node->alias} to include member photos. The menu template is:
Code: Select all
{if $count > 0}
{foreach from=$nodelist item=node}
<div id="{cycle values="div1,div2,div3,div4"}">
<a href="{$node->url}"{if $node->target ne ""} target="{$node->target}"{/if}> {$node->menutext}<br /> <br />
<img src="/uploads/members/{$node->alias}/{$node->alias}.jpg" /></a>
</div>
{/foreach}
{/if}
Nullig