diff options
Diffstat (limited to 'templates/web/base')
-rw-r--r-- | templates/web/base/header.html | 7 | ||||
-rw-r--r-- | templates/web/base/header_site.html | 6 | ||||
-rw-r--r-- | templates/web/base/report/photo.html | 4 |
3 files changed, 9 insertions, 8 deletions
diff --git a/templates/web/base/header.html b/templates/web/base/header.html index edb921feb..3117b819f 100644 --- a/templates/web/base/header.html +++ b/templates/web/base/header.html @@ -48,12 +48,7 @@ <div class="wrapper"> <div class="table-cell"> - <header id="site-header" role="banner"> - <div class="container"> - [% INCLUDE 'header_logo.html' %] - <a href="#main-nav" id="nav-link">Main Navigation</a> - </div> - </header> + [% INCLUDE 'header_site.html' %] [% pre_container_extra %] diff --git a/templates/web/base/header_site.html b/templates/web/base/header_site.html new file mode 100644 index 000000000..6b3de541b --- /dev/null +++ b/templates/web/base/header_site.html @@ -0,0 +1,6 @@ +<header id="site-header" role="banner"> + <div class="container"> + [% INCLUDE 'header_logo.html' %] + <a href="#main-nav" id="nav-link">Main Navigation</a> + </div> +</header> diff --git a/templates/web/base/report/photo.html b/templates/web/base/report/photo.html index 52e6ed64a..aa82baef6 100644 --- a/templates/web/base/report/photo.html +++ b/templates/web/base/report/photo.html @@ -4,8 +4,8 @@ [% END %] [% FOR photo IN object.photos %] <div class="update-img"> - <a href="[% c.cobrand.base_url %][% photo.url_full %]" rel="fancy"> - <img alt="Photo of this report" src="[% c.cobrand.base_url %][% photo.url %]"> + <a href="[% photo.url_full %]" rel="fancy"> + <img alt="Photo of this report" src="[% photo.url %]"> <span>zoom</span></a> </div> [% END %] |