mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 01:25:21 +00:00
790704d081
* Simplify 404 page * add es array_functions.md * restore some old manual anchors * update sitemaps * trigger checks * restore more old manual anchors * refactor test.md + temporary disable failure again * fix mistype
16 lines
417 B
HTML
16 lines
417 B
HTML
{% extends "templates/base.html" %}
|
|
{% set no_footer = True %}
|
|
|
|
{% block content %}
|
|
<div class="container py-5">
|
|
<a href="/">
|
|
<img id="logo-icon" src="images/logo.svg" />
|
|
<img id="logo-text" src="images/clickhouse-black.svg" alt="ClickHouse" />
|
|
</a>
|
|
<h2 class="my-4">404 Not Found</h2>
|
|
<p class="lead">
|
|
<a href="/">← Return to home page</a>
|
|
</p>
|
|
</div>
|
|
{% endblock %}
|