Skip to content
wiki.fftac.org

Template Journal - Source Excerpt 04

Back to Template Journal

Summary

This source excerpt preserves a bounded section of Anti-Christ.org/wp-content/themes/antichrist-engine/template-journal.php so readers can inspect the evidence without opening the full source file.

**Source path:** Anti-Christ.org/wp-content/themes/antichrist-engine/template-journal.php

<?php foreach ($launch_priorities as $priority) : ?>
                        <article class="statement-card launch-roadmap-card journal-sequence-card">
                            <p class="eyebrow"><?php echo esc_html($priority['eyebrow']); ?></p>
                            <h3><?php echo esc_html($priority['title']); ?></h3>
                            <p><?php echo esc_html($priority['summary']); ?></p>
                            <?php if (!empty($priority['rationale'])) : ?>
                                <p class="journal-sequence-card__label"><?php esc_html_e('Why This File Matters', 'antichrist-engine'); ?></p>
                                <p><?php echo esc_html($priority['rationale']); ?></p>
                            <?php endif; ?>
                            <?php if (!empty($priority['outcome'])) : ?>
                                <p class="foundation-panel__subline"><?php echo esc_html($priority['outcome']); ?></p>
                            <?php endif; ?>
                            <div class="hero__actions">
                                <a class="text-link" href="<?php echo esc_url($resolve_priority_url($priority)); ?>"><?php echo esc_html($priority['cta']); ?></a>
                                <?php if (!empty($priority['related_target']) && !empty($priority['related_cta'])) : ?>
                                    <a class="text-link" href="<?php echo esc_url(antichrist_engine_foundation_build_target_url(
                                        (string) $priority['related_target'],
                                        (array) ($priority['related_args'] ?? array()),
                                        (string) ($priority['related_anchor'] ?? '')
                                    )); ?>"><?php echo esc_html($priority['related_cta']); ?></a>
                                <?php endif; ?>
                            </div>
                        </article>
                    <?php endforeach; ?>
                </div>
            </section>

            <section id="publication-packets" class="card foundation-panel">
                <header class="entry-header">
                    <p class="eyebrow"><?php esc_html_e('Publication Packets', 'antichrist-engine'); ?></p>
                    <h2><?php echo esc_html($journal_copy['packet_title']); ?></h2>
                    <p><?php echo esc_html($journal_copy['packet_summary']); ?></p>
                </header>
                <div class="publication-packet-grid">
                    <?php foreach ($publication_packets as $packet) : ?>
                        <article class="statement-card publication-packet-card">
                            <p class="eyebrow"><?php echo esc_html($packet['eyebrow']); ?></p>
                            <h3><?php echo esc_html($packet['title']); ?></h3>
                            <p><?php echo esc_html($packet['summary']); ?></p>
                            <p class="foundation-panel__subline"><?php echo esc_html($packet['note']); ?></p>
                            <ul class="publication-packet-card__list">
                                <?php foreach ((array) ($packet['includes'] ?? array()) as $item) : ?>
                                    <li><?php echo esc_html($item); ?></li>
                                <?php endforeach; ?>
                            </ul>
                            <div class="foundation-card-actions">
                                <a class="text-link" href="<?php echo esc_url(antichrist_engine_foundation_build_target_url(
                                    (string) ($packet['primary_target'] ?? ''),
                                    (array) ($packet['primary_args'] ?? array()),
                                    (string) ($packet['primary_anchor'] ?? '')
                                )); ?>"><?php echo esc_html($packet['primary_cta']); ?></a>
                                <a class="text-link" href="<?php echo esc_url(antichrist_engine_foundation_build_target_url(
                                    (string) ($packet['secondary_target'] ?? ''),
                                    (array) ($packet['secondary_args'] ?? array()),
                                    (string) ($packet['secondary_anchor'] ?? '')
                                )); ?>"><?php echo esc_html($packet['secondary_cta']); ?></a>
                            </div>
                        </article>
                    <?php endforeach; ?>
                </div>
            </section>

            <section class="card foundation-panel">
                <header class="entry-header">
                    <p class="eyebrow"><?php esc_html_e('Verified Research Standard', 'antichrist-engine'); ?></p>
                    <h2><?php esc_html_e('What the banner means before a dossier wears it', 'antichrist-engine'); ?></h2>
                </header>
                <div class="statement-grid">
                    <?php foreach ($verified_protocols as $protocol) : ?>
                        <article class="statement-card">
                            <h3><?php echo esc_html($protocol['title']); ?></h3>
                            <p><?php echo esc_html($protocol['summary']); ?></p>
                        </article>
                    <?php endforeach; ?>
                </div>
            </section>

            <section id="contributor-lanes" class="card foundation-panel">
                <header class="entry-header">
                    <p class="eyebrow"><?php esc_html_e('Contributor Lanes', 'antichrist-engine'); ?></p>
                    <h2><?php esc_html_e('Routes into dossiers, cohorts, affiliates, and live programming', 'antichrist-engine'); ?></h2>
                </header>
                <div class="research-lab-grid">
                    <?php foreach ($contributor_lanes as $lane) : ?>
                        <?php $lane_program = $program_blueprints[$lane['program']] ?? array(); ?>
                        <article class="statement-card research-lab-card">
                            <p class="eyebrow"><?php echo esc_html($lane['title']); ?></p>
                            <p><?php echo esc_html($lane['summary']); ?></p>
                            <?php if (!empty($lane_program['format']) || !empty($lane_program['cadence'])) : ?>
                                <p class="research-card__meta"><strong><?php esc_html_e('Format:', 'antichrist-engine'); ?></strong> <?php echo esc_html(trim(($lane_program['format'] ?? '') . ' / ' . ($lane_program['cadence'] ?? ''), ' /')); ?></p>
                            <?php endif; ?>
                            <?php if (!empty($lane_program['current_cycle'])) : ?>
                                <p class="foundation-panel__subline"><?php echo esc_html($lane_program['current_cycle']); ?></p>
                            <?php endif; ?>
                            <div class="hero__actions">
                                <a class="text-link" href="<?php echo esc_url(antichrist_engine_foundation_build_target_url('join', array('program' => $lane['program']), 'program-intake')); ?>"><?php esc_html_e('Open intake route', 'antichrist-engine'); ?></a>
                                <?php if (!empty($lane_program['related_target']) && !empty($lane_program['related_cta'])) : ?>
                                    <a class="text-link" href="<?php echo esc_url(antichrist_engine_foundation_build_target_url(
                                        $lane_program['related_target'],
                                        $lane_program['args'] ?? array(),
                                        $lane_program['related_anchor'] ?? ''
                                    )); ?>"><?php echo esc_html($lane_program['related_cta']); ?></a>
                                <?php endif; ?>
                            </div>
                        </article>
                    <?php endforeach; ?>
                </div>
            </section>

            <section id="outward-cadence" class="card foundation-panel">
                <header class="entry-header">
                    <p class="eyebrow"><?php esc_html_e('Outward Cadence', 'antichrist-engine'); ?></p>
                    <h2><?php esc_html_e('Signals, archive rhythm, and the first amendment threshold', 'antichrist-engine'); ?></h2>
                </header>
                <div class="statement-grid">
                    <?php foreach ($publication_cadence as $cadence_item) : ?>
                        <article class="statement-card">
                            <p class="eyebrow"><?php echo esc_html($cadence_item['eyebrow']); ?></p>
                            <h3><?php echo esc_html($cadence_item['title']); ?></h3>
                            <p><?php echo esc_html($cadence_item['summary']); ?></p>