{% extends "standalone/base.html" %} {% block title %}Site Admin - {{ domain }}{% endblock %} {% block body_class %}font-body antialiased{% endblock %} {% block head_extra %} {% endblock %} {% block body %}

{{ brand_name }}

{{ domain }}

Niche: {{ niche }} • {{ tagline }}

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 %}
Path Description
{{ icon }} {{ path }} {{ title }}

🎨 Graphics & Images Gallery

{% 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 }} document{{ 's' if doc_list|length != 1 else '' }}
{% for dk, dv, tier_slug in doc_list %} {{ dv.get('title', dk) }} {% endfor %}
{% endfor %} {% else %}

No business documents generated yet.

{% endif %}

Interactive Tools

{% if augments %}
{% for aug in augments %}
{{ aug.title }}
{{ aug.description or '' }}
Open →
{% endfor %}
{% else %}

No interactive tools generated yet.

{% endif %}

📁 Complete File Manifest

Show all {{ total_files }} deployed files
{% for fpath, ftype, size_str in manifest_rows %} {% endfor %}
File Path Type Size
{{ fpath }} {{ ftype }} {{ size_str }}
{% endblock %}