cassandra/doc/source/_templates/indexcontent.html

101 lines
4.6 KiB
HTML

{% extends "layout.html" %}
{# Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License. #}
{%- block htmltitle -%}
<title>{{ html_title }}</title>
{%- endblock -%}
{% block body %}
<h1>{{ docstitle|e }}</h1>
<p>
{% trans %}Welcome! This is the documentation for Apache Cassandra {{ version }}.{% endtrans %}
</p>
<div id="wipwarning">This documentation is a work-in-progress.
<a href="{{ pathto("bugs") }}">Contributions</a> are welcome.</div>
<h3>Main documentation</h3>
<div>
<form id="doc-search-form" action="{{ pathto('search') }}" method="get" role="search">
<div class="form-group">
Search the documentation:
<input type="text" size="30" class="form-control input-sm" name="q" placeholder="Search docs">
<input type="hidden" name="check_keywords" value="yes" />
<input type="hidden" name="area" value="default" />
</div>
</form><br />
</div>
<table class="contentstable doc-landing-table" align="center">
<tr>
<td class="left-column">
<p class="biglink"><a class="biglink" href="{{ pathto("getting_started/index") }}">{% trans %}Getting started{% endtrans %}</a><br/>
<span class="linkdescr">{% trans %}Newbie friendly starting point{% endtrans %}</span></p>
</td>
<td class="right-column">
<p class="biglink"><a class="biglink" href="{{ pathto("operating/index") }}">{% trans %}Operating Cassandra{% endtrans %}</a><br/>
<span class="linkdescr">{% trans %}The operator's corner{% endtrans %}</span></p>
</td>
</tr>
<tr>
<td class="left-column">
<p class="biglink"><a class="biglink" href="{{ pathto("architecture/index") }}">{% trans %}Cassandra Architecture{% endtrans %}</a><br/>
<span class="linkdescr">{% trans %}Cassandra's big picture{% endtrans %}</span></p>
</td>
<td class="right-column">
<p class="biglink"><a class="biglink" href="{{ pathto("tools/index") }}">{% trans %}Cassandra's Tools{% endtrans %}</a><br/>
<span class="linkdescr">{% trans %}cqlsh, nodetool, ...{% endtrans %}</span></p>
</td>
</tr>
<tr>
<td class="left-column">
<p class="biglink"><a class="biglink" href="{{ pathto("data_modeling/index") }}">{% trans %}Data Modeling{% endtrans %}</a><br/>
<span class="linkdescr">{% trans %}Hint: it's not relational{% endtrans %}</span></p>
</td>
<td class="right-column">
<p class="biglink"><a class="biglink" href="{{ pathto("troubleshooting/index") }}">{% trans %}Troubleshooting{% endtrans %}</a><br/>
<span class="linkdescr">{% trans %}What to look for when you have a problem{% endtrans %}</span></p>
</td>
</tr>
<tr>
<td class="left-column">
<p class="biglink"><a class="biglink" href="{{ pathto("cql/index") }}">{% trans %}Cassandra Query Language{% endtrans %}</a><br/>
<span class="linkdescr">{% trans %}CQL reference documentation{% endtrans %}</span></p>
</td>
<td class="right-column">
<p class="biglink"><a class="biglink" href="{{ pathto("development/index") }}">{% trans %}Cassandra Development{% endtrans %}</a><br/>
<span class="linkdescr">{% trans %}Learn how to improve Cassandra and contribute patches{% endtrans %}</span></p>
</td>
</tr>
<tr>
<td class="left-column">
<p class="biglink"><a class="biglink" href="{{ pathto("faq/index") }}">{% trans %}FAQs{% endtrans %}</a><br/>
<span class="linkdescr">{% trans %}Frequently Asked Questions (with answers!){% endtrans %}</span></p>
</td>
<td class="right-column">
<p class="biglink"><a class="biglink" href="{{ pathto("configuration/index") }}">{% trans %}Configuration{% endtrans %}</a><br/>
<span class="linkdescr">{% trans %}Cassandra's handles and knobs{% endtrans %}</span></p>
</td>
</tr>
</table>
<h3>Meta informations</h3>
<ul>
<li><a class="biglink" href="{{ pathto("bugs") }}">{% trans %}Reporting bugs{% endtrans %}</a></li>
<li><a class="biglink" href="{{ pathto("contactus") }}">{% trans %}Contact us{% endtrans %}</a></li>
</ul>
{% endblock %}