ClickHouse/website/templates/footer.html
Ilya Yatsishin c4a3acd4f8
2021 footer
2021-02-01 17:53:38 +03:00

17 lines
931 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 id="footer" class="{{ footer_class or 'bg-dark text-muted' }}">
<div class="container {{ footer_container_class or 'py-3' }}">
<div class="row">
<div class="col-lg-8 text-left">
<a href="https://github.com/ClickHouse/ClickHouse/blob/master/LICENSE"
rel="external nofollow noreferrer" target="_blank" class="text-reset">
{{ _('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="col-lg-4 text-right">
&copy; 20162021 <a href="https://yandex.com/company/" rel="external nofollow noreferrer" target="_blank" class="text-muted">{{ _('Yandex LLC') }}</a>
</div>
</div>
</div>
</div>
{% endif %}