mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 09:32:06 +00:00
558f117a8e
* 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
20 lines
748 B
HTML
20 lines
748 B
HTML
{% 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">
|
||
© 2016–2021 {{ _('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 %}
|