1
1
Fork 0

get markup template

implement getMarkupTemplate function
This commit is contained in:
Adam Magness 2018-10-31 10:44:06 -04:00
commit 35abc4bb64
89 changed files with 243 additions and 243 deletions

View file

@ -160,7 +160,7 @@ function poke_content(App $a)
$base = System::baseUrl();
$head_tpl = get_markup_template('poke_head.tpl');
$head_tpl = Renderer::getMarkupTemplate('poke_head.tpl');
$a->page['htmlhead'] .= Renderer::replaceMacros($head_tpl,[
'$baseurl' => System::baseUrl(true),
'$base' => $base
@ -179,7 +179,7 @@ function poke_content(App $a)
}
}
$tpl = get_markup_template('poke_content.tpl');
$tpl = Renderer::getMarkupTemplate('poke_content.tpl');
$o = Renderer::replaceMacros($tpl,[
'$title' => L10n::t('Poke/Prod'),