Tribiq CMS

Choose your language

5.8 News Article

A news item is simply a template that uses two content sections. If you wish, you may include a simple inline publication date editor using the following snippet:
<?php displayEditPublicationForm(); ?>
You need to include two content areas.
<?php
include "templateincludes/content_bodytop.inc.php";

?>

<?php
include "templateincludes/content_bodymain.inc.php"
;
?>

Information: Two Content Areas
The content_bodytop is used for an abstract, and content_bodymain the full article. You don’t have to write an abstract. The CMS will automatically generate one for you from the content_bodymain if required.

 

Top of Page