gl-website-deployer/admin/index.php

13 lines
299 B
PHP
Raw Permalink Normal View History

2024-11-19 08:02:04 +01:00
<?php
require dirname(__FILE__).'/../common.php';
require dirname(__FILE__).'/../lib/auth.php';
$m = setup_mustache();
$tpl = $m->loadTemplate('admin');
$scripts = [WebpackBuiltFiles::$jsFiles['admin']];
echo $tpl->render(array('ROOT_URL' => $iap_root, 'bar' => 'baz', 'scripts' => $scripts));