Build and Deploy Verso / deploy (push) Successful in 9m41s
The login (and other CE) pages render layout/thin-footer, not
fat-footer-website-redesign, because showThinFooter = !hasFeature('saas')
is true in Community Edition. The earlier footer edit therefore never
showed. Replace the static "© 2025 Built on Overleaf" line with the
Verso attribution (© <year> Aloïs Coquillard · Built on Overleaf) and
add an AGPL licence + source-code link group on the right, keeping the
language picker and custom nav items intact.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
50 lines
1.4 KiB
Plaintext
50 lines
1.4 KiB
Plaintext
footer.site-footer
|
|
- var showLanguagePicker = Object.keys(settings.i18n.subdomainLang).length > 1
|
|
- var hasCustomLeftNav = nav.left_footer && nav.left_footer.length > 0
|
|
.site-footer-content.hidden-print
|
|
.row
|
|
ul.site-footer-items.col-lg-9
|
|
li
|
|
| © #{new Date().getFullYear()}
|
|
|
|
|
a(href='https://alocoq.fr' target='_blank' rel='noopener noreferrer') Aloïs Coquillard
|
|
li
|
|
strong.text-muted |
|
|
li
|
|
| Built on
|
|
|
|
|
a(href='https://github.com/overleaf/overleaf' target='_blank' rel='noopener noreferrer') Overleaf
|
|
|
|
if showLanguagePicker || hasCustomLeftNav
|
|
li
|
|
strong.text-muted |
|
|
|
|
if showLanguagePicker
|
|
include language-picker
|
|
|
|
if showLanguagePicker && hasCustomLeftNav
|
|
li
|
|
strong.text-muted |
|
|
|
|
each item in nav.left_footer
|
|
li
|
|
if item.url
|
|
a(href=item.url class=item.class) !{translate(item.text)}
|
|
else
|
|
| !{item.text}
|
|
|
|
ul.site-footer-items.col-lg-3.text-end
|
|
li
|
|
a(href='https://git.alocoq.fr/alois/verso/src/branch/main/LICENSE' target='_blank' rel='noopener noreferrer') AGPL licence
|
|
li
|
|
strong.text-muted |
|
|
li
|
|
a(href='https://git.alocoq.fr/alois/verso' target='_blank' rel='noopener noreferrer') Source code
|
|
|
|
each item in nav.right_footer
|
|
li
|
|
if item.url
|
|
a(href=item.url class=item.class aria-label=item.label) !{item.text}
|
|
else
|
|
| !{item.text}
|