headers.tpl 832 B

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