Hi,
I am working on a portfolio website, my first Processwire site.
I have made a 'portfolio-page' template to display multiple images, they appear here in my top navigation as 'Work One & 'Work Two'
http://www.alexcreedy.com/cog/
I would like to create subnavigation in my sidebar for these 'portfolio-page' template pages, and so they do not appear in the top navigation.
Also would like to feature these pages on the homepage as a Thumnail image with Title and description, i have attached an image which roughly shows what I mean.
Also here is my 'portfolio-page' template if any help:
<?php
/**
* Page template
*
*/
include("./head.inc");
echo $page->body;
//Display images if available
if ($page->portfolio_images) {
foreach($page->portfolio_images as $image) {
$thumbnail = $image->size(550,0);
echo "<div class='workWrap'><a class='workImg' href='{$image->url}'><img class='photo' src='{$thumbnail->url}' alt='{$image->description}' /></a>";
echo "<div class='workDescript'>{$image->description}</div></div>";
}
}
include("./foot.inc");
Any pointers or links to examples much appreciated,
cheers,
Alex