index.php 877 B

1234567891011121314151617181920212223242526272829
  1. <?php
  2. /**
  3. * Landing page: full-screen hero image with the artist introduction.
  4. */
  5. require dirname(__DIR__) . '/app/bootstrap.php';
  6. $site = site_get();
  7. $hero = $site['hero_image'] ?? null;
  8. $heroUrl = $hero ? 'media/' . rawurlencode($hero) : null;
  9. public_header($site['intro_title'] ?: config('site.name', 'Portfolio'), 'home');
  10. ?>
  11. <section class="hero">
  12. <?php if ($heroUrl): ?>
  13. <img src="<?= e($heroUrl) ?>" alt="<?= e($site['intro_title']) ?>" fetchpriority="high">
  14. <?php else: ?>
  15. <div class="hero-placeholder"></div>
  16. <?php endif; ?>
  17. <div class="hero-caption">
  18. <h1><?= e($site['intro_title']) ?></h1>
  19. </div>
  20. <span class="hero-scroll-hint">&#8595;</span>
  21. </section>
  22. <section class="intro">
  23. <p><?= e($site['intro_text']) ?></p>
  24. <a class="cta" href="showreel.php">View Showreel</a>
  25. </section>
  26. <?php public_footer(); ?>