diff options
-rw-r--r-- | templates/web/emptyhomes/footer.html | 38 | ||||
-rw-r--r-- | templates/web/emptyhomes/header.html | 41 |
2 files changed, 79 insertions, 0 deletions
diff --git a/templates/web/emptyhomes/footer.html b/templates/web/emptyhomes/footer.html new file mode 100644 index 000000000..5796aaebb --- /dev/null +++ b/templates/web/emptyhomes/footer.html @@ -0,0 +1,38 @@ +</div> +</div> + +<div id="footer"> + +<div> +Empty Homes<br> +75 Westminster Bridge Road<br> +London, SE1 7HS +<br> +Tel: 020 7921 4450 <br> +Email: <a href="mailto:info@emptyhomes.com">info@emptyhomes.com</a> +</div> + +<div> +In conjunction with, in Wales:<br> +Shelter Cymru<br> +25 Walter Road<br>Swansea +<br>SA1 5NN<br> +<a href="mailto:emptyhomes@sheltercymru.org.uk">emptyhomes@sheltercymru.org.uk</a> +</div> + +<div> +In Scotland:<br> +Kristen Miller, Scottish Empty Homes Partnership<br> +Shelter Scotland<br> +6 South Charlotte Street<br> +Edinburgh EH2 4AW<br> +Tel: 0344 515 2461 +</div> + +</div> + +[% INCLUDE 'debug_footer.html' %] + +</body> +</html> + diff --git a/templates/web/emptyhomes/header.html b/templates/web/emptyhomes/header.html new file mode 100644 index 000000000..70e8783f7 --- /dev/null +++ b/templates/web/emptyhomes/header.html @@ -0,0 +1,41 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> +<html lang="[% lang_code %]"> +<head> +<title>[% title | html %] :: [% c.cobrand.site_title %]</title> +<meta http-equiv="content-type" content="text/html; charset=utf-8"> +<script type="text/javascript" src="/yui/utilities.js"></script> +<script type="text/javascript" src="/js.js"></script> +<!-- FIXME {{ $map_js }} --> +<style type="text/css"> +@import "/css/core.css"; +@import "/css/cobrands/emptyhomes/emptyhomes.css"; +</style> +<!--[if LT IE 7]> +<style type="text/css">@import url("/css/ie6.css");</style> +<![endif]--> +<!-- FIXME {{ $rss }} --> +</head> +<body> + +<div id="header"> +<a href="http://www.emptyhomes.com/"><img border="0" src="/i/eha-logo.jpeg" alt="Empty Homes Agency" width="91" height="71" align="middle"></a> +<a href="http://www.sheltercymru.org.uk/"><img border="0" src="/i/Sheltercymru47.gif" alt="Shelter Cymru" width="114" height="47" align="middle"></a> +</div> + +<div id="navigation"> + <ul> + <li><a href="/" >[% loc("Report a problem") %]</a></li> + <li><a href="/reports" >[% loc("All reports") %]</a></li> + <li><a href="/alert" >[% loc("Local alerts") %]</a></li> + <li><a href="/faq" >[% loc("Help") %]</a></li> + <li><a href="/about" >[% loc('About us') %]</a></li> + [% IF lang_code == 'en-gb' %] + <li><a href="http://cy.[% c.cobrand.base_host %]">Cymraeg</a></li> + [% ELSE %] + <li><a href="http://en.[% c.cobrand.base_host %]">English</a></li> + [% END %] + </ul> +</div> + +<div id="wrapper"> +<div id="content"> |