Backup database and code changes - 2025-06-09 05:47:40

This commit is contained in:
root
2025-06-09 05:47:40 +00:00
parent c5a09bee5f
commit e22613e4d4
37 changed files with 249 additions and 706 deletions

View File

@@ -94,26 +94,13 @@ $breadcrumbs = [
<article class="blog-article">
<div class="container">
<!-- Breadcrumb Navigation -->
<nav class="breadcrumb" aria-label="Breadcrumb">
<ol>
<?php foreach ($breadcrumbs as $index => $crumb): ?>
<?php if ($crumb['url']): ?>
<li><a href="<?php echo $crumb['url']; ?>"><?php echo htmlspecialchars($crumb['label']); ?></a></li>
<?php else: ?>
<li class="active" aria-current="page"><?php echo htmlspecialchars($crumb['label']); ?></li>
<?php endif; ?>
<?php endforeach; ?>
</ol>
</nav>
<header class="article-header">
<div class="article-meta">
<span class="article-category"><?php echo htmlspecialchars($article_category); ?></span>
<span class="article-date"><?php echo date('d F Y', strtotime($article_date)); ?></span>
<span class="article-author">By <?php echo htmlspecialchars($article_author); ?></span>
</div>
<h1><?php echo htmlspecialchars($article_title); ?></h1>
<div class="article-meta">
<span class="category"><a href="/blog/categories/case-studies.php">Case Studies</a></span>
<time datetime="2024-06-08">8 June 2024</time>
<span class="read-time">6 min read</span>
</div>
<header class="article-header">
<h1><?php echo htmlspecialchars($article_title); ?></h1>
<p class="article-lead"><?php echo htmlspecialchars($article_description); ?></p>
</header>