tmpl.h 987 B

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