Hi everyone!
I am very new to processwire.
I have properties listed on a page. When I click on a particular property, it should take me to a single page where it show all the details.
For example. :
properties/
(shows all properties, i got this right.)
properties/al-bateen-residences/
(shows al-bateen-residence detaisl)
<?php $properties = $pages->find('template=properties'); ?>
<?php foreach($properties as $property): ?>
<div> <a href="<?=$property->url;?>"> <?=$property->title;?> </a> </div>
<?php endforeach; ?>
Thanks. noussh