mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-07-06 18:01:31 +02:00
f82430dd3b
delete, set as default. plugins.class.php was merged back to a state it doesn't manage themes at all. themes.class.php was created instead, from a duplication of plugins.class.php and strongly modified then. feature 1507: the display of available themes is now much more "graphic". git-svn-id: http://piwigo.org/svn/trunk@5153 68402e56-0260-453c-a942-63ccdbb3a9ee
15 lines
452 B
Smarty
15 lines
452 B
Smarty
<div class="titrePage">
|
|
<h2>{'Add New Theme'|@translate}</h2>
|
|
</div>
|
|
|
|
{if isset($themes)}
|
|
<div id="themeBoxes">
|
|
{foreach from=$new_themes item=theme name=themes_loop}
|
|
<div class="themeBox">
|
|
<div class="themeName">{$theme.name}</div>
|
|
<div class="themeShot"><img src="{$theme.screenshot}"></div>
|
|
<div class="themeActions"><a href="{$theme.install_url}">{'Install'|@translate}</a></div>
|
|
</div>
|
|
{/foreach}
|
|
</div> <!-- themeBoxes -->
|
|
{/if} |