styling, navigation bar, theming, article lists, page routing.
This commit is contained in:
+15
-2
@@ -3,8 +3,21 @@
|
||||
|
||||
<head>
|
||||
<link href="css/base.css" rel="stylesheet" type="text/css">
|
||||
<link href="css/text.css" rel="stylesheet" type="text/css">
|
||||
<link href="css/images.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'; ?>
|
||||
|
||||
Reference in New Issue
Block a user