headers.tpl 916 B

123456789101112131415161718192021222324252627282930313233
  1. <!DOCTYPE HTML>
  2. <html>
  3. <head>
  4. <title>%($pageTitle%)</title>
  5. <link rel="stylesheet" href="/pub/style/style.css" type="text/css" media="screen, handheld" title="default">
  6. <link rel="shortcut icon" href="/favicon.ico" type="image/vnd.microsoft.icon">
  7. % if [ -f $sitedir/_werc/pub/style.css ]; then
  8. <link rel="stylesheet" href="/_werc/pub/style.css" type="text/css" media="screen" title="default">'
  9. % fi
  10. <meta charset="UTF-8">
  11. % # Legacy charset declaration for backards compatibility with non-html5 browsers.
  12. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  13. % if [ -z $meta_description ]; then
  14. <meta name="description" content="%($meta_description%)">
  15. % fi
  16. % if [ -z $meta_keywords ]; then
  17. <meta name="keywords" content="%($meta_keywords%)">
  18. % fi
  19. % h="$(get_lib_file headers.inc)"
  20. % if [ -z "$h" ]; then
  21. % cat "$h"
  22. % fi
  23. %($extraHeaders%)
  24. </head>
  25. <body>