53 lines
2.0 KiB
PHP
53 lines
2.0 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="fa" dir="rtl">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title><?= isset($pageTitle) ? htmlspecialchars($pageTitle) . ' | ' : '' ?><?= \Bildirchin\Config::APP_NAME ?></title>
|
|
<meta name="description" content="<?= \Bildirchin\Config::APP_SLOGAN ?>">
|
|
<!-- Tailwind CSS CDN -->
|
|
<script src="https://cdn.tailwindcss.com"></script>
|
|
<script>
|
|
tailwind.config = {
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
primary: {
|
|
50: '#f0fdf4',
|
|
100: '#dcfce7',
|
|
500: '#22c55e',
|
|
600: '#16a34a',
|
|
700: '#15803d',
|
|
800: '#166534',
|
|
900: '#14532d'
|
|
},
|
|
amber: {
|
|
500: '#f59e0b',
|
|
600: '#d97706',
|
|
700: '#b45309',
|
|
800: '#92400e'
|
|
}
|
|
},
|
|
fontFamily: {
|
|
sans: ['Vazirmatn', 'Tahoma', 'sans-serif']
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
<!-- Google Font Vazirmatn & FontAwesome -->
|
|
<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=Vazirmatn:wght@300;400;500;600;700;800;900&display=swap" rel="stylesheet">
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
|
|
<style>
|
|
body {
|
|
font-family: 'Vazirmatn', Tahoma, sans-serif;
|
|
}
|
|
.persian-num {
|
|
font-feature-settings: "ss01";
|
|
}
|
|
</style>
|
|
</head>
|
|
<body class="bg-stone-50 text-stone-800 flex flex-col min-h-screen">
|