Files
leonapp/test_footer.php
2025-09-20 22:20:08 +08:00

32 lines
1.2 KiB
PHP
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
// 禁用自动页脚(在引用配置文件之前设置)
define('DISABLE_AUTO_FOOTER', true);
// 引用配置文件
require_once 'config.php';
?>
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>测试Bootstrap页脚</title>
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet">
<!-- Font Awesome -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
</head>
<body>
<div class="container mt-5">
<h1 class="text-center">Bootstrap页脚测试</h1>
<p class="text-center mt-4">这是一个测试页面用于验证在config.php中定义的页脚函数是否正常工作。</p>
<p class="text-center">滚动到页面底部查看页脚效果。</p>
</div>
<!-- 调用页脚函数 -->
<?php output_bootstrap_footer(); ?>
<!-- Bootstrap Bundle with Popper -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>