Artifact 2d4e4818bd0b1b17fd2462ab3b8b7b7a4deb37fc:
- File applications/mobileblur/views/default/index.html — part of check-in [7ff27f901d] at 2011-12-02 03:31:07 on branch trunk — Made feed and story list divs clickable instead of just their text (user: spiffy, size: 569) [annotate] [blame] [check-ins using] [more...]
{{extend 'layout.html'}} {{ for feed in feeds.itervalues(): }} <a href="{{= URL(c="feeds", f="view", args=[feed["id"]]) }}"> <div class="feed"> {{ if threshold == -1 and feed["ng"] > 0: }} <span class='ng'>{{= feed["ng"] }}</span> {{ pass }} {{ if threshold <= 0 and feed["nt"] > 0: }} <span class='nt'>{{= feed["nt"] }}</span> {{ pass }} {{if feed["ps"] > 0: }}<span class='ps'>{{= feed["ps"] }}</span> {{ pass }} <span class="feed-title">{{= feed["feed_title"] }}</span> </div> </a> {{ pass }}