Toolvana: production-ready media tools platform (CodeIgniter 4)
- 134-tool registry with programmatic SEO (unique titles/H1/descriptions, JSON-LD graphs, sitemap index, canonical 301 enforcement via required filter) - DB-backed job queue (SKIP LOCKED) with drivers: Ffmpeg, Images (GD), Pdf (qpdf/gs/poppler), Youtube (thumbnails), Qr (server-side PNG) - Security: SSRF guard, MIME validation, rate limits, API-key auth, bcrypt admin login, security headers - Admin panel: dashboard, tools/categories/guides CRUD, SEO audit, analytics, job inspector with retry, system health, feature flags - Docker deployment (nginx + web/api FPM pools + scalable workers), PHPUnit suite (19 tests / 1139 assertions), PWA manifest + service worker
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
<?php
|
||||
/**
|
||||
* FAQ accordion — native <details>, zero JS.
|
||||
* Expected vars: $faqs list of ['q'=>,'a'=>]
|
||||
*/
|
||||
if (empty($faqs)) {
|
||||
return;
|
||||
}
|
||||
?>
|
||||
<section class="block tight faq" aria-labelledby="faq-title">
|
||||
<h2 class="section-title" id="faq-title">Frequently asked questions</h2>
|
||||
<?php foreach ($faqs as $faq): ?>
|
||||
<details>
|
||||
<summary><?= esc($faq['q']) ?></summary>
|
||||
<div class="answer"><p><?= esc($faq['a']) ?></p></div>
|
||||
</details>
|
||||
<?php endforeach ?>
|
||||
</section>
|
||||
Reference in New Issue
Block a user