mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-13 19:14:30 +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
32 lines
587 B
HTML
32 lines
587 B
HTML
{% set prefetch_items = [
|
|
('/docs/en/', 'document')
|
|
] %}
|
|
|
|
{% extends "templates/base.html" %}
|
|
|
|
{% block extra_meta %}
|
|
{% include "templates/common_fonts.html" %}
|
|
{% endblock %}
|
|
|
|
{% block banner %}
|
|
|
|
{% include "templates/global/banner.html" %}
|
|
|
|
{% endblock %}
|
|
|
|
{% block nav %}
|
|
|
|
{% include "templates/global/nav.html" %}
|
|
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
{% include "templates/trademark-policy/hero.html" %}
|
|
{% include "templates/trademark-policy/content.html" %}
|
|
|
|
{% include "templates/global/newsletter.html" %}
|
|
{% include "templates/global/github_stars.html" %}
|
|
|
|
{% endblock %}
|