Add back in old-school markup for non-Firefox apps.

This commit is contained in:
shaver%mozilla.org 2006-10-23 16:18:26 +00:00
Родитель 8820807891
Коммит 15c6c1e959
1 изменённых файлов: 22 добавлений и 0 удалений

Просмотреть файл

@ -1,3 +1,4 @@
{if $app eq "firefox"}
<div id="mBody">
<h1>Recommended Add-ons</h1>
@ -15,3 +16,24 @@
{/section}
{include file="inc/search-box.tpl"}
{else}
<div id="mBody">
<h1>Getting Started with Extensions</h1>
<p>With over a thousand extensions available, there's something for everyone. To get you started, here's a list of some of our recommended extensions that make use of popular online services.</p>
{section name=re loop=$recommendedExtensions step=1 start=0}
<div class="recommended">
<a href="{$config.webpath}/{$app}/{$recommendedExtensions[re].id}/previews/"><img class="recommended-img" alt="" src="{$config.webpath}{$recommendedExtensions[re].previewuri}"/></a>
<h2><a href="{$config.webpath}/{$app}/{$recommendedExtensions[re].id}/">{$recommendedExtensions[re].name}</a></h2>
<div class="recommended-download">
<h3><a href="{$recommendedExtensions[re].uri}" onclick="return install(event,'{$recommendedExtensions[re].name} {$recommendedExtensions[re].version}', '{$config.webpath}/images/default.png', '{$recommendedExtensions[re].hash}');" title="Install {$recommendedExtensions[re].name} {$recommendedExtensions[re].version} (Right-Click to Download)">Install Extension ({$recommendedExtensions[re].size} KB)</a></h3>
</div>
<p>{$recommendedExtensions[re].body|nl2br}</p>
</div>
{/section}
</div>
<br class="clear-both"/>
{/if}