24 lines
516 B
PHP
24 lines
516 B
PHP
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<link href="css/base.css" rel="stylesheet" type="text/css">
|
|
<link rel="stylesheet" href="https://nerdfonts.com/assets/css/webfont.css">
|
|
<?php
|
|
if ($_SESSION['theme'] == 'dark') {
|
|
echo '
|
|
<link href="css/dark.css" rel="stylesheet" type="text/css">
|
|
';
|
|
} elseif ($_SESSION['theme'] == 'light') {
|
|
echo '
|
|
<link href="css/light.css" rel="stylesheet" type="text/css">
|
|
';
|
|
}
|
|
?>
|
|
<script src="js/theme-toggle.js"></script>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
<?php include 'nav.php'; ?>
|