mirror of https://github.com/xwiki-labs/cryptpad
Add links to FAQ and Privacy in static pages
This commit is contained in:
parent
cbd29794b8
commit
b1b9683141
|
@ -98,9 +98,11 @@ define([
|
|||
]),
|
||||
h('a.navbar-brand', { href: '/index.html'}),
|
||||
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: '/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: '/about.html'}, Msg.about),
|
||||
].concat(rightLinks))
|
||||
|
@ -403,6 +405,9 @@ define([
|
|||
infopageTopbar(),
|
||||
h('div.container.cp-container', [
|
||||
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)
|
||||
]),
|
||||
infopageFooter()
|
||||
|
|
|
@ -4,6 +4,13 @@
|
|||
.infopages_main();
|
||||
.infopages_topbar();
|
||||
|
||||
.cp-faq-header {
|
||||
padding: 0;
|
||||
font-size: 1.2em;
|
||||
a {
|
||||
padding: 0;
|
||||
}
|
||||
}
|
||||
.cp-faq-container {
|
||||
.cp-faq-questions-q {
|
||||
color: #3a84b6;
|
||||
|
|
|
@ -672,7 +672,7 @@ define(function () {
|
|||
out.footer_aboutUs = "À propos";
|
||||
|
||||
out.about = "À propos";
|
||||
out.privacy = "Vie privée";
|
||||
out.privacy = "Confidentialité";
|
||||
out.contact = "Contact";
|
||||
out.terms = "Conditions";
|
||||
out.blog = "Blog";
|
||||
|
@ -759,6 +759,7 @@ define(function () {
|
|||
|
||||
out.faq_link = "FAQ";
|
||||
out.faq_title = "Foire Aux Questions";
|
||||
out.faq_whatis = "Qu'est-ce que CryptPad ?";
|
||||
out.faq = {};
|
||||
out.faq.keywords = {
|
||||
title: 'Termes spéciaux',
|
||||
|
|
|
@ -765,6 +765,7 @@ define(function () {
|
|||
|
||||
out.faq_link = "FAQ";
|
||||
out.faq_title = "Frequently Asked Questions";
|
||||
out.faq_whatis = "What is CryptPad?";
|
||||
out.faq = {};
|
||||
out.faq.keywords = {
|
||||
title: 'Keywords',
|
||||
|
|
Loading…
Reference in New Issue