__(MyContainerTitle)__

This is example of dynamic content to get the name of your company (see source of page to see code):

name; ?>

This is another example of dynamic content to get meta data of a container/page (see source of page to see code):
__(Title)__ : title; ?>
__(Description)__ : description; ?>
__(Keywords)__ : keywords; ?>
__(DateCreation)__ : date_creation, 'dayhour', $weblangs); ?>

__(AnotherContainer)__


__(YouCanEditHtmlSource)__

Page created by __WEBSITE_CREATE_BY__
This is an example of a section to show the list of latest 5 articles (container with type "blogpost"), that contains the keyword "mykeyword"...

Latest Blog posts

loadLangs(array("main")); $websitepage = new WebsitePage($db); $fuser = new User($db); $arrayofblogs = $websitepage->fetchAll($website->id, 'DESC', 'date_creation', 5, 0, array('type_container'=>'blogpost', 'keywords'=>$keyword)); if (is_numeric($arrayofblogs) && $arrayofblogs < 0) { print '
'.$weblangs->trans($websitepage->error).'
'; } elseif (is_array($arrayofblogs) && ! empty($arrayofblogs)) { foreach($arrayofblogs as $blog) { print ''; } } else { print '
'; print '
'; print $weblangs->trans("NoArticlesFoundForTheKeyword", $keyword); print '
'; print '
'; } ?>