inc_head.tpl.php 1.0 KB

123456789101112131415161718192021222324252627282930313233343536
  1. <?php
  2. echo '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml">
  4. <head>
  5. <meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
  6. <link type="text/css" rel="stylesheet" href="template/images/style.css" />
  7. <title>';
  8. echo $info;
  9. echo ' - 系统安装 - ';
  10. echo MPS_SOFTNAME;
  11. echo ' ';
  12. echo MPS_VERSION;
  13. echo '</title>
  14. </head>
  15. <body>
  16. <div class="wrapA">
  17. <div class="wrapB">
  18. <div class="wrapC">
  19. <div id="header">
  20. <div class="logo left"><img src="template/images/install-logo.jpg" /></div>
  21. <div class="right"> <a href="https://www.mayicms.com/bbs/" target="_blank" class="linkA">官方论坛</a> | <a href="https://www.mayicms.com/jiaocheng/" target="_blank" class="linkA">教程手册</a></div>
  22. </div>
  23. <div id="main">
  24. <h2><span class="step">';
  25. echo $step;
  26. echo '</span> ';
  27. echo $info;
  28. echo '</h2>
  29. <div class="installInfo">
  30. ';
  31. echo $installinfo;
  32. echo ' </div>';
  33. ?>