Skip to content
This repository has been archived by the owner on Mar 15, 2018. It is now read-only.

Commit

Permalink
re-fix featured apps section after merge (bug 1057363)
Browse files Browse the repository at this point in the history
  • Loading branch information
ngokevin committed Aug 25, 2014
1 parent eeb0b36 commit 6e1fd38
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/templates/category.html
Expand Up @@ -32,7 +32,8 @@ <h3>{{ _('Featured Apps') }}</h3>
</header>
<ol class="grid c">
{% for result in featured_apps %}
<li>{{ market_tile(app_cast(result), link=true, src='featured', tray=False) }}</li>
{{ app_cast(result) }}
<li>{{ market_tile(result, link=true, src='featured', tray=False) }}</li>
{% endfor %}
</ol>
<a href="{{ featured_url }}" class="view-all-mbl">{{ _('View All') }}</a>
Expand Down

1 comment on commit 6e1fd38

@chuckharmston
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This section shouldn't be here at all, should it?

Please sign in to comment.