{% extends "standalone/base.html" %} {% block title %}Site Admin - {{ domain }}{% endblock %} {% block body_class %}antialiased bg-gray-950 text-gray-200{% endblock %} {% block body %}

{{ brand_name }}

{{ domain }} • {{ niche }}

Generated: {{ gen_date }}

{% for stat in [{'val': total_pages, 'label': 'Pages'}, {'val': total_images, 'label': 'Images'}, {'val': total_docs, 'label': 'Docs'}, {'val': total_files, 'label': 'Total'}] %}
{{ stat.val }}
{{ stat.label }}
{% endfor %}

Pages Directory

{% for path, title, icon in page_list %} {% endfor %}
PathDescription
{{ icon }} {{ path }}{{ title }}

Graphics & Images

{% if img_items %}
{% for cat, fname, rel_path in img_items %}
{{ fname }}
{{ cat }}
{{ fname }}
{% endfor %}
{% else %}

No images available.

{% endif %}

Business Documents

{% if docs_by_tier %} {% for tier, doc_list in docs_by_tier.items() %}
{{ tier }}{{ doc_list|length }} docs
{% for dk, dv, tier_slug in doc_list %} {{ dv.get('title', dk) }} {% endfor %}
{% endfor %} {% else %}

No business documents yet.

{% endif %}

Interactive Tools

{% if augments %} {% for aug in augments %}
{{ aug.title }}
{{ aug.description[:80] }}{% if aug.description|length > 80 %}...{% endif %}
Open →
{% endfor %} {% else %}

No tools yet.

{% endif %}

File Manifest

Show all {{ total_files }} files
{% for fpath, ftype, size_str in manifest_rows %} {% endfor %}
PathTypeSize
{{ fpath }}{{ ftype }}{{ size_str }}
{% endblock %}