diff options
Diffstat (limited to 'templates/web/default/index.html')
-rw-r--r-- | templates/web/default/index.html | 98 |
1 files changed, 98 insertions, 0 deletions
diff --git a/templates/web/default/index.html b/templates/web/default/index.html new file mode 100644 index 000000000..b895390ed --- /dev/null +++ b/templates/web/default/index.html @@ -0,0 +1,98 @@ +[% INCLUDE 'header.html', title => '' %] + +<p id="expl"> + [% + subhead + = c.cobrand.moniker == 'southampton' + ? '(like graffiti, fly tipping, or broken paving slabs)' + : loc('(like graffiti, fly tipping, broken paving slabs, or street lighting)'); + %] + + <strong>[% loc('Report, view, or discuss local problems') %]</strong> + + [% IF subhead != ' ' %] + <br><small>[% subhead %]</small> + [% END %] +</p> + + +[% # --- insert iPhone details, not converted from old cgi script yet + # + # if (my $url = mySociety::Config::get('IPHONE_URL')) { + # my $getiphone = _("Get FixMyStreet on your iPhone"); + # my $new = _("New!"); + # if ($q->{site} eq 'fixmystreet') { + # $out .= <<EOF + # <p align="center" style="margin-bottom:0"> + # <img width="23" height="12" alt="$new" src="/i/new.png" border="0"> + # <a href="$url">$getiphone</a> + # </p> + # EOF + # } +%] + + +[% IF error %] + <p class="error">[% error %]</p> +[% END %] + + +[% + question + = c.cobrand.enter_postcode_text() + || loc("Enter a nearby GB postcode, or street name and area"); +%] + +<form action="[% c.cobrand.url('/around') %]" method="get" name="postcodeForm" id="postcodeForm"> + <label for="pc">[% question %]:</label> + <input type="text" name="pc" value="" id="pc" size="10" maxlength="200"> + <input type="submit" value="[% loc('Go') %]" id="submit"> + [% c.cobrand.form_elements('postcodeForm') %] +</form> + + +<div id="front_intro"> + + <h2>[% loc('How to report a problem') %]</h2> + + <ol> + <li>[% question %]</li> + <li>[% loc('Locate the problem on a map of the area') %]</li> + <li>[% loc('Enter details of the problem') %]</li> + <li>[% loc('We send it to the council on your behalf') %]</li> + </ol> + + <p>FIXME - front stats go here</p> + [%# c.cobrand.front_stats() %] + +</div> + +[% + recent_photos = c.cobrand.recent_photos(3); + probs = c.cobrand.recent(); +%] + + +[% IF probs.size || recent_photos %] +<div id="front_recent"> + [% IF recent_photos %] + <h2>[% loc('Photos of recent reports') %]</h2> + [% recent_photos %] + [% END %] + + [% IF probs.size %] + + <h2>[% loc('Recently reported problems') %]</h2> + + <ul> + [% FOREACH p IN probs %] + <li> + <a href="/report/[% p.id %]">[% p.title | html %]</a> + </li> + [% END %] + </ul> + [% END %] +</div> +[% END %] + +[% INCLUDE 'footer.html' %]
\ No newline at end of file |