Add links to FAQ and Privacy in static pages

pull/1/head
yflory 7 years ago
parent cbd29794b8
commit b1b9683141

@ -98,9 +98,11 @@ define([
]), ]),
h('a.navbar-brand', { href: '/index.html'}), h('a.navbar-brand', { href: '/index.html'}),
h('div.collapse.navbar-collapse.justify-content-end#menuCollapse', [ h('div.collapse.navbar-collapse.justify-content-end#menuCollapse', [
h('a.nav-item.nav-link', { href: '/what-is-cryptpad.html'}, Msg.topbar_whatIsCryptpad), //h('a.nav-item.nav-link', { href: '/what-is-cryptpad.html'}, Msg.topbar_whatIsCryptpad), // Moved the FAQ
h('a.nav-item.nav-link', { href: '/faq.html'}, Msg.faq_link),
h('a.nav-item.nav-link', { href: 'https://blog.cryptpad.fr/'}, Msg.blog), h('a.nav-item.nav-link', { href: 'https://blog.cryptpad.fr/'}, Msg.blog),
h('a.nav-item.nav-link', { href: '/features.html'}, Msg.features), h('a.nav-item.nav-link', { href: '/features.html'}, Msg.features),
h('a.nav-item.nav-link', { href: '/privacy.html'}, Msg.privacy),
h('a.nav-item.nav-link', { href: '/contact.html'}, Msg.contact), h('a.nav-item.nav-link', { href: '/contact.html'}, Msg.contact),
h('a.nav-item.nav-link', { href: '/about.html'}, Msg.about), h('a.nav-item.nav-link', { href: '/about.html'}, Msg.about),
].concat(rightLinks)) ].concat(rightLinks))
@ -403,6 +405,9 @@ define([
infopageTopbar(), infopageTopbar(),
h('div.container.cp-container', [ h('div.container.cp-container', [
h('center', h('h1', Msg.faq_title)), h('center', h('h1', Msg.faq_title)),
h('p.cp-faq-header', h('a.nav-item.nav-link', {
href: '/what-is-cryptpad.html'
}, Msg.faq_whatis)),
h('div.cp-faq-container', categories) h('div.cp-faq-container', categories)
]), ]),
infopageFooter() infopageFooter()

@ -4,6 +4,13 @@
.infopages_main(); .infopages_main();
.infopages_topbar(); .infopages_topbar();
.cp-faq-header {
padding: 0;
font-size: 1.2em;
a {
padding: 0;
}
}
.cp-faq-container { .cp-faq-container {
.cp-faq-questions-q { .cp-faq-questions-q {
color: #3a84b6; color: #3a84b6;

@ -672,7 +672,7 @@ define(function () {
out.footer_aboutUs = "À propos"; out.footer_aboutUs = "À propos";
out.about = "À propos"; out.about = "À propos";
out.privacy = "Vie privée"; out.privacy = "Confidentialité";
out.contact = "Contact"; out.contact = "Contact";
out.terms = "Conditions"; out.terms = "Conditions";
out.blog = "Blog"; out.blog = "Blog";
@ -759,6 +759,7 @@ define(function () {
out.faq_link = "FAQ"; out.faq_link = "FAQ";
out.faq_title = "Foire Aux Questions"; out.faq_title = "Foire Aux Questions";
out.faq_whatis = "Qu'est-ce que CryptPad ?";
out.faq = {}; out.faq = {};
out.faq.keywords = { out.faq.keywords = {
title: 'Termes spéciaux', title: 'Termes spéciaux',

@ -765,6 +765,7 @@ define(function () {
out.faq_link = "FAQ"; out.faq_link = "FAQ";
out.faq_title = "Frequently Asked Questions"; out.faq_title = "Frequently Asked Questions";
out.faq_whatis = "What is CryptPad?";
out.faq = {}; out.faq = {};
out.faq.keywords = { out.faq.keywords = {
title: 'Keywords', title: 'Keywords',

Loading…
Cancel
Save