2020-04-10 13:56:25 +00:00
|
|
|
{% set prefetch_items = [
|
|
|
|
('/docs/en/', 'document')
|
|
|
|
] %}
|
|
|
|
|
2020-03-13 19:35:03 +00:00
|
|
|
{% extends "templates/base.html" %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
|
|
|
|
{% include "templates/index/nav.html" %}
|
|
|
|
{% include "templates/index/hero.html" %}
|
|
|
|
{% include "templates/index/events.html" %}
|
|
|
|
{% include "templates/index/performance.html" %}
|
|
|
|
{% include "templates/index/why.html" %}
|
|
|
|
{% include "templates/index/success.html" %}
|
|
|
|
{% include "templates/index/efficient.html" %}
|
|
|
|
{% include "templates/index/rich.html" %}
|
|
|
|
{% include "templates/index/features.html" %}
|
2020-04-01 21:02:52 +00:00
|
|
|
{% include "templates/index/scalable.html" %}
|
2020-03-13 19:35:03 +00:00
|
|
|
{% include "templates/index/use.html" %}
|
|
|
|
{% include "templates/index/quickstart.html" %}
|
2020-03-14 20:02:57 +00:00
|
|
|
{% include "templates/index/community.html" %}
|
2020-03-13 19:35:03 +00:00
|
|
|
|
|
|
|
{% endblock %}
|