Onechart docs spike

This commit is contained in:
Laszlo Fogas
2020-10-09 14:26:52 +02:00
parent 718573cffa
commit a347cb6790
16 changed files with 437 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
{% extends "main.html" %}
{% block extrahead %}
<link href="https://unpkg.com/tailwindcss@^1.0/dist/tailwind.min.css" rel="stylesheet">
{% endblock %}
{% block tabs %}
{{ super() }}
<section class="container mx-auto">
<div class="md-grid md-typeset">
<div class="tx-hero">
<div class="tx-hero__content">
<h1>Technical documentation that just works</h1>
<p>{{ config.site_description }}</p>
</div>
</div>
</div>
</section>
{% endblock %}
{% block site_nav %}{% endblock %}
{% block content %}{% endblock %}
{% block footer %}{% endblock %}
+2
View File
@@ -0,0 +1,2 @@
{% extends "base.html" %}