diff options
author | Matthew Somerville <matthew@mysociety.org> | 2012-11-14 09:16:25 +0000 |
---|---|---|
committer | Matthew Somerville <matthew@mysociety.org> | 2012-11-14 09:16:25 +0000 |
commit | a609f56fb18cba7ec35c1d88b4473ec5bdfcc335 (patch) | |
tree | e3886a0367b9d7156cc4a85b11cf3265ab0ed59a /templates/web/default/index-steps.html | |
parent | 63ad6d84fdeeb2fc8f2f1af2a3f26152d5dd4423 (diff) |
Factor out some front page common HTML to shared template.
Diffstat (limited to 'templates/web/default/index-steps.html')
-rw-r--r-- | templates/web/default/index-steps.html | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/templates/web/default/index-steps.html b/templates/web/default/index-steps.html new file mode 100644 index 000000000..7129241d2 --- /dev/null +++ b/templates/web/default/index-steps.html @@ -0,0 +1,24 @@ +<h2>[% loc('How to report a problem') %]</h2> + +<ol class="big-numbers"> +[% IF c.cobrand.moniker == 'fixmybarangay' %] + <li>Text LUZ or BSN followed by your report to 12345</li> + <li>Visit the Barangay Center in person</li> + <li>Staff? <a href="/auth">Sign in</a> and click on the map! +[% ELSE %] + <li>[% question %]</li> + <li>[% loc('Locate the problem on a map of the area') %]</li> + <li>[% loc('Enter details of the problem') %]</li> + [% IF c.cobrand.is_council %] + <li>Confirm the report and [% c.cobrand.council_name %] will investigate</li> + [% ELSE %] + <li>[% loc('We send it to the council on your behalf') %]</li> + [% END %] +[% END %] +</ol> + +<section class="full-width"> +[% INCLUDE "front/stats.html" %] +[% TRY %][% INCLUDE "front/tips.html" %][% CATCH file %][% END %] +</section> + |