22 lines
1.1 KiB
PHP
22 lines
1.1 KiB
PHP
<?php
|
|||
|
|
$pageTitle = $pageTitle ?? 'FlixCooks | Food Blog & Recipes';
|
||
|
|
$description = $description ?? 'Seasonal recipes, tested tips, and approachable cooking for busy weeknights.';
|
||
|
|
?>
|
||
|
|
<!DOCTYPE html>
|
||
|
|
<html lang="en">
|
||
|
|
<head>
|
||
|
|
<meta charset="UTF-8">
|
||
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
|
<meta name="description" content="<?php echo e($description); ?>">
|
||
|
|
<title><?php echo e($pageTitle); ?></title>
|
||
|
|
<link rel="icon" type="image/png" href="/assets/favicon.png">
|
||
|
|
<link rel="alternate icon" type="image/x-icon" sizes="16x16 32x32" href="/favicon.ico">
|
||
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||
|
|
<link href="https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,500;0,600;0,700;1,500;1,600&family=Manrope:wght@400;500;600;700;800&display=swap" rel="stylesheet">
|
||
|
|
<link rel="stylesheet" href="/assets/style.css">
|
||
|
|
<!-- Always start light -->
|
||
|
|
<script>document.documentElement.setAttribute('data-theme','light');</script>
|
||
|
|
</head>
|
||
|
|
<body>
|