43 lines
2.1 KiB
PHP
43 lines
2.1 KiB
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
require __DIR__ . '/../app/bootstrap.php';
|
|
$pdo = app_db();
|
|
|
|
$pageTitle = 'Condition Tracking | Neon Medical Tracker';
|
|
$activePage = 'conditions';
|
|
$conditions = db_all($pdo, 'SELECT * FROM medical_conditions ORDER BY category, name');
|
|
$photo = 'https://upload.wikimedia.org/wikipedia/commons/thumb/3/33/Cycling_in_Amsterdam_%28893%29.jpg/1280px-Cycling_in_Amsterdam_%28893%29.jpg';
|
|
require __DIR__ . '/partials/site-header.php';
|
|
?>
|
|
<main>
|
|
<section class="detail-hero">
|
|
<div>
|
|
<p class="site-eyebrow">Condition tracking</p>
|
|
<h1>Track readings, symptoms, labs, and medications by condition.</h1>
|
|
<p>Use structured logs for blood pressure, glucose, pain, oxygen, temperature, lab results, medications, and notes. The condition library links back to NIH/NLM patient-information sources.</p>
|
|
<a class="site-primary" href="/signup.php">Create a profile</a>
|
|
</div>
|
|
<figure>
|
|
<img src="<?= htmlspecialchars($photo, ENT_QUOTES) ?>" alt="People cycling outdoors">
|
|
<figcaption>
|
|
Photo: <a href="https://commons.wikimedia.org/wiki/File:Cycling_in_Amsterdam_(893).jpg">Cycling in Amsterdam (893)</a>
|
|
by FaceMePLS, <a href="https://creativecommons.org/licenses/by-sa/2.0/">CC BY-SA 2.0</a>.
|
|
</figcaption>
|
|
</figure>
|
|
</section>
|
|
|
|
<section class="detail-grid">
|
|
<?php foreach ($conditions as $condition): ?>
|
|
<article>
|
|
<h2><?= htmlspecialchars($condition['name'], ENT_QUOTES) ?></h2>
|
|
<p><strong><?= htmlspecialchars($condition['category'], ENT_QUOTES) ?></strong></p>
|
|
<p><?= htmlspecialchars($condition['overview'], ENT_QUOTES) ?></p>
|
|
<p><?= htmlspecialchars($condition['common_tracking'], ENT_QUOTES) ?></p>
|
|
<a class="site-secondary" href="<?= htmlspecialchars($condition['source_url'], ENT_QUOTES) ?>">MedlinePlus</a>
|
|
</article>
|
|
<?php endforeach; ?>
|
|
</section>
|
|
</main>
|
|
<?php require __DIR__ . '/partials/site-footer.php'; ?>
|