rustio-core 2.0.5

Runtime core for RustIO: HTTP server, router, middleware, ORM, admin, and migrations.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{% extends "base.html" %}

{% block body_class %}admin-shell{% endblock %}

{% block body %}
<div class="rio-shell">
  {% include "includes/sidebar.html" %}
  <main class="rio-main">
    {% include "includes/header.html" %}
    {% block admin_content %}{% endblock %}
    {% include "includes/footer.html" %}
  </main>
</div>
{% endblock %}