amaharacya.one/tpl/default.php
2025-09-10 19:51:13 +08:00

21 lines
No EOL
733 B
PHP

<!DOCTYPE html>
<html lang="<?php if (empty($page["lang"])) echo "zh-TW"; else echo $page["lang"]; ?>">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title><?= $page["title"] ?></title>
<link rel="stylesheet" href="/assets/main.css" />
<?php if ($page["path"] === "index.md") echo "<link rel=\"stylesheet\" href=\"/assets/frontpage.css\" />" ?>
</head>
<body>
<?php include "nav.php" ?>
<main>
<?php
if ($page["path"] === "index.md") include "bio.php";
else if ($page["path"] === "pages.md") include "pages-index.php";
else if (!empty($page["content"])) echo $page["content"];
else echo "此頁為空";
?>
</main>
</body>
</html>