cartografos icon indicating copy to clipboard operation
cartografos copied to clipboard

Website footer copyright text issue

Open node opened this issue 8 months ago • 4 comments

In website/layouts/partials/footer.html, there is a copyright text segment:

<div class="copyright py-2">
                        <small>
                                &copy; {{ now.Year}} The CNCF Authors | Documentation
                                Distributed under CC BY 4.0</small>

but in i18n/en.toml ,also has the same info as following

[footer_all_rights_reserved]
other = " | Documentation Distributed under CC-BY-4.0"

When we plan to localize website, actually the value of "footer_all_rights_reserved" is not effective.

Advised solution:
Use dynamic variable in website/layouts/partials/footer.html instead of static text.

node avatar Nov 08 '23 07:11 node