aurweb/templates/index.html
Kevin Morris d9cdd5faef
[FastAPI] Modularize homepage and add side panel
This puts one more toward completion of the homepage
overall; we'll need to still implement the authenticated
user dashboard after this.

Signed-off-by: Kevin Morris <kevr@0cost.org>
2021-08-17 19:58:32 -07:00

15 lines
441 B
HTML

{% extends 'partials/layout.html' %}
{% block pageContent %}
<div id="content-left-wrapper">
<div id="content-left">
{% include 'home.html' %}
</div>
</div>
<div id="content-right">
{% include 'partials/packages/widgets/search.html' %}
{% include 'partials/packages/widgets/updates.html' %}
{% include 'partials/packages/widgets/statistics.html' %}
</div>
{% endblock %}