list.php 517 B

123456789101112131415161718
  1. <?php
  2. /*
  3. |--------------------------------------------------------------------------
  4. | home
  5. |--------------------------------------------------------------------------
  6. */
  7. $view
  8. ->fetch('body@class', 'theme-<{Dever::load("/auth.config#template")}>')
  9. # 对以下的所有数据和展示进行接管
  10. ->fetch('#content_1@style', 'manage/database.page#s1')
  11. ->fetch('#content_1', 'manage/database.page#content')
  12. ->fetch('#content_2@style', 'manage/database.page#s2')
  13. # 将上边fetch的都显示出来
  14. ->display();