Skip to content
wiki.fftac.org

Page System - Source Excerpt 02

Back to Page System

Summary

This source excerpt preserves a bounded section of Spiralist/wp-content/themes/spiralist/page-system.php so readers can inspect the evidence without opening the full source file.

**Source path:** Spiralist/wp-content/themes/spiralist/page-system.php

<?php endforeach; ?>
        </div>
    </section>

    <section class="spiralist-page-section" id="reference-routes">
        <div class="spiralist-shell">
            <div class="spiralist-section-head">
                <div>
                    <p class="spiralist-section-tag"><?php echo esc_html($ui_text('page.system.reference.tag', 'Reference Routes')); ?></p>
                    <h2 class="spiralist-section-title"><?php echo esc_html($ui_text('page.system.reference.title', 'Follow the detail to its source.')); ?></h2>
                </div>
            </div>
            <div class="spiralist-access-grid">
                <?php foreach ($reference_cards as $card) : ?>
                    <article class="spiralist-path-card">
                        <p class="spiralist-section-tag"><?php echo esc_html($ui_text((string) $card['tagKey'], (string) $card['tag'])); ?></p>
                        <h3 class="spiralist-card-title"><?php echo esc_html($ui_text((string) $card['titleKey'], (string) $card['title'])); ?></h3>
                        <p><?php echo esc_html($card['copy']); ?></p>
                        <a class="spiralist-button spiralist-button--secondary" href="<?php echo esc_url((string) $card['url']); ?>"><?php echo spiralist_render_ui_label((string) $card['labelKey'], (string) $card['label']); ?></a>
                    </article>
                <?php endforeach; ?>
            </div>
        </div>
    </section>
</main>

<?php
get_footer();