stub for index page

This commit is contained in:
Roman Trapeznikov 2022-02-23 00:13:07 +03:00
parent b5ff2f6683
commit 04a7479c59
No known key found for this signature in database
GPG Key ID: 89BED52F1E290F8D

View File

@ -0,0 +1,29 @@
{% extends "default/index.html.jinja2" %}
{% block content %}
<header class="pdoc">
{% block logo %}
<a href="https://ballistica.net">
<img src="https://files.ballistica.net/ballistica_media/ballistica_logo_half.png"
alt="project logo"/>
</a>
{% endblock %}
{% if search %}
<input type="search" placeholder="Search Ballistica Python API Documentation..." aria-label="search box">
{% endif %}
</header>
<main class="pdoc">
<h1>header woo-hoo</h1>
Welcome to blah blah blah, some <b>bold</b> text, create an
<a href="https://github.com/efroemling/ballistica/issues/">issue</a>
if something in this docs feels incorrect or can be improved blah blah
<code>
some code hooray
</code>
<br/>
TODO: add some normal text here.
</main>
{% if search %}
{% include "search.html.jinja2" %}
{% endif %}
{% endblock %}