aboutsummaryrefslogtreecommitdiffstats
path: root/admin/themes/default/template/themes_new.tpl
blob: 0edcb41306e1b04b4203c21ce9f2a5344a787b55 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<div class="titrePage">
  <h2>{'Install New Theme'|@translate}</h2>
</div>

{if isset($themes)}
<div id="themesBox">
{foreach from=$new_themes item=theme name=themes_loop}
  <div class="themeBox">
    <div class="themeName">{$theme.name}</div>
    <div class="themeShot"><img src="{$theme.src}"></div>
    <div class="themeActions"><a href="{$theme.install_url}">Install</a></div>
  </div>
{/foreach}
</div> <!-- themesBox -->
{/if}