navs.php 325 B

123456789101112131415161718192021
  1. <?php
  2. // 导航数据
  3. return [
  4. [
  5. 'title' => '首页',
  6. 'url' => 'index.php',
  7. ],
  8. [
  9. 'title' => '博客',
  10. 'url' => 'blog.php',
  11. ],
  12. [
  13. 'title' => '图片',
  14. 'url' => 'pic.php',
  15. ],
  16. [
  17. 'title' => '留言',
  18. 'url' => 'msg.php',
  19. ],
  20. ];