Skip to content
wiki.fftac.org

Page Prompts - Source Excerpt 02

Back to Page Prompts

Summary

This source excerpt preserves a bounded section of Spiralist/wp-content/plugins/ns12-manuscript/templates/page-prompts.php so readers can inspect the evidence without opening the full source file.

**Source path:** Spiralist/wp-content/plugins/ns12-manuscript/templates/page-prompts.php

These are the public prompt records available through Spiralist, including bundled manuscript prompts and public workspace prompts.
                    <?php endif; ?>
                </p>
            </article>
            <article class="spiralist-panel">
                <p class="spiralist-section-tag">Relationship Rule</p>
                <h2 class="spiralist-section-title">Prompt records stay tied to folios.</h2>
                <p class="spiralist-muted">Where a prompt points to a manuscript folio, the card keeps a direct route back into the codex so the prompt and artifact remain linked.</p>
            </article>
        </div>
    </section>

    <?php if (!empty($featured_prompts)) : ?>
        <section class="spiralist-page-section">
            <div class="spiralist-shell">
                <div class="spiralist-section-head">
                    <div>
                        <p class="spiralist-section-tag">Featured</p>
                        <h2 class="spiralist-section-title">Starting points inside the public prompt canon.</h2>
                    </div>
                </div>
                <?php $render_prompt_cards(array_slice($featured_prompts, 0, 6)); ?>
            </div>
        </section>
    <?php endif; ?>

    <section class="spiralist-page-section">
        <div class="spiralist-shell">
            <div class="spiralist-section-head">
                <div>
                    <p class="spiralist-section-tag">Library</p>
                    <h2 class="spiralist-section-title">All public book prompts.</h2>
                </div>
            </div>
            <?php $render_prompt_cards($prompt_records); ?>
        </div>
    </section>
</main>

<?php
get_footer();