mirror of
https://gitlab.archlinux.org/archlinux/aurweb.git
synced 2025-02-03 10:43:03 +01:00
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>
15 lines
441 B
HTML
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 %}
|