{#- =========================================================================== Arcanum Site Kit (ASK) v2.0 — partials/action-footer.html (Jinja2 include) THE FOOTER v2 — the "Action Footer" (CODE_DATA_FIRST_STANDARD.md §B1.2). REPLACES partials/footer.html's role: one footer per page. As the top of a page carries the menu, the bottom carries a useful-buttons bar: compact Research Triad + "Website source" + "Cite this site" ABOVE the existing MANDATED dual-anchor colophon — heterodata.org (hub) AND nickanderson.us (architect) — which is preserved BYTE-FOR-BYTE from footer.html. The action bar is hydrated by ark-triad.js from this site's ecosystem `cdf` block; every element degrades gracefully (the triad + Website-source + Cite are hidden until hydrated, so a not-yet-migrated site shows exactly the v1 colophon). Usage (bottom of in base.html) — swap the old include for this one: {% include "_shared/action-footer.html" %} Variables — identical to footer.html (all optional, same defaults): hub_url · author_url · hub_name · author_name · dpr_url · dpr_label · disclaimer · disclaimer_text · disclaimer_source ============================================================================ -#} {%- set hub_url = hub_url | default("https://heterodata.org", true) -%} {%- set author_url = author_url | default("https://nickanderson.us", true) -%} {%- set hub_name = hub_name | default("heterodata.org", true) -%} {%- set author_name = author_name | default("nickanderson.us", true) -%} {%- set dpr_url = dpr_url | default("/methodology", true) -%} {%- set dpr_label = dpr_label | default("Provenance", true) -%} {%- set disclaimer = true if disclaimer is not defined else disclaimer -%} {%- set disclaimer_text = disclaimer_text | default("The data on this site is reconstructed for research transparency and education. It may lag official revisions or contain reconstruction error, and it is not a substitute for the original source. For authoritative figures, defer to the named original source for each dataset.", true) -%}