2025-08-02 23:39:14 +02:00
< ? php
$menu = array (
'Home' => '/' ,
'Create account' => '/create-account' ,
'Login' => '/login' ,
'About us' => '/about-us' ,
);
$pageTitle = htmlspecialchars ( $pageTitle ? ? 'Stella Amor | Free Dating with Ultimate Match Filters' , ENT_QUOTES , 'UTF-8' );
$pageDescription = htmlspecialchars ( $pageDescription ? ? 'Free dating! Ultimate filters for wealth, kinks, fetishes, & passions. Meet your perfect match now!' , ENT_QUOTES , 'UTF-8' );
?>
2024-12-25 17:05:50 +01:00
<! DOCTYPE html >
< html lang = " en " >
< head >
2025-08-02 23:39:14 +02:00
<!-- Defaults -->
2024-12-25 17:05:50 +01:00
< meta charset = " UTF-8 " >
< meta name = " viewport " content = " width=device-width, initial-scale=1.0 " >
2025-08-02 23:39:14 +02:00
< title >< ? php echo $pageTitle ; ?> </title>
< meta name = " description " content = " <?php echo $pageDescription ; ?> " >
< meta name = " author " content = " Stella Amor " >
< meta name = " keywords " content = " free dating, online dating, match filters, finance, kinks, fetishes, lifestyle dating " >
< link rel = " canonical " href = " https://stellaamor.com<?php echo isset( $_GET['page'] ) ? '/' . htmlspecialchars(basename( $_GET['page'] ), ENT_QUOTES, 'UTF-8') : ''; ?> " >
2024-12-25 17:05:50 +01:00
2025-08-02 23:39:14 +02:00
<!-- Robots -->
< meta name = " robots " content = " index, follow " >
2024-12-25 17:05:50 +01:00
2025-08-02 23:39:14 +02:00
<!-- Open Graph -->
< meta property = " og:title " content = " <?php echo $pageTitle ; ?> " >
< meta property = " og:description " content = " <?php echo $pageDescription ; ?> " >
2024-12-25 17:05:50 +01:00
< meta property = " og:type " content = " website " >
2025-08-02 23:39:14 +02:00
< meta property = " og:url " content = " https://stellaamor.com<?php echo htmlspecialchars( $_SERVER['REQUEST_URI'] , ENT_QUOTES, 'UTF-8'); ?> " >
< meta property = " og:image " content = " https://stellaamor.com/rss/img/logo.png " >
2024-12-25 17:05:50 +01:00
2025-08-02 23:39:14 +02:00
<!-- Twitter Card -->
2024-12-25 17:05:50 +01:00
< meta name = " twitter:card " content = " summary_large_image " >
2025-08-02 23:39:14 +02:00
< meta name = " twitter:title " content = " <?php echo $pageTitle ; ?> " >
< meta name = " twitter:description " content = " <?php echo $pageDescription ; ?> " >
2024-12-25 17:05:50 +01:00
< meta name = " twitter:image " content = " https://stellaamor.com/rss/img/logo.png " >
<!-- Favicon -->
2025-08-02 23:39:14 +02:00
< link rel = " icon " href = " /rss/img/favicon.ico " type = " image/x-icon " >
< link rel = " apple-touch-icon " href = " /rss/img/apple-touch-icon.png " >
2024-12-25 17:05:50 +01:00
2025-08-02 23:39:14 +02:00
<!-- Stylesheets -->
< link rel = " preload " href = " /rss/css/main.css " as = " style " >
2024-12-25 17:05:50 +01:00
< link href = " https://cdn.jsdelivr.net/npm/@mdi/font/css/materialdesignicons.min.css " rel = " stylesheet " >
2025-08-02 23:39:14 +02:00
< link rel = " stylesheet " href = " /rss/css/main.css " >
< link rel = " stylesheet " href = " /rss/css/theme.css " media = " print " onload = " this.media='all' " >
<!-- JavaScript -->
< script src = " /rss/js/main.js " defer ></ script >
<!-- Structured Data ( JSON - LD ) -->
< script type = " application/ld+json " >
{
" @context " : " https://schema.org " ,
" @type " : " Organization " ,
" name " : " Stella Amor " ,
" url " : " https://stellaamor.com " ,
" logo " : " https://stellaamor.com/rss/img/logo.png " ,
" description " : " Stella Amor: Free online dating with advanced filters for lifestyle, finance, kinks, and more. Find your perfect match today. "
}
</ script >
</ head >
< body >
< header >
< div class = " logo " >
< a href = " / " >
< img src = " /rss/img/logo.png " alt = " Stella Amor Logo " width = " 150 " height = " 50 " >
</ a >
2024-12-25 17:05:50 +01:00
</ div >
2025-08-03 03:58:52 +02:00
< button class = " mobile-toggler " aria - label = " Toggle navigation " id = " menu-toggler " > ☰ </ button >
< nav id = " mainMenu " >
2025-08-02 23:39:14 +02:00
< ? php
$currentPage = $_SERVER [ 'REQUEST_URI' ];
foreach ( $menu as $name => $link ) :
$isActive = ( $currentPage === $link ) ? 'active' : '' ;
$ariaCurrent = ( $currentPage === $link ) ? ' aria-current="page"' : '' ;
?>
< a href = " <?php echo $link ; ?> " class = " menu-item <?php echo $isActive ; ?> " < ? php echo $ariaCurrent ; ?> ><?php echo $name; ?></a>
< ? php endforeach ; ?>
</ nav >
</ header >