Files
toolvana/app/Views/directory.php
T
deepseek beaf0e1f37 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
2026-08-23 07:10:30 +00:00

41 lines
1.9 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<div class="wrap">
<nav class="breadcrumbs" aria-label="Breadcrumb">
<ol><li><a href="/">Home</a></li><li aria-current="page">All Tools</li></ol>
</nav>
<header class="tool-head">
<h1>All tools</h1>
<p class="hint" style="font-size:.98rem"><?= service('finder')->countTools() ?> free tools — search, filter by category, or browse AZ. Every tool is a normal link you can bookmark.</p>
</header>
<form method="get" action="/tools" class="hero-search" style="max-width:640px;margin:0 0 1.4rem;background:#fff;box-shadow:var(--shadow-sm);border:1px solid #eee" role="search">
<input type="search" name="q" value="<?= esc($query) ?>" placeholder="Search a tool… e.g. “compress mp4”, “jpg png”" aria-label="Search tools">
<button type="submit">Search</button>
</form>
<?php if (empty($query)): ?><div class="chips" style="margin-bottom:1.2rem">
<a class="chip" href="/tools" <?= $activeCat === '' ? 'style="border-color:var(--brand-500);color:var(--brand-600)"' : '' ?>>All</a>
<?php foreach ($categories as $c): ?>
<a class="chip" href="/tools?category=<?= esc($c['slug']) ?>" <?= $activeCat === $c['slug'] ? 'style="border-color:var(--brand-500);color:var(--brand-600)"' : '' ?>><?= esc($c['name']) ?></a>
<?php endforeach ?>
<span style="margin-left:auto"></span>
<a class="chip" href="/tools/popular">Popular</a>
<a class="chip" href="/tools/recent">Recently added</a>
<a class="chip" href="/tools/a-z">AZ</a>
</div><?php endif ?>
<section class="block tight">
<?php if ($tools === []): ?>
<p>No tools matched “<?= esc($query) ?>”. Try a shorter term like “mp3” or browse the categories above.</p>
<?php else: ?>
<div class="grid cols-4">
<?php foreach ($tools as $tool): ?>
<?= view('partials/tool_card', ['tool' => $tool]) ?>
<?php endforeach ?>
</div>
<?php endif ?>
</section>
</div>