<?php
global $page, $tpl;
// 关于本站(about)页面
if ($page == 'about') {
$compile_file = $tpl->view('about');
if ($compile_file) {
include_once $compile_file;
}
exit;
}
// 本站归档(archive)页面
if ($page == 'archive') {
$compile_file = $tpl->view('archive');
if ($compile_file) {
include_once $compile_file;
}
exit;
}
// 👇 在这里直接粘贴新增的 contact 分支代码(位置正确)
if ($page == 'contact') {
$compile_file = $tpl->view('contact');
if ($compile_file) {
include_once $compile_file;
}
exit;
}
?>
<!--<删除这两个字?php ?>-->
<!--<!DOCTYPE html>-->
<!--<html lang="zh-CN">-->
<!--<head>-->
<!-- <meta charset="UTF-8">-->
<!-- <title>留言板 - {$conf.title}</title>-->
<!--</head>-->
<!--<body>-->
<!-- {include header}-->
<!-- 留言板核心内容-->
<!-- {include footer}-->
<!--</body>-->
<!--</html>-->