Foundation Content - Source Excerpt 55
Summary
This source excerpt preserves a bounded section of Anti-Christ.org/wp-content/plugins/fftac-foundation-core/inc/foundation-content.php so readers can inspect the evidence without opening the full source file.
**Source path:** Anti-Christ.org/wp-content/plugins/fftac-foundation-core/inc/foundation-content.php
'preview' => 'assets/downloads/previews/fftac-radiological-hazard-preview.gif',
'metadata' => array(
'Master GIF: 3600 x 2400.',
'Desktop target: 1920 x 1080.',
'Mobile target: 1080 x 1920.',
),
'actions' => array(
array(
'label' => 'View desktop background',
'path' => 'assets/downloads/wallpapers/fftac-radiological-hazard-desktop-1920x1080.gif',
'mode' => 'view',
),
array(
'label' => 'Download desktop background',
'path' => 'assets/downloads/wallpapers/fftac-radiological-hazard-desktop-1920x1080.gif',
'mode' => 'download',
),
array(
'label' => 'Download mobile background',
'path' => 'assets/downloads/wallpapers/fftac-radiological-hazard-mobile-1080x1920.gif',
'mode' => 'download',
),
array(
'label' => 'Download master GIF',
'path' => 'assets/downloads/posters/fftac-radiological-hazard.gif',
'mode' => 'download',
),
),
),
),
),
array(
'anchor' => 'seal-pack',
'eyebrow' => 'Seal Pack',
'title' => 'Official seal files',
'summary' => 'Vector and PNG seal files for public-facing listings, visual references, and asset bundles.',
'items' => array(
array(
'eyebrow' => 'Seal Assets',
'title' => 'FFTAC seal pack',
'summary' => 'The official seal in scalable SVG form plus square PNG exports for immediate reuse.',
'preview' => 'assets/downloads/seal/fftac-seal-1024.png',
'metadata' => array(
'SVG for scaling and archival use.',
'PNG exports included for quick placement.',
),
'actions' => array(
array(
'label' => 'View seal SVG',
'path' => 'assets/downloads/seal/fftac-seal.svg',
'mode' => 'view',
),
array(
'label' => 'Download seal PNG',
'path' => 'assets/downloads/seal/fftac-seal-1024.png',
'mode' => 'download',
),
array(
'label' => 'Download seal icon',
'path' => 'assets/downloads/seal/fftac-seal-icon-256.png',
'mode' => 'download',
),
),
),
),
),
array(
'anchor' => 'press-kit',
'eyebrow' => 'Press Kit',
'title' => 'Current public bundle',
'summary' => 'One archive for posters, wallpapers, seal files, and the site-link guide.',
'requires' => 'assets/downloads/bundles/fftac-press-kit.zip',
'items' => array(
array(
'eyebrow' => 'Bundle',
'title' => 'FFTAC press kit zip',
'summary' => 'A single downloadable bundle containing the current public poster set, wallpaper set, seal files, and link instructions.',
'preview' => 'assets/downloads/previews/fftac-foundation-poster-preview.png',
'metadata' => array(
'Includes posters, wallpapers, seal files, and the site-link guide.',
'Use the manifest if you need a quick inventory before downloading.',
),
'actions' => array(
array(
'label' => 'View manifest',
'path' => 'assets/downloads/documents/fftac-press-kit-manifest.txt',
'mode' => 'view',
),
array(
'label' => 'Download press kit',
'path' => 'assets/downloads/bundles/fftac-press-kit.zip',
'mode' => 'download',
),
),
),
),
),
);
if (function_exists('antichrist_engine_foundation_get_research_export_downloads')) {
$export_items = array();
foreach (antichrist_engine_foundation_get_research_export_downloads() as $export) {
$export_items[] = array(
'eyebrow' => (string) ($export['format_label'] ?? 'Export'),
'title' => (string) ($export['title'] ?? 'Research export'),
'summary' => (string) ($export['summary'] ?? ''),
'preview' => '',
'metadata' => array_filter(array(
(string) ($export['meta'] ?? ''),
'Generated from the live theme-backed atlas at request time.',
)),
'actions' => array_values(array_filter(array(
array(
'label' => (string) ($export['cta'] ?? 'Download export'),
'url' => (string) ($export['url'] ?? ''),
'mode' => 'download',
'download' => (string) ($export['filename'] ?? ''),
'meta_label'=> (string) ($export['meta'] ?? ''),
),
!empty($export['secondary_url']) ? array(
'label' => (string) ($export['secondary_label'] ?? 'Open reference route'),
'url' => (string) ($export['secondary_url'] ?? ''),
'mode' => 'view',
'meta_label'=> 'Reference route',
) : array(),
))),
);
}
if ($export_items) {
$collections[] = array(
'anchor' => 'research-data-exports',
'eyebrow' => 'Research Exports',
'title' => 'Research data exports',
'summary' => 'Generated download routes for claim tables, timeline chronology, source trails, unified record streams, and citation provenance notes.',
'items' => $export_items,
);
}
}
return apply_filters('antichrist_engine_foundation_download_collections', $collections);
}
/**
* Page definitions provisioned by the theme.
*
* @return array<string, array<string, mixed>>
*/
function antichrist_engine_foundation_page_definitions()
{
$pillars = antichrist_engine_foundation_pillars();
$pages = array(
'manifesto' => array(
'title' => 'Manifesto',
'slug' => 'manifesto',
'template' => 'template-manifesto.php',
'content' => antichrist_engine_foundation_manifesto_content(),
'nav_label' => 'Manifesto',
'menu_order' => 20,
),
'charter' => array(
'title' => 'Institutional Charter',
'slug' => 'charter',
'template' => 'template-governance.php',
'content' => antichrist_engine_foundation_charter_content(),
'nav_label' => 'Charter',
'menu_order' => 15,
),
'review_notices' => array(
'title' => 'Review Notices',
'slug' => 'review-notices',
'template' => 'template-review-notices.php',
'content' => antichrist_engine_foundation_review_notices_content(),
'nav_label' => 'Review Notices',
'menu_order' => 18,
),
'philosophy' => array(
'title' => 'Philosophy',
'slug' => 'philosophy',
'template' => 'template-philosophy.php',
'content' => antichrist_engine_foundation_philosophy_content(),
'nav_label' => 'Philosophy',
'menu_order' => 25,
),
'research' => array(
'title' => 'Research Program',
'slug' => 'research',
'template' => 'template-research.php',