A QCodo powered CMS
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
486 B

  1. <div class="ContentItemInner">
  2. <?php
  3. if($_CONTROL->ShowTitle)
  4. $_CONTROL->Title->Render();
  5. if($_CONTROL->ShowDescription)
  6. $_CONTROL->Description->Render();
  7. if($_CONTROL->ShowCreator)
  8. $_CONTROL->Creator->RenderWithName();
  9. if($_CONTROL->ShowCreationDate)
  10. $_CONTROL->CreationDate->RenderWithName();
  11. if($_CONTROL->ShowLastModification)
  12. $_CONTROL->LastModification->RenderWithName();
  13. print '<div class="spacer"></div>';
  14. $_CONTROL->Text->Render();
  15. ?>
  16. </div>