New stella design

This commit is contained in:
edsea
2025-08-06 05:09:22 +02:00
parent 24c3640f05
commit 8ec1ba9756
70 changed files with 1808 additions and 481 deletions

View File

@@ -1,7 +1,7 @@
<?php
global $pageInfo;
if (file_exists($_SERVER['DOCUMENT_ROOT'] . '/rss/js/' . $pageInfo['template'] .'.js')){
echo '<script src="/rss/js/' . $pageInfo['template'] .'.js"></script>';
if (file_exists($_SERVER['DOCUMENT_ROOT'] . '/rss/js/' . $pageInfo['template'] . '.js')) {
echo '<script src="/rss/js/' . $pageInfo['template'] . '.js"></script>';
}
?>
@@ -14,13 +14,16 @@ if (file_exists($_SERVER['DOCUMENT_ROOT'] . '/rss/js/' . $pageInfo['template'] .
<div class="col-sm-12 col-md-3">
<h4>Links</h4>
<ul>
<li>Home</li>
<?php foreach ($links as $label => $url): ?>
<li class="mb-2"><a href="<?php echo $url; ?>" class="menu-item<?php echo $label === $currentPage ? ' active" aria-current="page' : ''; ?>"><?php echo htmlspecialchars($label, ENT_QUOTES, 'UTF-8'); ?></a></li>
<?php endforeach; ?>
</ul>
</div>
<div class="col-sm-12 col-md-3">
<h4>Contact</h4>
<ul>
<li>Info</li>
<li><a href="mailto:info@stellaamor.com">info@stellaamor.com</a></li>
<li><a href="mailto:support@stellaamor.com">support@stellaamor.com</a></li>
</ul>
</div>
</div>