ClickHouse/website/templates/footer.html

17 lines
931 B
HTML
Raw Normal View History

{% if not no_footer %}
2020-03-30 08:25:29 +00:00
<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"
2020-03-30 08:25:29 +00:00
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">
2020-04-10 09:32:37 +00:00
&copy; 20162020 <a href="https://yandex.com/company/" rel="external nofollow noreferrer" target="_blank" class="text-muted">{{ _('Yandex LLC') }}</a>
</div>
</div>
</div>
</div>
{% endif %}