This commit is contained in:
Danny Coates 2018-10-16 16:53:33 -07:00
parent 2b81ff1fb3
commit cc85486414
No known key found for this signature in database
GPG key ID: 4C442633C62E00CB
28 changed files with 207 additions and 97 deletions

View file

@ -4,7 +4,7 @@ const title = require('../templates/title');
module.exports = function(state) {
return html`
<div class="page">
<main class="main page">
${title(state)}
<div class="title">${state.translate('legalHeader')}</div>
${raw(
@ -20,7 +20,7 @@ module.exports = function(state) {
'https://www.mozilla.org/about/legal/terms/mozilla/'
])
)}
</div>
</main>
`;
};