|
{# retoor <retoor@molodetz.nl> #}
|
|
{% extends 'base.html' %}
|
|
{% from 'macros/components.html' import card_grid, module_grid %}
|
|
|
|
{% block main %}
|
|
<div class="hero">
|
|
<h1>{{ site.name }} Manual</h1>
|
|
<p>{{ site.description }}</p>
|
|
<div class="hero-buttons">
|
|
<a href="{{ static_prefix }}getting-started/index.html" class="primary-btn">Get Started</a>
|
|
<a href="{{ static_prefix }}api/index.html" class="secondary-btn">API Reference</a>
|
|
</div>
|
|
</div>
|
|
<article>
|
|
{% block article %}{% endblock %}
|
|
</article>
|
|
{% include 'includes/page_footer.html' %}
|
|
{% endblock %}
|