blob: cb83c51b830e7f49dd3431b3ff286edfc5f73e7f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
[%
recent_photos = c.cobrand.recent_photos('front', 5);
%]
[% IF recent_photos.size %]
<div id="front-recently">
<h2>
[%- IF c.cobrand.moniker == 'hart' %]
Recently reported
[% ELSE %]
[% loc('Recently reported problems') %]
[% END -%]
</h2>
<section class="full-width">
<ul class="item-list item-list--reports item-list--front-page">
[% FOREACH problem IN recent_photos %]
[% INCLUDE 'front/_list-entry.html' %]
[% END %]
</ul>
</section>
</div>
[% END %]
|