Files
CodePress/admin/templates/pages/guide.php
T
E.Noorlander c1406f8828 Fix guide deep links, code block styling
- Move heading IDs from hidden permalink anchors to parent headings so deep links scroll correctly (admin.php)
- Change code block background from dark to light gray (guide.php)
- Add pre/code CSS to frontend layout.mustache for visible code blocks
2026-07-28 14:37:14 +02:00

30 lines
1.6 KiB
PHP

<h2 class="mb-4"><i class="bi bi-book"></i> Handleiding</h2>
<div class="mb-3">
<div class="btn-group" role="group">
<a href="/admin/guide?lang=nl" class="btn btn-sm <?= $lang === 'nl' ? 'btn-primary' : 'btn-outline-primary' ?>">Nederlands</a>
<a href="/admin/guide?lang=en" class="btn btn-sm <?= $lang === 'en' ? 'btn-primary' : 'btn-outline-primary' ?>">English</a>
</div>
</div>
<div class="card shadow-sm">
<div class="card-body guide-content">
<?= $content ?>
</div>
</div>
<style>
.guide-content h2 { margin-top: 1.5rem; }
.guide-content h3 { margin-top: 1.25rem; }
.guide-content pre { background: #f8f9fa; padding: 1rem; border-radius: 6px; overflow-x: auto; border: 1px solid #dee2e6; margin-bottom: 1rem; }
.guide-content pre code { background: none; padding: 0; color: #333; font-size: 0.85rem; line-height: 1.5; }
.guide-content code { background: #e8e8e8; padding: 0.15rem 0.4rem; border-radius: 3px; font-size: 0.9em; color: #d63384; }
.guide-content table { width: 100%; margin-bottom: 1rem; }
.guide-content table th, .guide-content table td { padding: 0.5rem; border: 1px solid #dee2e6; }
.guide-content blockquote { border-left: 3px solid #ccc; padding-left: 1rem; color: #666; margin-left: 0; }
.guide-content .heading-permalink { display: none; }
.guide-content ul:first-of-type { list-style: none; padding-left: 0; }
.guide-content ul:first-of-type li { padding: 0.15rem 0; }
.guide-content ul:first-of-type li a { text-decoration: none; color: #0d6efd; }
.guide-content ul:first-of-type li a:hover { text-decoration: underline; }
</style>