contact.php 574 B

12345678910111213141516171819202122232425262728293031323334353637
  1. <?php
  2. $view
  3. ->set('name', 'contact')
  4. ->set('title', '关于我们')
  5. ->import('inc/head')
  6. ->fetch('body@test', '1')
  7. ->fetch('.contact-article', 'main/content.getAbout#content')
  8. # 广告
  9. ->loop
  10. (
  11. '.ad-swiper .swiper-slide',
  12. 'main/content.ad|key=contact_ad&name=联系我们广告',
  13. array
  14. (
  15. 'a' => array
  16. (
  17. 'href' => '$v.link',
  18. 'title' => '$v.name',
  19. ),
  20. 'img' => array
  21. (
  22. 'src' => '$v.pic',
  23. 'alt' => '$v.name',
  24. ),
  25. )
  26. )
  27. ->import('inc/foot')
  28. ->display();