aboutsummaryrefslogtreecommitdiffstats
path: root/admin/themes/default/template/themes_new.tpl
blob: 1eb67b74b45be82a46d1f1b7772ec67a8326a667 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<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}