mirror of
https://github.com/Pathduck/gallery3.git
synced 2026-07-30 03:30:34 -04:00
and then thumbnails for all the other available themes. If you select one of the other available themes, it gives you a preview pane where you can look at either the main page or the site admin page with the new theme, then choose to activate it if you like it.
8 lines
360 B
PHP
8 lines
360 B
PHP
<h1> <?= t("Theme Preview: {{theme_name}}", array("theme_name" => $info->name)) ?> </h1>
|
|
<iframe src="<?= $url ?>" style="width: 600px; height: 500px"></iframe>
|
|
<p>
|
|
<a href="<?= url::site("admin/themes/choose/$type/$theme_name?csrf=" . access::csrf_token()) ?>">
|
|
<?= t("Activate <b>{{theme_name}}</b>", array("theme_name" => $info->name)) ?>
|
|
</a>
|
|
</p>
|