475765e31f
Add an explicit template renderer with HTML views and partials for the app, bootstrap, package, and catalog pages. Move shared reporting setup into config/reporting.php and relocate stylesheet assets under css/.
12 lines
270 B
PHP
12 lines
270 B
PHP
<?php
|
|
/*
|
|
* Helpers for reading non-rendered data from view templates.
|
|
*/
|
|
|
|
require_once __DIR__ . '/Template.php';
|
|
|
|
function seed_template_translations($languageStore, $template)
|
|
{
|
|
$languageStore->seedDefaults(RacketSandboxTemplate::translationsFile($template));
|
|
}
|