summaryrefslogtreecommitdiffstats
path: root/template/en/default/global/footer.html.tmpl
diff options
context:
space:
mode:
authorFrédéric Buclin <LpSolit@gmail.com>2015-04-05 21:16:25 +0200
committerFrédéric Buclin <LpSolit@gmail.com>2015-04-05 21:16:25 +0200
commitd1c18ff2567cdaf9969fe719e30e3823e0fae738 (patch)
tree7b781829e6bb3bf02591b8786dc3257d0e81c2fe /template/en/default/global/footer.html.tmpl
parentfe75edaf698f6bdfb66d8784e0f6ca191212efd3 (diff)
downloadbugzilla-d1c18ff2567cdaf9969fe719e30e3823e0fae738.tar.gz
bugzilla-d1c18ff2567cdaf9969fe719e30e3823e0fae738.tar.xz
Bug 1143502: Use structural HTML5 elements instead of <div>
r=dkl a=sgreen
Diffstat (limited to 'template/en/default/global/footer.html.tmpl')
-rw-r--r--template/en/default/global/footer.html.tmpl10
1 files changed, 6 insertions, 4 deletions
diff --git a/template/en/default/global/footer.html.tmpl b/template/en/default/global/footer.html.tmpl
index 7cc5e1b44..7390a6d99 100644
--- a/template/en/default/global/footer.html.tmpl
+++ b/template/en/default/global/footer.html.tmpl
@@ -12,15 +12,17 @@
#%]
[% Hook.process('main-end') %]
- </div>
+ </main>
- <div id="footer">
+ <footer id="footer">
<div class="intro">[% Hook.process('intro') %]</div>
- [% PROCESS "global/useful-links.html.tmpl" %]
+ <nav>
+ [% PROCESS "global/useful-links.html.tmpl" %]
+ </nav>
<div class="outro">[% Hook.process('outro') %]</div>
- </div>
+ </footer>
[% Hook.process("end") %]
</body>