index.html 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. <!doctype html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="description" content="ThinkCMF插件演示首页">
  7. <meta name="keywords" content="ThinkCMF插件演示首页">
  8. <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
  9. <title>ThinkCMF插件演示首页</title>
  10. <!-- Set render engine for 360 browser -->
  11. <meta name="renderer" content="webkit">
  12. <!-- No Baidu Siteapp-->
  13. <meta http-equiv="Cache-Control" content="no-siteapp"/>
  14. <link rel="shortcut icon" href="__PLUGIN_TMPL__/assets/images/favicon.ico" type="image/x-icon">
  15. <!-- SEO: If your mobile URL is different from the desktop URL, add a canonical link to the desktop page https://developers.google.com/webmasters/smartphone-sites/feature-phones -->
  16. <!--
  17. <link rel="canonical" href="http://www.example.com/">
  18. -->
  19. </head>
  20. <body>
  21. <div class="well well-warning" style="display: inline-block;">
  22. <h2>ThinkCMF插件演示</h2>
  23. {:lang('plugin_demo_hello_world')}
  24. <p>
  25. <b>插件根目录:</b>__PLUGIN_ROOT__
  26. </p>
  27. <p>
  28. <b>插件模板根目录:</b>__PLUGIN_TMPL__
  29. </p>
  30. <p>
  31. <b>生成插件控制器 URL:</b>{:cmf_plugin_url('Demo://Index/index',['id'=>1])}
  32. </p>
  33. <p>
  34. <b>foreach:</b>
  35. </p>
  36. <ol>
  37. <foreach name="users" item="vo">
  38. <li>{$vo.user_login} {:date('Y-m-d H:i:s',$vo['create_time'])}</li>
  39. </foreach>
  40. </ol>
  41. </div>
  42. </body>
  43. </html>