env.template 810 B

123456789101112131415161718192021222324252627
  1. <?xml version="1.0" encoding="UTF-8" ?>
  2. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
  3. "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
  4. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
  5. <head>
  6. <meta http-equiv="Content-Type" content="application/xhtml+xml; charset=UTF-8" />
  7. <meta name="viewport" content="width=device-width, initial-scale=0.7" />
  8. <link rel="stylesheet" type="text/css" href="/css/format.css" />
  9. <title><TMPL_VAR name="TITLE"></title>
  10. </head>
  11. <body>
  12. <table border="1" cellspacing="2" width="100%">
  13. <thead>
  14. <tr>
  15. <td class="headingcell">Name</td>
  16. <td class="headingcell">Value</td>
  17. </tr>
  18. </thead>
  19. <tbody><TMPL_LOOP name="ENV">
  20. <tr>
  21. <td><TMPL_VAR name="NAME"></td>
  22. <td><TMPL_VAR name="VALUE"></td>
  23. </tr></TMPL_LOOP>
  24. </tbody>
  25. </table>
  26. </body>
  27. </html>