- 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
12 lines
429 B
PHP
12 lines
429 B
PHP
<?php /** Related tools grid. Vars: $tools, $title */ ?>
|
|
<?php if (! empty($tools)): ?>
|
|
<section class="block tight">
|
|
<h2 class="section-title"><?= esc($title ?? 'Related tools') ?><a class="see-all" href="/tools/a-z">All tools →</a></h2>
|
|
<div class="grid cols-4">
|
|
<?php foreach ($tools as $tool): ?>
|
|
<?= view('partials/tool_card', ['tool' => $tool]) ?>
|
|
<?php endforeach ?>
|
|
</div>
|
|
</section>
|
|
<?php endif ?>
|