How to get content block value and use it to be part of the page (event) list

Permalink
Hi guys,

i'm building this site where i have this EVENTS list. I have "DATE" area on my page template:


********

//Paivamaara
$a = new Area('Paivamaara');
$adump = $a->getAreaLayouts($c);
if (($a->getTotalBlocksInArea($c) > 0) || !empty($adump) || ($c->isEditMode()) ) {
echo '<div id="ff-sidebar-right" class="small-12 medium-4 large-3 columns">';
echo ' <div class="ff-sidebar">';
$a->display($c);
echo ' </div>';
echo '</div><!-- END #ff-sidebar-right -->';
}

********


Now i want to get that value and use it to be part of page list:

> 12.10.2014 - Lorem ipsum doret
> 20.9.2014 - Lorem ipsum doret


Here is my template code for event list so far:

********
<header class="ff-index-title">
<h4>
<a href="<?php echo $url ?>" target="<?php echo $target;?>"><?php echo $title; ?></a>
</h4>
</header>
********


How do i do this simple PHP code? :-)

/ Mika