blob: fae5bed1a92bdb880feac7ad7b72d5285f7a27f5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
|
</div><!-- .content role=main -->
</div><!-- .container -->
</div><!-- .table-cell -->
<div class="nav-wrapper clearfix">
<div class="main-menu-wrapper">
<div class="main-menu">
<ul class="clearfix">
<li class="home"><[% IF c.req.uri.path == '/' %]span[% ELSE %]a href="/"[% END %] class="report-a-problem-btn"
>[% "Report" %]</[% c.req.uri.path == '/' ? 'span' : 'a' %]></li>[%
%]<li><[% IF c.req.uri.path == '/my' OR ( c.req.uri.path == '/auth' AND c.req.params.r == 'my' ) %]span[% ELSE %]a href="/my"[% END
%]>[% loc("Your reports") %]</[% ( c.req.uri.path == '/my' OR ( c.req.uri.path == '/auth' AND c.req.params.r == 'my' ) ) ? 'span' : 'a' %]></li>[%
%]<li><[% IF c.req.uri.path == '/reports/Hart' %]span[% ELSE %]a href="/reports/Hart"[% END
%]>[% loc("All reports") %]</[% c.req.uri.path == '/reports' ? 'span' : 'a' %]></li>[%
%]<li><[% IF c.req.uri.path == '/alert' %]span[% ELSE %]a href="/alert[% pc ? '/list?pc=' : '' %][% pc | uri %]"[% END
%]>[% loc("Local alerts") %]</[% c.req.uri.path == '/alert' ? 'span' : 'a' %]></li>[%
%]<li class="last"><[% IF c.req.uri.path == '/faq' %]span[% ELSE %]a href="/faq"[% END
%]>[% loc("Help") %]</[% c.req.uri.path == '/faq' ? 'span' : 'a' %]></li>
</ul>
</div>
</div>
<div class="nav-wrapper-2 clearfix">
<div id="main-nav" class="clearfix" role="navigation">
<ul class="nav-menu">
<li>
<a href="http://www.hart.gov.uk/home">Home</a>
</li>
<li>
<a href="http://www.hart.gov.uk/services">My Services</a>
</li>
<li>
<a href="http://www.hart.gov.uk/residents">Residents</a>
</li>
<li>
<a href="http://www.hart.gov.uk/businesses">Businesses</a>
</li>
<li>
<a href="http://www.hart.gov.uk/visiting">Visiting</a>
</li>
<li>
<a href="http://www.hart.gov.uk/the-council">The Council</a>
</li>
</ul>
</div>
<div class="sign-in">
[% IF c.user_exists %]
<p>
[% tprintf(loc('Hi %s'), c.user.name || c.user.email) %]
<a href="/auth/sign_out">[% loc('sign out') %]</a>
</p>
[% END %]
</div>
</div>
</div>
<div class="hart-footer-wrapper">
<div id="footer_outside_wrapper">
<div id="footer_inside_wrapper" class="clearfix">
<div id="footer-right" class="clearfix">
<ul class="footer-nav">
<li> <a href="http://www.hart.gov.uk/sitemap">Site map</a> </li>
<li> <a href="http://www.hart.gov.uk/Accessibility">Accessibility</a> </li>
</ul>
</div>
<footer id="hart-footer" class="clearfix">
<div id="copyright-block" class="desk-only">
<strong>©</strong>
<a href="http://www.hart.gov.uk/disclaimer" title="More information on the Disclaimer">Hart District Council</a>
</div>
<ul class="footer-nav clearfix">
<li> <a href="http://www.hart.gov.uk/disclaimer">Disclaimer</a></li>
<li> <a href="http://www.hart.gov.uk/freedom-information">Freedom of Information</a></li>
<li> <a href="http://www.hart.gov.uk/privacy">Privacy</a></li>
</ul>
</footer>
<div class="clearfix" id="footer-row-2">
<div id="hart-powered-by">
<a href="https://www.fixmystreet.com/council">Powered by <img src="/cobrands/hart/fms-logo.png" alt="FixMyStreet" style="height:20px;"></a>
</div>
<div id="footer-images">
<a href="https://twitter.com/HartCouncil">
<img alt="" src="/cobrands/hart/twitter-logo.png" style="height:43px; width:43px" />
</a>
<a href="http://www.facebook.com/HartDistrictCouncil">
<img alt="" src="/cobrands/hart/facebook-logo.png" style="height:43px; margin-right: 10px; width:43px" />
</a>
<a href="http://www.gov.uk">
<img alt="" src="/cobrands/hart/gov-logo.png" style="height:43px; width:172px" />
</a>
</div>
</div>
<div id="footer-row-3">
<div id="copyright-block-mobile" class="mob-only">
<strong>©</strong>
<a href="http://www.hart.gov.uk/disclaimer" title="More information on the Disclaimer">
Hart District Council</a>
</div>
</div>
</div>
</div>
</div>
<div class="footer_border">
</div>
[% INCLUDE 'common_footer_tags.html' %]
</div>
</body>
</html>
|