index.html 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  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>__ROOT__
  26. </p>
  27. <p>
  28. <b>插件根目录:</b>__PLUGIN_ROOT__
  29. </p>
  30. <p>
  31. <b>插件模板根目录:</b>__PLUGIN_TMPL__
  32. </p>
  33. <p>
  34. <b>后台当前模板目录:</b>__ADMIN_TMPL__
  35. </p>
  36. <p>
  37. <b>网站资源根目录:</b>__WEB_ROOT__
  38. </p>
  39. <p>
  40. <b>public/static目录:</b>__STATIC__
  41. </p>
  42. <p>
  43. <b>生成插件控制器 URL:</b>{:cmf_plugin_url('Demo://Index/index',['id'=>1])}
  44. </p>
  45. <p>
  46. <b>foreach:</b>
  47. </p>
  48. <ol>
  49. <foreach name="users" item="vo">
  50. <li>{$vo.user_login} {:date('Y-m-d H:i:s',$vo['create_time'])}</li>
  51. </foreach>
  52. </ol>
  53. </div>
  54. </body>
  55. </html>