Show
Ignore:
Timestamp:
07/11/08 17:05:29 (4 months ago)
Author:
aarkerio
Message:

New RSS feeder

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/app/views/catfaqs/view.ctp

    r541 r646  
    11<?php 
    2 //die(var_dump($data)); 
     2//die(debug($data)); 
    33 
    4 echo $html->div(null, $data['Catfaq']['title'] .' FAQ', array('style'=>'font-size:18pt;padding:5px;boder:1px solid #c0c0c0')); 
     4echo $html->div(null, $data['Catfaq']['title'] .' FAQ', array('style'=>'font-size:18pt;padding:5px;margin:15px auto;boder:1px solid #c0c0c0')); 
    55 
    66foreach ($data["Faq"] as $v): 
    7   echo '<div style="border:1px dotted gray;padding:4px;margin-bottom:15px">'; 
    8     echo $html->para(null, $v['question']); 
    9     echo $html->para(null, $v['answer']); 
    10     echo $html->para(null,$html->link($html->image('static/arrow_top.gif', array("alt"=>"Go top", "title"=>"Go top")), '#main', null, null, false)); 
     7  echo $html->link($v['question'], '#qa'.$v['id']) . '<br />'; 
     8endforeach; 
     9 
     10foreach ($data["Faq"] as $v): 
     11  echo '<div style="border:1px dotted gray;padding:4px;margin:15px 5px 3px 3px;color:#000" id="qa'.$v['id'].'">'; 
     12    echo $html->div(null, $v['question'], array('style'=>'font-weight:bold;')); 
     13    echo $html->div(null, $v['answer']); 
     14    echo $html->para(null,$html->link($html->image('static/arrow_top.gif', array('alt'=>'Go top', 'title'=>'Go top')), '#main', null, null, false)); 
    1115    echo '</div>'; 
    1216endforeach;