ClickHouse/website/templates/footer.html
Cody Baker 558f117a8e
Add Trademark Policy Page (#33851)
* Add trademark policy page

* Add global link in footer to trademark policy

* Update trademark policy path

* Update trademark policy content

* Move trademark policy link inline with license
2022-01-21 01:24:51 +03:00

20 lines
748 B
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{% if not no_footer %}
<div class="footer font-xs {{ footer_class or 'bg-light text-muted' }}">
<div class="container d-flex align-items-center {{ footer_container_class or 'py-2' }}">
<div class="footer-copy font-weight-bold">
&copy; 20162021 {{ _('ClickHouse, Inc.') }}
</div>
<div class="footer-license ml-4">
{{ _('ClickHouse source code is published under the Apache 2.0 License.') }}</a> {{ _('Software is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.') }}
</div>
<div class="footer-links ml-4">
<a href="/legal/trademark-policy/" class="text-muted">Trademark Policy</a>
</div>
</div>
</div>
{% endif %}