ClickHouse/website/templates/footer.html
2022-02-19 11:50:12 +01:00

20 lines
769 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; 20162022 {{ _('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 %}