aboutsummaryrefslogtreecommitdiffstats
path: root/admin/themes/default/template/themes_new.tpl
blob: 4c58fce9ec58869f44fc5f894396359ff18a0f96 (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 class="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}