ClickHouse/website/templates/footer.html

16 lines
626 B
HTML
Raw Normal View History

{% if not no_footer %}
2021-09-09 15:02:00 +00:00
<div class="footer font-xs {{ footer_class or 'bg-light text-muted' }}">
2021-09-09 23:21:13 +00:00
<div class="container d-flex align-items-center {{ footer_container_class or 'py-2' }}">
2021-09-09 15:02:00 +00:00
2021-09-19 16:50:09 +00:00
<div class="footer-copy font-weight-bold">
2021-09-19 19:59:55 +00:00
&copy; 20162021 {{ _('ClickHouse, Inc.') }}
2021-09-19 16:50:09 +00:00
</div>
2021-09-09 15:02:00 +00:00
2021-09-19 16:50:09 +00:00
<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>
2021-09-09 15:02:00 +00:00
</div>
</div>
{% endif %}