use Framadate\Utils; //initialise smarty
/* votre code */
$smarty->assign('variable',$monobjet);
$smarty->display('template.tpl');
pour le fichier template .tpl :
{extends file='page.tpl'}
{* ceci est un commentaire *}
{block name="header"}
{* liste des fichiers à importer => a minima css+js *}
{/block}
{block name=main}
{* pour chercher la traduction de la phrase dans le fichier local correspondant à la langue *}
{__('namespace', 'phrase.')}
{if $variable.bol}
code html 1, visible si $variable.bol==true
{else}
code html 2, visible si $variable.bol==false
{/if}
{/block}